diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation-publish.yml
similarity index 66%
rename from .github/workflows/documentation.yaml
rename to .github/workflows/documentation-publish.yml
index 26193d6..eea60ce 100644
--- a/.github/workflows/documentation.yaml
+++ b/.github/workflows/documentation-publish.yml
@@ -1,9 +1,14 @@
-name: Docs
-on: [push, pull_request, workflow_dispatch]
+name: Generate and Publish Documentation for OSML Model Runner Test
+
+on:
+ workflow_call:
+
permissions:
contents: write
+
jobs:
docs:
+ if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
@@ -13,14 +18,14 @@ jobs:
pip install sphinx
python -m pip install sphinx-autoapi
python -m pip install sphinx_rtd_theme
+ python -m pip install tox tox-gh-actions
- name: Sphinx build
run: |
- sphinx-build doc _build
+ tox -e docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v3.9.3
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: _build/
+ publish_dir: .tox/docs/tmp/html/
force_orphan: true
diff --git a/.github/workflows/notify-guidance-repo.yml b/.github/workflows/notify-guidance-repo.yml
new file mode 100644
index 0000000..8f3bc47
--- /dev/null
+++ b/.github/workflows/notify-guidance-repo.yml
@@ -0,0 +1,18 @@
+name: Notify Guidance Overhead Imagery Repo
+
+on:
+ workflow_call:
+
+jobs:
+ notify:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Short Sha
+ uses: benjlevesque/short-sha@v2.2
+ - name: Invoke Guidance OSML Submodule Workflow
+ uses: benc-uk/workflow-dispatch@v1.2.2
+ with:
+ repo: aws-solutions-library-samples/guidance-for-overhead-imagery-inference-on-aws
+ workflow: osml_update_submodules.yml
+ token: ${{ secrets.GUIDANCE_OSML_SUBMODULES_ACTION_10_24 }}
+ inputs: '{ "DISPATCH_REPO_NAME" : "${{ github.event.repository.name }}", "DISPATCH_REPO_SHA": "${{ env.SHA }}" }'
diff --git a/.github/workflows/osml-model-runner-test-build.yml b/.github/workflows/osml-model-runner-test-build.yml
new file mode 100644
index 0000000..1a5df76
--- /dev/null
+++ b/.github/workflows/osml-model-runner-test-build.yml
@@ -0,0 +1,10 @@
+name: "OSML Model Runner Test Build Workflow"
+
+on:
+ pull_request:
+ branches: ["main", "dev"]
+
+jobs:
+ Build_Validate_Tox:
+ uses: ./.github/workflows/python-tox.yml
+ secrets: inherit
diff --git a/.github/workflows/osml-model-runner-test-publish.yml b/.github/workflows/osml-model-runner-test-publish.yml
new file mode 100644
index 0000000..316a169
--- /dev/null
+++ b/.github/workflows/osml-model-runner-test-publish.yml
@@ -0,0 +1,22 @@
+name: "OSML Model Runner Test Build and Publish Workflow"
+
+on:
+ push:
+ branches: ["main", "dev"]
+
+jobs:
+ Build_Validate_Tox:
+ uses: ./.github/workflows/python-tox.yml
+ secrets: inherit
+ Publish_Python:
+ needs: [Build_Validate_Tox]
+ uses: ./.github/workflows/python-publish.yml
+ secrets: inherit
+ Publish_Documentation:
+ needs: [Build_Validate_Tox]
+ uses: ./.github/workflows/documentation-publish.yml
+ secrets: inherit
+ Notify_Guidance_Repo:
+ needs: [Build_Validate_Tox]
+ uses: ./.github/workflows/notify-guidance-repo.yml
+ secrets: inherit
diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml
new file mode 100644
index 0000000..f1e2cfa
--- /dev/null
+++ b/.github/workflows/python-publish.yml
@@ -0,0 +1,33 @@
+# This workflow will upload a Python Package using Twine when a release is created
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
+
+name: Publish Python Package
+
+on:
+ workflow_call:
+ release:
+ types: [published]
+
+permissions:
+ contents: read
+ id-token: write
+
+jobs:
+ deploy:
+ if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
+ runs-on: ubuntu-latest
+ environment: release
+ steps:
+ - uses: actions/checkout@v4
+ - name: Set up Python
+ uses: actions/setup-python@v3
+ with:
+ python-version: '3.x'
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install build
+ - name: Build package
+ run: python -m build
+ - name: Publish package
+ uses: pypa/gh-action-pypi-publish@v1.8.10
diff --git a/.github/workflows/python-tox.yml b/.github/workflows/python-tox.yml
new file mode 100644
index 0000000..00abac0
--- /dev/null
+++ b/.github/workflows/python-tox.yml
@@ -0,0 +1,30 @@
+# This workflow will install Python dependencies, run tests and lint with a single version of Python
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
+
+name: Build/Validation with Tox
+
+on:
+ workflow_call:
+
+permissions:
+ contents: read
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ lfs: 'true'
+ ssh-key: ${{ secrets.git_ssh_key }}
+ - name: Set up Python 3.10
+ uses: actions/setup-python@v3
+ with:
+ python-version: "3.10"
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip tox
+ - name: Validate package with tox
+ run: |
+ # stop the build if there are Python syntax errors or undefined names
+ tox
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
old mode 100644
new mode 100755
index c4b6a1c..b879f17
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,59 +1,260 @@
-# Contributing Guidelines
+# OSML Contributing Guidelines
-Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional
-documentation, we greatly value feedback and contributions from our community.
+Thank you for your interest in contributing to our project! This document will guide you through the process of
+contributing to our repository using a release-based GitFlow workflow. Please read the guidelines carefully in order to
+submit your pull requests effectively.
-Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
-information to effectively respond to your bug report or contribution.
+## Table of Contents
+- [Release-based GitFlow](#release-based-gitflow)
+- [Branches](#branches)
+- [Linting](#linting)
+- [Use Cases](#use-cases)
+ - [Develop a new feature](#develop-a-new-feature)
+ - [Develop multiple features in parallel](#develop-multiple-features-in-parallel)
+ - [Create and deploy a release](#create-and-deploy-a-release)
+ - [Production hot fix](#production-hot-fix)
+- [Code Style](#code-style)
+- [Commit Messages](#commit-messages)
+- [Issue Tracking](#issue-tracking)
-## Reporting Bugs/Feature Requests
+## Release-based GitFlow
-We welcome you to use the GitHub issue tracker to report bugs or suggest features.
+We follow a release-based GitFlow branching model to manage our codebase. It involves different types of branches to
+ensure proper version control and collaboration. The primary branches in this workflow are:
-When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already
-reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
+note- `main`: This branch represents the latest production-ready state of the project code.
+- `dev`: This branch is used as the integration branch, combining all feature branches for a specific release.
+- `release/vX.Y.Z`: Branches in the format of `release/vX.Y.Z` are used to prepare a specific release.
+- `feature/*`: Feature branches are created for the development of new features or significant enhancements.
+- `hotfix/*`: Hotfix branches are created for bug fixes against production code.
-* A reproducible test case or series of steps
-* The version of our code being used
-* Any modifications you've made relevant to the bug
-* Anything unusual about your environment or deployment
+## Branches
-## Contributing via Pull Requests
-Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
+Here's a brief description of the supported branches in our repository:
-1. You are working against the latest source on the *main* branch.
-2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
-3. You open an issue to discuss any significant work - we would hate for your time to be wasted.
+![Release Deployment workflow](images/release-deployment.png)
-To send us a pull request, please:
+| Branch | Protected? | Base Branch | Description |
+|:-----------------|:-----------|:-------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| `main` | YES | N/A | What is live in production (**stable**).
A pull request is required to merge code into `main`. |
+| `dev` | YES | `main` | The latest state of development (**unstable**).
A pull request is required to merge code into `dev` |
+| `feature/*` | NO | `dev` | Cutting-edge features (**unstable**). These branches are used for any maintenance features / active development. |
+| `release/vX.Y.Z` | NO | `dev` | A temporary release branch that follows the [semver](http://semver.org/) versioning. This is what is sent to UAT.
A pull request is required to merge code into any `release/vX.Y.Z` branch. |
+| `hotfix/*` | NO | `main` | These are bug fixes against production.
This is used because develop might have moved on from the last published state.
Remember to merge this back into develop and any release branches. |
-1. Fork the repository.
-2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
-3. Ensure local tests pass.
-4. Commit to your fork using clear commit messages.
-5. Send us a pull request, answering any default questions in the pull request interface.
-6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
-GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
-[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
+## Linting
+This package uses a number of tools to enforce formatting, linting, and general best practices:
+* [eslint](https://github.com/pre-commit/mirrors-eslint) to check pep8 compliance and logical errors in code
+* [prettier](https://github.com/pre-commit/mirrors-prettier) to check pep8 compliance and logical errors in code
+* [pre-commit](https://github.com/pre-commit/pre-commit-hooks) to install and control linters in githooks
-## Finding contributions to work on
-Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start.
+After pulling the repository, you should enable auto linting git commit hooks by running:
+```bash
+python3 -m pip install pre-commit
+pre-commit install
+```
-## Code of Conduct
-This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
-For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
-opensource-codeofconduct@amazon.com with any additional questions or comments.
+In addition to running the linters against files included in a commit, you can perform linting on all the files
+in the package by running:
+```bash
+pre-commit run --all-files --show-diff-on-failure
+```
+or if using tox
+```bash
+tox -e lint
+````
+## Use Cases
-## Security issue notifications
-If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
+### Develop a new feature
+1. Make sure your `dev` branch is up-to-date
-## Licensing
+2. Create a feature branch based off of `dev`
-See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
+ ```bash
+ $ git checkout dev
+ $ git checkout -b feature/new-documentation
+ $ git push --set-upstream feature/new-documentation
+ ```
+
+3. Develop the code for the new feature and commit. Push your changes often. This
+ allows others to see your changes and suggest improvements/changes as well as
+ provides a safety net should your hard drive crash.
+
+ ```bash
+ $ ... make changes
+ $ git add -A .
+ $ git commit -m "Add new documentation files"
+ $ ... make more changes
+ $ git add -A .
+ $ git commit -m "Fix some spelling errors"
+ $ git push
+ ```
+
+4. Navigate to the project on [GitHub](https://github.com) and open a pull request with
+ the following branch settings:
+ * Base: `dev`
+ * Compare: `feature/new-documentation`
+
+5. When the pull request was reviewed, merge and close it and delete the
+ `feature/new-documentation` branch.
+
+### Develop multiple features in parallel
+
+There's nothing special about that. Each developer follows the above [Develop a new feature](#develop-a-new-feature) process.
+
+### Create and deploy a release
+1. Merge `main` into `dev` to ensure the new release will contain the
+ latest production code. This reduces the chance of a merge conflict during
+ the release.
+
+ ```bash
+ $ git checkout dev
+ $ git merge main
+ ```
+
+2. Create a new `release/vX.Y.Z` release branch off of `dev`.
+
+ ```bash
+ $ git checkout -b release/vX.Y.Z
+ $ git push --set-upstream release/vX.Y.Z
+ ```
+
+3. Stabilize the release by using bugfix branches off of the `release/vX.Y.Z` branch
+ (the same way you would do a feature branch off of `dev`).
+
+ ```bash
+ $ git checkout release/vX.Y.Z
+ $ git checkout -b hotfix/fix-label-alignment
+ $ git push --set-upstream hotfix/fix-label-alignment
+ ... do work
+ $ git commit -m "Adjust label to align with button"
+ $ git push
+ ```
+
+4. When the code is ready to release, navigate to the project on
+ [GitHub](https://github.com) and open a pull request with the following branch
+ settings:
+ * Base: `main`
+ * Compare: `release/vX.Y.Z`
+ Paste the Release Checklist into the PR body. Each project should define a release
+ checklist. TBD - will link release checklist here.
+
+5. At some point in the checklist you will merge the release branch into `main`.
+ You can do this by using the "Merge pull request" button on the release PR.
+
+6. Now you are ready to create the actual release. Navigate to the project page
+ on GitHub and draft a new release with the following settings:
+ * Tag version: `vX.Y.Z`
+ * Target: `main`
+ * Release title: `Release vX.Y.Z`
+ * Description: Includes a high-level list of things changed in this release.
+ Click `Publish release`.
+
+7. Merge the `release/vX.Y.Z` into `dev`.
+
+ ```bash
+ $ git checkout dev
+ $ git merge release/vX.Y.Z
+ $ git push
+ ```
+
+8. Finish off the tasks in the release checklist. Once everything is done, close
+ the release PR.
+
+9. Delete the release branch on GitHub.
+
+### Production hot fix
+
+A production hotfix is very similar to a full-scale release except that you do
+your work in a branch taken directly off of `main`. Hotfixes are useful in cases
+where you want to patch a bug in a released version, but `dev` has unreleased
+code in it already.
+
+**TBD: Insert diagram**
+
+1. Create a hot fix branch based off of `main`.
+
+ ```bash
+ $ git checkout main
+ $ git checkout -b hotfix/documentation-broken-links
+ $ git push --set-upstream origin hotfix/documentation-broken-links
+ ```
+
+2. Add a test case to validate the bug, fix the bug, and commit.
+
+ ```bash
+ ... add test, fix bug, verify
+ $ git add -A .
+ $ git commit -m "Fix broken links"
+ $ git push
+ ```
+
+3. Navigate to the project on [GitHub](https://github.com) and open a pull request
+ with the following branch settings:
+ * Base: `main`
+ * Compare: `hotfix/documentation-broken-links`
+ Paste your release checklist into the PR and work through the PR to get the
+ hotfix into production.
+
+4. At some point in the checklist you will merge the hotfix branch into `main`.
+ You can do this by using the "Merge pull request" button on the release PR.
+
+5. Now that the hotfix code is in `main` you are ready to create the actual
+ release. Navigate to the project page on GitHub and draft a new release with
+ the following settings:
+ * Tag version: `vX.Y.Z`
+ * Target: `main`
+ * Release title: `Release vX.Y.Z (hotfix)`
+ * Description: Includes a high-level list of things changed in this release.
+
+Click `Publish release`.
+
+*Note: Hotfix releases _are_ actual releases. You should bump at least the
+patch part of the version when releasing a hotfix, and so even hotfixes go
+through the process of creating a release like this.*
+
+1. Merge the `hotfix/documentation-broken-links` into `dev`.
+
+ ```bash
+ $ git checkout dev
+ $ git merge hotfix/documentation-broken-links
+ $ git push
+ ```
+
+2. Finish off the tasks in the release checklist. Once everything is done, close
+ the hotfix PR.
+
+## Code Style
+
+We maintain a consistent code style throughout the project, so please ensure your changes align with our existing style.
+Take a look at the existing codebase to understand the patterns and conventions we follow.
+
+## Commit Messages
+
+The [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/#summary) specification is a
+lightweight convention on top of commit messages. It provides an easy set of rules for creating an explicit
+commit history, which makes it easier to write automated tools on top of. This convention dovetails with SemVer
+by describing the features, fixes, and breaking changes made in commit messages. Please refer to the linked
+documentation for examples and additional context.
+
+<type>[optional scope]: <description>
+
+[optional body]
+
+[optional footer(s)]
+
+
+## Issue Tracking
+
+We utilize the issue tracking functionality of GitHub to manage our project's roadmap and track bugs or feature requests.
+If you encounter any problems or have a new idea, please search the issues to ensure it hasn't already been reported.
+If necessary, open a new issue providing a clear description, steps to reproduce, and any relevant information.
+
+We greatly appreciate your effort and contribution to our project! Let's build something awesome together!
diff --git a/README.md b/README.md
index cec679e..8c309f8 100755
--- a/README.md
+++ b/README.md
@@ -32,15 +32,13 @@ First, ensure you have installed the following tools locally
git clone https://github.com/aws-solutions-library-samples/osml-model-runner-test.git
```
-2. Run `tox` to create a virtual environment
+1. Run `tox` to create a virtual environment
```sh
cd osml-model-runner-test
tox
```
-
-
### Documentation
You can find documentation for this library in the `./doc` directory. Sphinx is used to construct a searchable HTML
@@ -50,30 +48,6 @@ version of the API documents.
tox -e docs
```
-
-## Linting/Formatting
-
-This package uses a number of tools to enforce formatting, linting, and general best practices:
-
-- [black](https://github.com/psf/black)
-- [isort](https://github.com/PyCQA/isort) for formatting with a max line length of 100
-- [mypy](https://github.com/pre-commit/mirrors-mypy) to enforce static type checking
-- [flake8](https://github.com/PyCQA/flake8) to check pep8 compliance and logical errors in code
-- [autopep](https://github.com/pre-commit/mirrors-autopep8) to check pep8 compliance and logical errors in code
-- [eslint](https://github.com/pre-commit/mirrors-eslint) to check pep8 compliance and logical errors in code
-- [prettier](https://github.com/pre-commit/mirrors-prettier) to check pep8 compliance and logical errors in code
-- [pre-commit](https://github.com/pre-commit/pre-commit-hooks) to install and control linters in githooks
-
-```bash
-python3 -m pip install pre-commit
-pre-commit install
-```
-
-Additionally, you can perform linting on all the files in the package by running:
-```bash
-pre-commit run --all-files --show-diff-on-failure
-```
-
### Build and Local Testing
You can run the hydra tests against your dev account by exporting the required parameters and using the pytest CLI by
@@ -112,14 +86,15 @@ python3 bin/process_image.py --help
```
### Running Tests in Docker
-Arguments can be passed in to docker run in the same way that they are porvided to the shell script. For example, the container can be built and run as follows:
+Arguments can be passed in to docker run in the same way that they are provided to the shell script.
+For example, the container can be built and run as follows:
```
docker build . -t model-runner-hydra-test:latest
docker run -v ~/.aws:/root/.aws model-runner-hydra-test:latest small centerpoint NITF JPEG us-west-2 $ACCOUNT_NUMBER
```
-Credentials from the users account are volume mounted into the container's root directory.
+Credentials from the user's account are volume mounted into the container's root directory.
### Running LoadTest
@@ -144,7 +119,7 @@ If you are interested in contributing to OversightML Model Runner, see the [CONT
## Security
-See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information.
+See [CONTRIBUTING](CONTRIBUTING.md) for more information.
## License
diff --git a/bin/get_cost_report.py b/bin/get_cost_report.py
new file mode 100644
index 0000000..e1d2677
--- /dev/null
+++ b/bin/get_cost_report.py
@@ -0,0 +1,88 @@
+import argparse
+from typing import Any, Dict, List
+
+import boto3
+import pandas as pd
+from tabulate import tabulate
+
+
+def get_combined_cost_data(start_time: str, end_time: str) -> pd.DataFrame:
+ """
+ Fetches AWS cost data for a specified time range and combines it into a DataFrame.
+
+ :param start_time: Start time in ISO8601 format (e.g., '2023-10-20T09:00:00Z').
+ :param end_time: End time in ISO8601 format (e.g., '2023-10-20T11:00:00Z').
+ :return: A DataFrame containing cost data for the specified time range.
+ """
+ print("Getting cost data for {} to {}".format(start_time, end_time))
+ session = boto3.Session(profile_name="default", region_name="us-west-2") # Replace with your AWS profile name
+
+ # AWS Cost Explorer client
+ ce = session.client("ce")
+
+ # Initialize an empty list to store data for all hours
+ combined_data = []
+
+ # Calculate the number of hours between start and end times
+ num_hours = (pd.to_datetime(end_time) - pd.to_datetime(start_time)).total_seconds() / 3600
+
+ # Iterate through each hour and fetch data
+ for hour in range(int(num_hours) + 1):
+ hour_start = pd.to_datetime(start_time) + pd.DateOffset(hours=hour)
+ hour_end = hour_start + pd.DateOffset(hours=1)
+
+ # Get an AWS cost and usage report with the service filter for the current hour
+ response = ce.get_cost_and_usage(
+ TimePeriod={"Start": hour_start.strftime("%Y-%m-%dT%H:%M:%SZ"), "End": hour_end.strftime("%Y-%m-%dT%H:%M:%SZ")},
+ Granularity="HOURLY",
+ Metrics=["UnblendedCost"],
+ GroupBy=[{"Type": "DIMENSION", "Key": "SERVICE"}],
+ )
+
+ # Append the data for the current hour to the combined data list
+ combined_data += response["ResultsByTime"]
+
+ # Create a DataFrame from the combined data
+ df_list: List[Dict[str, Any]] = []
+
+ # Initialize total cost
+ total_cost = 0.0
+
+ for period in combined_data:
+ for group in period.get("Groups", []):
+ service_name = group["Keys"][0]
+ cost_amount = float(group["Metrics"]["UnblendedCost"]["Amount"])
+ df_list.append({"Service": service_name, "Cost": cost_amount, "TimePeriod": period["TimePeriod"]["Start"]})
+ total_cost += cost_amount # Accumulate the total cost
+
+ # Add a row for total cost
+ df_list.append({"Service": "Total", "Cost": total_cost, "TimePeriod": "Total"})
+
+ df = pd.DataFrame(df_list)
+ return df
+
+
+def main():
+ """
+ Fetches AWS cost data for a specified time range and combines it into a DataFrame for display.
+ :return:
+ """
+ parser = argparse.ArgumentParser(description="Fetch AWS cost data for a specified time range.")
+ parser.add_argument("start_time", help="Start time in ISO8601 format (e.g., 2023-10-20T09:00:00Z)")
+ parser.add_argument("end_time", help="End time in ISO8601 format (e.g., 2023-10-20T11:00:00Z)")
+ args = parser.parse_args()
+
+ print("Please ensure that the cost explorer has been updated for the request time window!")
+
+ # Get combined cost data for the specified time range
+ df = get_combined_cost_data(args.start_time, args.end_time)
+
+ # Create a pretty table for cost breakdown
+ table = tabulate(df, headers="keys", tablefmt="fancy_grid")
+
+ # Display the pretty table
+ print(table)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/bin/process_image.py b/bin/process_image.py
index ecd3d49..5393ac0 100644
--- a/bin/process_image.py
+++ b/bin/process_image.py
@@ -40,16 +40,17 @@
# set up a cli tool for the script using argparse
parser = argparse.ArgumentParser("process_image")
-parser.add_argument("--image", help="The target image URL to process with OSML Model Runner.", type=str, default="small")
-parser.add_argument("--model", help="The target model to use for object detection.", type=str, default="centerpoint")
+parser.add_argument("--image", help="Target image URL to process with OSML Model Runner.", type=str, default="small")
+parser.add_argument("--model", help="Target model to use for object detection.", type=str, default="centerpoint")
parser.add_argument("--skip_integ", help="Whether or not to compare image with known results.", action="store_true")
-parser.add_argument("--tile_format", help="The target tile format to use for tiling.", type=str)
-parser.add_argument("--tile_compression", help="The compression used for the target image.", type=str)
-parser.add_argument("--tile_size", help="The tile size to split the image into for model processing.", type=str)
-parser.add_argument("--tile_overlap", help="The tile overlap to consider when processing regions.", type=str)
-parser.add_argument("--feature_selection_options", help="The feature selection options JSON string.", type=str)
-parser.add_argument("--region", help="The AWS region OSML is deployed to.", type=str, default=default_region)
-parser.add_argument("--account", help="The AWS account OSML is deployed to.", type=str, default=default_account)
+parser.add_argument("--tile_format", help="Target tile format to use for tiling.", type=str)
+parser.add_argument("--tile_compression", help="Compression used for the target image.", type=str)
+parser.add_argument("--tile_size", help="Tile size to split the image into for model processing.", type=str)
+parser.add_argument("--tile_overlap", help="Tile overlap to consider when processing regions.", type=str)
+parser.add_argument("--feature_selection_options", help="Feature selection options JSON string.", type=str)
+parser.add_argument("--region", help="AWS region OSML is deployed to.", type=str, default=default_region)
+parser.add_argument("--account", help="AWS account OSML is deployed to.", type=str, default=default_account)
+parser.add_argument("--endpoint_type", help="Type of model endpoint to test, sm or http.", type=str, default="sm")
args = parser.parse_args()
# standard test images deployed by CDK
@@ -62,9 +63,13 @@
"tile_ntf": f"s3://{image_bucket}/tile.ntf",
"tile_jpeg": f"s3://{image_bucket}/tile.jpeg",
"tile_png": f"s3://{image_bucket}/tile.png",
+ "sicd_capella_chip_ntf": f"s3://{image_bucket}/sicd-capella-chip.ntf",
+ "sicd_umbra_chip_ntf": f"s3://{image_bucket}/sicd-umbra-chip.ntf",
+ "sicd_interferometric_hh_ntf": f"s3://{image_bucket}/sicd-interferometric-hh.nitf",
+ "wbid": f"s3://{image_bucket}/wbid.ntf",
}
-# call into root directory of this package so that we can run this script from anywhere.
+# call into the root directory of this package so that we can run this script from anywhere.
os.chdir(os.path.join(os.path.dirname(os.path.abspath(__file__)), ".."))
# set the python path to include the project source
@@ -92,6 +97,6 @@
test = "src/aws/osml/process_image/test_process_image.py"
else:
# run integration test against known results
- test = f"src/aws/osml/integ/{args.model}/test_{args.model}_model.py"
+ test = f"src/aws/osml/integ/{args.endpoint_type}_{args.model}/test_{args.endpoint_type}_{args.model}_model.py"
subprocess.run(["python3", "-m", "pytest", "-o", "log_cli=true", "-vv", test])
diff --git a/bin/run_load_test.py b/bin/run_load_test.py
index 511ed59..067dce9 100644
--- a/bin/run_load_test.py
+++ b/bin/run_load_test.py
@@ -16,20 +16,20 @@
# set up a cli tool for the script using argparse
parser = argparse.ArgumentParser("process_image")
-parser.add_argument("--image_bucket", help="The target image bucket to process with OSML Model Runner.", type=str)
-parser.add_argument("--result_bucket", help="The target result bucket to store outputs from OSML Model Runner", type=str)
-parser.add_argument("--model", help="The target model to use for object detection.", type=str, default="aircraft")
+parser.add_argument("--image_bucket", help="Target image bucket to process with OSML Model Runner.", type=str)
+parser.add_argument("--result_bucket", help="Target result bucket to store outputs from OSML Model Runner", type=str)
+parser.add_argument("--model", help="Target model to use for object detection.", type=str, default="aircraft")
parser.add_argument("--processing_window", help="How long do we want to run the test for (in hours)", type=str)
-parser.add_argument("--periodic_sleep", help="Periodically send a new image request (in seconds)", type=str, default="60")
-parser.add_argument("--tile_format", help="The target tile format to use for tiling.", type=str)
-parser.add_argument("--tile_compression", help="The compression used for the target image.", type=str)
-parser.add_argument("--tile_size", help="The tile size to split the image into for model processing.", type=str)
-parser.add_argument("--tile_overlap", help="The tile overlap to consider when processing regions.", type=str)
-parser.add_argument("--region", help="The AWS region OSML is deployed to.", type=str, default=default_region)
-parser.add_argument("--account", help="The AWS account OSML is deployed to.", type=str, default=default_account)
+parser.add_argument("--periodic_sleep", help="Periodically send a new image request (seconds)", type=str, default="60")
+parser.add_argument("--tile_format", help="Target tile format to use for tiling.", type=str)
+parser.add_argument("--tile_compression", help="Compression used for the target image.", type=str)
+parser.add_argument("--tile_size", help="Tile size to split the image into for model processing.", type=str)
+parser.add_argument("--tile_overlap", help="Tile overlap to consider when processing regions.", type=str)
+parser.add_argument("--region", help="AWS region OSML is deployed to.", type=str, default=default_region)
+parser.add_argument("--account", help="AWS account OSML is deployed to.", type=str, default=default_account)
args = parser.parse_args()
-# call into root directory of this package so that we can run this script from anywhere.
+# call into the root directory of this package so that we can run this script from anywhere.
os.chdir(os.path.join(os.path.dirname(os.path.abspath(__file__)), ".."))
# set the python path to include the project source
@@ -53,7 +53,7 @@
os.environ["S3_LOAD_TEST_RESULT_BUCKET"] = result_bucket
os.environ["S3_RESULTS_BUCKET"] = result_bucket
os.environ["PERIODIC_SLEEP_SECS"] = args.periodic_sleep
-os.environ["PROCESSING_WINDOW_HRS"] = args.processing_window
+os.environ["PROCESSING_WINDOW_MIN"] = args.processing_window
if args.tile_format:
os.environ["TILE_FORMAT"] = args.tile_format
@@ -63,6 +63,8 @@
os.environ["TILE_SIZE"] = args.tile_size
if args.tile_overlap:
os.environ["TILE_OVERLAP"] = args.tile_overlap
+if args.model:
+ os.environ["SM_LOAD_TEST_MODEL"] = args.model
test = "src/aws/osml/load/load_test.py"
diff --git a/bin/run_test.sh b/bin/run_test.sh
deleted file mode 100755
index 4562ace..0000000
--- a/bin/run_test.sh
+++ /dev/null
@@ -1,90 +0,0 @@
-#!/bin/bash
-
-#
-# Copyright 2023 Amazon.com, Inc. or its affiliates.
-#
-
-# This is a utility script to help building and uploading the OSML default test model to an accounts ECR
-# repository deployed by the AWSOversightMLCDK package. While this script can be run without providing inputs,
-# a user can pass in the following optional parameters to modify default behavior:
-# $1 = test_image = image to run test against
-# $2 = MODEL = options: < centerpoint | flood | process | aircraft >
-# $2 = test_tile_format = tile format to use
-# $3 = test_tile_compression = tile compression to use
-# $4 = region = region OSML is deployed in
-# $5 = account = account to test with
-# $6 = remote account = see description below
-
-# If you want to test cross account access provide a remote account (ex. 555986723962)
-# If the value is set it will use images from the gamma integ account
-# and will write results to the stream and bucket located in that account
-# You'll need to run the tests using creds for the gamma deployment account or
-# add your account as a trusted principal to the necessary roles in the remote account
-
-
-# Grab user inputs or set default values
-export TARGET_IMAGE=${1}
-export MODEL=${2:-centerpoint}
-export TEST_TILE_FORMAT=${3:-NITF}
-export TEST_TILE_COMPRESSION=${4:-J2K}
-export REGION=${5:-us-west-2}
-export ACCOUNT=${6:-$(aws sts get-caller-identity --query Account --output text)}
-export REMOTE_ACCOUNT=${7:-}
-
-# Standard test images deployed by CDK currently
-case $TARGET_IMAGE in
- "small")
- TARGET_IMAGE="s3://test-images-${ACCOUNT}/small.tif"
- ;;
-
- "large")
- TARGET_IMAGE="s3://test-images-${ACCOUNT}/large.tif"
- TEST_TILE_COMPRESSION=NONE
- ;;
-
- "meta")
- TARGET_IMAGE="s3://test-images-${ACCOUNT}/meta.ntf"
- ;;
-
- "tile_tif")
- TARGET_IMAGE="s3://test-images-${ACCOUNT}/tile.tif"
- ;;
-
- "tile_ntf")
- TARGET_IMAGE="s3://test-images-${ACCOUNT}/tile.ntf"
- ;;
-
- "tile_jpeg")
- TARGET_IMAGE="s3://test-images-${ACCOUNT}/tile.jpeg"
- ;;
-
- "tile_png")
- TARGET_IMAGE="s3://test-images-${ACCOUNT}/tile.png"
- ;;
-
-esac
-
-# Expected values from our CDK package
-export IMAGE_QUEUE_NAME=ImageRequestQueue
-export TEST_RESULTS_BUCKET=test-results-${ACCOUNT}
-export TEST_STREAM=test-stream-${ACCOUNT}
-export JOB_STATUS_TABLE=ImageProcessingJobStatus
-export REGION_REQUEST_TABLE=RegionProcessingJobStatus
-export FEATURE_TABLE=ImageProcessingFeatures
-export SM_CENTER_POINT_MODEL=centerpoint
-export SM_FLOOD_MODEL=flood
-export SM_AIRCRAFT_MODEL=aircraft
-export TILE_FORMAT=${TEST_TILE_FORMAT}
-export TILE_COMPRESSION=${TEST_TILE_COMPRESSION}
-export TEST_STATUS_QUEUE=ImageStatusQueue
-export TARGET_MODEL=${MODEL}
-
-# Call into root directory of this pacakge so that we can
-# run this script from anywhere.
-LOCAL_DIR="$( dirname -- "$0"; )"
-cd "${LOCAL_DIR}/.." || exit 1
-
-export PYTHONPATH="${PYTHONPATH}:./src/"
-
-# Run integration tests with pytest
-time python3 -m pytest -o log_cli=true -vv src/aws/osml/integ/"${MODEL}"/test_"${MODEL}"_model.py
diff --git a/bin/translate_images.py b/bin/translate_images.py
new file mode 100644
index 0000000..d5c0222
--- /dev/null
+++ b/bin/translate_images.py
@@ -0,0 +1,139 @@
+# Copyright 2023 Amazon.com, Inc. or its affiliates.
+
+"""
+###################################################################################################
+
+This script provides functionality to convert GeoTIFF images to NITF (National Imagery Transmission Format) format.
+The script supports two target NITF formats: GREYSCALE (16bit) and WBID (Wideband Image Data).
+It uses the GDAL (Geospatial Data Abstraction Library) library for the conversion process.
+
+The script defines three main functions: 1. `Translate_to_greyscale`: Converts a GeoTIFF dataset to a greyscale NITF
+format. 2. `Translate_to_WBID`: Converts a GeoTIFF dataset to a NITF file in the WBID format. 3.
+`Convert_geotiff_to_nitf`: Converts GeoTIFF files in a specified input directory to the desired NITF format (either
+greyscale or WBID) and saves them in an output directory.
+
+The script accepts command-line arguments for specifying input and output directories, target format, inclusion of
+XML metadata, and compression method.
+
+Usage: python script_name.py --input_dir input_directory --output_format {GREYSCALE/WBID} [--output_dir
+output_directory] [--include_xml {NO/YES}] [--compression compression_method]
+
+Example Usage: python3 translate_images.py --input_dir input_data --output_format GREYSCALE --output_dir output_data
+--include_xml YES --compression LZW
+
+Please ensure you have the GDAL library and its Python bindings (osgeo.gdal) installed before running this script.
+You can customize the script's behavior by modifying the function parameters and GDAL options as needed.
+###################################################################################################"""
+
+import argparse
+import glob
+import os
+from enum import Enum, auto
+from typing import Optional
+
+from osgeo import gdal, gdalconst
+from osgeo.gdal import Translate
+
+
+class TargetFormat(Enum):
+ """
+ Enum for specifying the target NITF format for conversion.
+ """
+
+ GREYSCALE = auto()
+ WBID = auto()
+
+
+def translate_to_greyscale(out_file: str, ds: gdal.Dataset) -> gdal.Dataset:
+ """
+ Translate a GeoTIFF dataset to a greyscale NITF format.
+
+ :param out_file: The path to the output NITF file to be created.
+ :param ds: The input GeoTIFF dataset to be translated.
+ :return: The translated NITF dataset.
+ """
+ return Translate(
+ destName=out_file,
+ srcDS=ds,
+ bandList=[float(1)],
+ format="NITF",
+ outputType=gdalconst.GDT_Int16,
+ creationOptions=["IC=C8", "PROFILE=NPJE_NUMERICALLY_LOSSLESS"],
+ )
+
+
+def translate_to_wbid(out_file: str, ds: gdal.Dataset) -> gdal.Dataset:
+ """
+ Converts a GeoTIFF dataset to a NITF file in the WBID format.
+
+ :param out_file: The path to the output NITF file to be created.
+ :param ds: The input GeoTIFF dataset to be converted.
+ :return: The converted NITF dataset.
+ """
+ return Translate(
+ destName=out_file,
+ srcDS=ds,
+ bandList=[1],
+ format="NITF",
+ outputType=gdalconst.GDT_Byte,
+ creationOptions=["IC=C8", "PROFILE=NPJE_NUMERICALLY_LOSSLESS"],
+ )
+
+
+def convert_geotiff_to_nitf(input_dir: str, target_format: TargetFormat, output_dir: Optional[str] = None) -> None:
+ """
+ Convert GeoTIFF files in the input directory to NITF format (either greyscale or WBID).
+
+ :param input_dir: The directory containing the input GeoTIFF files.
+ :param target_format: The target format for conversion, either GREYSCALE or WBID.
+ :param output_dir: The directory where converted NITF files will be saved.
+ If not provided, a default 'output' directory will be created
+ inside the input directory.
+ :raises Exception: If an invalid target format is provided.
+ """
+ if output_dir is None:
+ output_dir = os.path.join(input_dir, "output")
+
+ if not os.path.exists(output_dir):
+ os.makedirs(output_dir)
+
+ input_files = glob.glob(os.path.join(input_dir, "*.tif"))
+
+ for input_file in input_files:
+ output_file = os.path.join(output_dir, os.path.splitext(os.path.basename(input_file))[0] + ".ntf")
+ src_ds = gdal.Open(input_file)
+
+ if target_format == TargetFormat.GREYSCALE:
+ translate_to_greyscale(output_file, src_ds)
+ elif target_format == TargetFormat.WBID:
+ translate_to_wbid(output_file, src_ds)
+ else:
+ raise Exception(f"Invalid target format: {target_format}")
+
+ print("Conversion completed.")
+
+
+if __name__ == "__main__":
+ parser = argparse.ArgumentParser(description="Convert GeoTIFF images to a target NITF format.")
+ parser.add_argument("input_dir", help="Input directory containing GeoTIFF images")
+ parser.add_argument("--output_format", help="Target format to convert to (options: GREYSCALE/WBID)")
+ parser.add_argument(
+ "--output_dir", help="Output directory for NITF images (default: input_dir/output)", type=str, default=None
+ )
+ parser.add_argument(
+ "--include_xml", help="Output directory for NITF images (default: NO, options: NO/YES)", type=str, default="NO"
+ )
+ parser.add_argument(
+ "--compression", help="Target compression to use for imagery (default: NONE)", type=str, default=None
+ )
+ args = parser.parse_args()
+
+ if args.compression is not None:
+ gdal.SetConfigOption("COMPRESS_OVERVIEW", args.compression)
+
+ gdal.SetConfigOption("GDAL_PAM_ENABLED", args.include_xml)
+
+ usr_input_dir = args.input_dir
+ usr_output_dir = args.output_dir
+
+ convert_geotiff_to_nitf(usr_input_dir, TargetFormat[args.output_format], usr_output_dir)
diff --git a/environment-py311.yml b/environment-py311.yml
new file mode 100644
index 0000000..ab86302
--- /dev/null
+++ b/environment-py311.yml
@@ -0,0 +1,7 @@
+name: osml_model_runner_test
+channels:
+ - conda-forge
+dependencies:
+ - conda-forge::python=3.11
+ - conda-forge::gdal=3.7.2
+ - conda-forge::proj=9.3.0
diff --git a/environment.yml b/environment.yml
new file mode 100644
index 0000000..80f6d82
--- /dev/null
+++ b/environment.yml
@@ -0,0 +1,6 @@
+name: osml_models
+channels:
+ - conda-forge
+dependencies:
+ - conda-forge::gdal=3.7.2
+ - conda-forge::proj=9.3.0
diff --git a/images/release-deployment.png b/images/release-deployment.png
new file mode 100644
index 0000000..65dcc2b
Binary files /dev/null and b/images/release-deployment.png differ
diff --git a/images/release_deployment.sketch b/images/release_deployment.sketch
new file mode 100644
index 0000000..1d43e59
Binary files /dev/null and b/images/release_deployment.sketch differ
diff --git a/logs/.gitignore b/logs/.gitignore
new file mode 100644
index 0000000..72e8ffc
--- /dev/null
+++ b/logs/.gitignore
@@ -0,0 +1 @@
+*
diff --git a/setup.cfg b/setup.cfg
index aeec4ec..cb21e95 100755
--- a/setup.cfg
+++ b/setup.cfg
@@ -5,7 +5,7 @@ description = Package to run tests against osml-model-runner deployments.
long_description = file: README.md
long_description_content_type = text/markdown
author = Amazon Web Services
-author_email = todo-public-library-poc@amazon.com
+author_email = aws-osml-admin@amazon.com
license =
MIT No Attribution
@@ -24,8 +24,8 @@ license =
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
project_urls =
- Source = https://github.com/aws/todo-public-library
- Tracker = https://github.com/aws/todo-public-library/issues
+ Source = https://github.com/aws-solutions-library-samples/osml-model-runner-test
+ Tracker = https://github.com/aws-solutions-library-samples/osml-model-runner-test/issues
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
@@ -35,15 +35,16 @@ zip_safe = False
package_dir=
=src
packages=find_namespace:
-python_requires = >=3.8
+python_requires = >=3.9
include_package_data = True
install_requires =
- boto3==1.28.1
- botocore==1.31.1
+ boto3==1.28.57
+ botocore==1.31.57
geojson==3.0.1
pytest==7.3.1
setuptools==68.0.0
+ toml==0.10.2
[options.packages.find]
@@ -56,5 +57,7 @@ package_data =
= ["py.typed"]
[options.extras_require]
+gdal =
+ gdal>=3.7.0
test =
tox
diff --git a/src/aws/osml/integ/aircraft/test_aircraft_model.py b/src/aws/osml/integ/aircraft/test_aircraft_model.py
deleted file mode 100644
index ef2a432..0000000
--- a/src/aws/osml/integ/aircraft/test_aircraft_model.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2023 Amazon.com, Inc. or its affiliates.
-
-import logging
-
-from aws.osml.utils import (
- OSMLConfig,
- count_features,
- ddb_client,
- kinesis_client,
- run_model_on_image,
- sqs_client,
- validate_expected_feature_count,
-)
-
-logger = logging.getLogger()
-logger.setLevel(logging.INFO)
-
-
-def test_model_runner_aircraft_model() -> None:
- """
- Run the test using the Aircraft and validate the number of features
-
- :return: None
- """
-
- # Launch our image request and validate it completes
- image_id, job_id, image_processing_request, kinesis_shard = run_model_on_image(
- sqs_client(), OSMLConfig.SM_AIRCRAFT_MODEL, kinesis_client()
- )
-
- # Count the features that were create in the table for this image
- feature_count = count_features(image_id=image_id, ddb_client=ddb_client())
-
- # Validate the number of features we created match expected values
- validate_expected_feature_count(feature_count)
diff --git a/src/aws/osml/integ/__init__.py b/src/aws/osml/integ/http_centerpoint/__init__.py
similarity index 100%
rename from src/aws/osml/integ/__init__.py
rename to src/aws/osml/integ/http_centerpoint/__init__.py
diff --git a/src/aws/osml/integ/http_centerpoint/test_http_centerpoint_model.py b/src/aws/osml/integ/http_centerpoint/test_http_centerpoint_model.py
new file mode 100644
index 0000000..926f575
--- /dev/null
+++ b/src/aws/osml/integ/http_centerpoint/test_http_centerpoint_model.py
@@ -0,0 +1,69 @@
+# Copyright 2023 Amazon.com, Inc. or its affiliates.
+
+import logging
+
+from aws.osml.utils import (
+ OSMLConfig,
+ count_features,
+ count_region_request_items,
+ ddb_client,
+ elb_client,
+ kinesis_client,
+ run_model_on_image,
+ s3_client,
+ sqs_client,
+ validate_expected_region_request_items,
+ validate_features_match,
+)
+
+logger = logging.getLogger()
+logger.setLevel(logging.INFO)
+
+
+def test_model_runner_centerpoint_http_model() -> None:
+ """
+ Run the test using the CenterPointModel and validate the number of features
+ and region requests using the HTTP endpoint
+
+ :return: None
+ """
+
+ if OSMLConfig.HTTP_CENTERPOINT_MODEL_URL:
+ http_endpoint_url = OSMLConfig.HTTP_CENTERPOINT_MODEL_URL
+ else:
+ http_endpoint_dns = get_load_balancer_dns_url(OSMLConfig.HTTP_CENTERPOINT_MODEL_ELB_NAME)
+ http_endpoint_url = f"http://{http_endpoint_dns}{OSMLConfig.HTTP_CENTERPOINT_MODEL_INFERENCE_PATH}"
+
+ # launch our image request and validate it completes
+ image_id, job_id, image_processing_request, shard_iter = run_model_on_image(
+ sqs_client(), http_endpoint_url, "HTTP_ENDPOINT", kinesis_client()
+ )
+
+ # count the created features in the table for this image
+ count_features(image_id=image_id, ddb_client=ddb_client())
+
+ # verify the results we created in the appropriate syncs
+ validate_features_match(
+ image_processing_request=image_processing_request,
+ job_id=job_id,
+ shard_iter=shard_iter,
+ s3_client=s3_client(),
+ kinesis_client=kinesis_client(),
+ )
+
+ # validate the number of region requests that were created in the process and check if they are succeeded
+ region_request_count = count_region_request_items(image_id=image_id, ddb_client=ddb_client())
+ validate_expected_region_request_items(region_request_count)
+
+
+def get_load_balancer_dns_url(load_balancer_name: str) -> str:
+ """
+ Get the DNS URL for the given load balancer
+ :param load_balancer_name: The name of the load balancer
+ :return: The DNS URL for the load balancer
+ """
+ logger.debug("Retrieving DNS name for '{}'...".format(load_balancer_name))
+ res = elb_client().describe_load_balancers(Names=[load_balancer_name])
+ dns_name = res.get("LoadBalancers", [])[0].get("DNSName")
+ logger.debug("Found DNS name: {}".format(dns_name))
+ return dns_name
diff --git a/src/aws/osml/integ/aircraft/__init__.py b/src/aws/osml/integ/sm_aircraft/__init__.py
similarity index 100%
rename from src/aws/osml/integ/aircraft/__init__.py
rename to src/aws/osml/integ/sm_aircraft/__init__.py
diff --git a/src/aws/osml/integ/sm_aircraft/test_sm_aircraft_model.py b/src/aws/osml/integ/sm_aircraft/test_sm_aircraft_model.py
new file mode 100644
index 0000000..041b09e
--- /dev/null
+++ b/src/aws/osml/integ/sm_aircraft/test_sm_aircraft_model.py
@@ -0,0 +1,30 @@
+# Copyright 2023 Amazon.com, Inc. or its affiliates.
+
+import logging
+
+from aws.osml.utils import OSMLConfig, kinesis_client, run_model_on_image, s3_client, sqs_client, validate_features_match
+
+logger = logging.getLogger()
+logger.setLevel(logging.INFO)
+
+
+def test_model_runner_aircraft_model() -> None:
+ """
+ Run the test using the Aircraft and validate the number of features
+
+ :return: None
+ """
+
+ # Launch our image request and validate it completes
+ image_id, job_id, image_processing_request, kinesis_shard = run_model_on_image(
+ sqs_client(), OSMLConfig.SM_AIRCRAFT_MODEL, "SM_ENDPOINT", kinesis_client()
+ )
+
+ # Verify the results we created in the appropriate syncs
+ validate_features_match(
+ image_processing_request=image_processing_request,
+ job_id=job_id,
+ shard_iter=kinesis_shard,
+ s3_client=s3_client(),
+ kinesis_client=kinesis_client(),
+ )
diff --git a/src/aws/osml/integ/centerpoint/__init__.py b/src/aws/osml/integ/sm_centerpoint/__init__.py
similarity index 100%
rename from src/aws/osml/integ/centerpoint/__init__.py
rename to src/aws/osml/integ/sm_centerpoint/__init__.py
diff --git a/src/aws/osml/integ/centerpoint/test_centerpoint_model.py b/src/aws/osml/integ/sm_centerpoint/test_sm_centerpoint_model.py
similarity index 82%
rename from src/aws/osml/integ/centerpoint/test_centerpoint_model.py
rename to src/aws/osml/integ/sm_centerpoint/test_sm_centerpoint_model.py
index 6a9562b..6a2f9e1 100644
--- a/src/aws/osml/integ/centerpoint/test_centerpoint_model.py
+++ b/src/aws/osml/integ/sm_centerpoint/test_sm_centerpoint_model.py
@@ -29,10 +29,10 @@ def test_model_runner_center_point_model() -> None:
# launch our image request and validate it completes
image_id, job_id, image_processing_request, shard_iter = run_model_on_image(
- sqs_client(), OSMLConfig.SM_CENTERPOINT_MODEL, kinesis_client()
+ sqs_client(), OSMLConfig.SM_CENTERPOINT_MODEL, "SM_ENDPOINT", kinesis_client()
)
- # count the features that were create in the table for this image
+ # count the features created in the table for this image
count_features(image_id=image_id, ddb_client=ddb_client())
# verify the results we created in the appropriate syncs
@@ -44,6 +44,6 @@ def test_model_runner_center_point_model() -> None:
kinesis_client=kinesis_client(),
)
- # validate the number of region request that were created in the process and check if they are succeeded
+ # validate the number of region requests that were created in the process and check if they are succeeded
region_request_count = count_region_request_items(image_id=image_id, ddb_client=ddb_client())
validate_expected_region_request_items(region_request_count)
diff --git a/src/aws/osml/integ/flood/__init__.py b/src/aws/osml/integ/sm_flood/__init__.py
similarity index 100%
rename from src/aws/osml/integ/flood/__init__.py
rename to src/aws/osml/integ/sm_flood/__init__.py
diff --git a/src/aws/osml/integ/flood/test_flood_model.py b/src/aws/osml/integ/sm_flood/test_sm_flood_model.py
similarity index 89%
rename from src/aws/osml/integ/flood/test_flood_model.py
rename to src/aws/osml/integ/sm_flood/test_sm_flood_model.py
index ea53e66..7137179 100644
--- a/src/aws/osml/integ/flood/test_flood_model.py
+++ b/src/aws/osml/integ/sm_flood/test_sm_flood_model.py
@@ -28,10 +28,10 @@ def test_model_runner_flood_model() -> None:
# Launch our image request and validate it completes
image_id, job_id, image_processing_request, kinesis_shard = run_model_on_image(
- sqs_client(), OSMLConfig.SM_FLOOD_MODEL, kinesis_client()
+ sqs_client(), OSMLConfig.SM_FLOOD_MODEL, "SM_ENDPOINT", kinesis_client()
)
- # Count the features that were create in the table for this image
+ # Count the features created in the table for this image
feature_count = count_features(image_id=image_id, ddb_client=ddb_client())
# Validate the number of features we created match expected values
diff --git a/src/aws/osml/load/load_test.py b/src/aws/osml/load/load_test.py
index adc4541..aa8c627 100644
--- a/src/aws/osml/load/load_test.py
+++ b/src/aws/osml/load/load_test.py
@@ -2,23 +2,38 @@
import json
import logging
+import os
import sys
from datetime import datetime, timedelta
from threading import Thread
from time import sleep
-from typing import Dict, List, Tuple
+from typing import Dict, List, Union
from botocore.exceptions import ClientError
from osgeo import gdal
-from aws.osml.utils.clients import cw_client, s3_client, sm_client, sqs_client
+from aws.osml.utils.clients import s3_client, sm_client, sqs_client
from aws.osml.utils.integ_utils import build_image_processing_request, queue_image_processing_job
from aws.osml.utils.osml_config import OSMLConfig, OSMLLoadTestConfig
+job_summary_log_file = "logs/job_summary.json"
+job_status_log_file = "logs/job_status.json"
+job_output_log_file = "logs/job_log.log"
+
+
logger = logging.getLogger()
logger.setLevel(logging.INFO)
+logging.getLogger("botocore").setLevel(logging.CRITICAL)
+
+# create the log file if it doesn't exist
+if os.path.isfile(job_output_log_file):
+ # Creates a new file
+ with open(job_output_log_file, "w") as fp:
+ pass
+ # To write data to new file uncomment
+ # this fp.write("New file created")
-fh = logging.FileHandler("loadtest-{:%s}.log".format(datetime.now()))
+fh = logging.FileHandler(job_output_log_file)
fh.setLevel(logging.INFO)
logger.addHandler(fh)
@@ -35,72 +50,13 @@ class ImageRequestStatus(str):
FAILED = "FAILED"
-def get_cw_metrics(start_time: datetime) -> Tuple[int, int]:
+def get_s3_images(bucket_name: str) -> Union[List[Dict[str, str]], None]:
"""
- Get total tiles processed and region processed from start time to now
+ Get all s3 images within the bucket to iterate through for load testing
- :param start_time: DateTime = start time of loadtest
+ :param bucket_name: Name of source bucket to use for testing images
- :return: Tuple[int, int] = total tiles and regions in tuple format
- """
- try:
- tiles_processed_response = cw_client().get_metric_data(
- MetricDataQueries=[
- {
- "Id": "tiles1",
- "MetricStat": {
- "Metric": {
- "Namespace": "OSML",
- "MetricName": "TilesProcessed",
- "Dimensions": [{"Name": "ImageFormat", "Value": "TIFF"}],
- },
- "Period": 60,
- "Stat": "Sum",
- },
- },
- ],
- StartTime=start_time,
- EndTime=datetime.now(),
- )
-
- total_tiles_processed = sum(tiles_processed_response["MetricDataResults"][0]["Values"])
-
- regions_processed_response = cw_client().get_metric_data(
- MetricDataQueries=[
- {
- "Id": "regions1",
- "MetricStat": {
- "Metric": {
- "Namespace": "OSML",
- "MetricName": "RegionsProcessed",
- "Dimensions": [{"Name": "ImageFormat", "Value": "TIFF"}],
- },
- "Period": 60,
- "Stat": "Sum",
- },
- },
- ],
- StartTime=start_time,
- EndTime=datetime.now(),
- )
-
- total_regions_processed = sum(regions_processed_response["MetricDataResults"][0]["Values"])
-
- return (total_tiles_processed, total_regions_processed)
-
- except ClientError as error:
- logger.error(f"Cannot fetch CloudWatch metric data - {error}")
-
- return (0, 0)
-
-
-def get_s3_images(bucket_name: str) -> List[Dict[str, int]]:
- """
- Get all s3 images within the bucket
-
- :param bucket_name: str = name of the bucket
-
- :return: Dict[str, str] = a list of s3 images
+ :return: List of s3 images to process for load test
"""
try:
response = s3_client().list_objects_v2(Bucket=bucket_name)
@@ -132,9 +88,9 @@ def check_s3_bucket(bucket_name: str) -> bool:
"""
Check to see if the S3 Bucket exists
- :param bucket_name: str = name of the bucket
+ :param bucket_name: Name of the bucket
- :return: bool = does the bucket exist or not
+ :return: True if the bucket exists, False otherwise
"""
try:
s3_client().head_bucket(Bucket=bucket_name)
@@ -148,13 +104,13 @@ def get_model_instance_type(sm_model: str) -> str:
"""
Get Model Instance Type
- :param sm_model: str = name of the SageMaker Model
+ :param sm_model: Name of the SageMaker Model
- :return: str = model instance type
+ :return: Model instance type
"""
try:
list_endpoints_response = sm_client().list_endpoint_configs(
- NameContains=f"MRTestingOSML{sm_model}ModelEndpointOSML{sm_model}Mode-",
+ NameContains=f"{sm_model}",
)
endpoint_name = list_endpoints_response["EndpointConfigs"][0]["EndpointConfigName"]
@@ -171,71 +127,79 @@ def get_model_instance_type(sm_model: str) -> str:
raise error
+def is_complete(job_status_dict: Dict) -> bool:
+ for image_id, value in job_status_dict.items():
+ if value["completed"] is False:
+ return False
+ return True
+
+
def monitor_job_status(job_status_dict: Dict, expected_end_time: datetime) -> None:
"""
Polls the messages from SQS, check every message in the SQS to determine the status of it. Then
- update the item in the job_status dict and goes on to the next one.
+ update the item in the job_status dict and go on to the next one.
- :param job_status_dict: Dict = dict containing job information
- :param expected_end_time: datetime = expected end time to end the thread
+ :param job_status_dict: Dict containing job information
+ :param expected_end_time: Expected end time to end the thread
:return: None
"""
- try:
- queue = sqs_client().get_queue_by_name(
- QueueName=OSMLConfig.SQS_IMAGE_STATUS_QUEUE, QueueOwnerAWSAccountId=OSMLConfig.ACCOUNT
- )
- except ClientError as error:
- logger.error(f"[Background Thread] Error encountered attempting to access SQS - {OSMLConfig.SQS_IMAGE_STATUS_QUEUE}")
- raise error
-
while True:
if not job_status_dict:
- logger.info("[Background Thread] There's no images processing! Continuing...")
- else:
- logger.info(
- f"[Background Thread] There are {len(job_status_dict)} items... Checking the status of each items..."
- )
+ logger.debug("[Background Thread] There's no images processing! Waiting 5 seconds...")
+ sleep(5)
+ continue
try:
- messages = queue.receive_messages()
- for message in messages:
- message_attributes = json.loads(message.body).get("MessageAttributes", {})
- message_image_id = message_attributes.get("image_id", {}).get("Value")
- message_image_status = message_attributes.get("image_status", {}).get("Value")
-
- if message_image_id in job_status_dict.keys():
- # if the job already succeeded, we do not need to check, go to the next one
- if not job_status_dict[message_image_id]["completed"]:
- # update the status
- job_status_dict[message_image_id]["status"] = message_image_status
-
- # mark the item in the dict completed
- if message_image_status in [
- ImageRequestStatus.SUCCESS,
- ImageRequestStatus.FAILED,
- ImageRequestStatus.PARTIAL,
- ]:
- job_status_dict[message_image_id]["completed"] = True
- else:
- logger.warning(f"[Background Thread] {message_image_id} does not exist in job_status_dict yet")
+ image_status_queue = sqs_client().get_queue_by_name(
+ QueueName=OSMLConfig.SQS_IMAGE_STATUS_QUEUE, QueueOwnerAWSAccountId=OSMLConfig.ACCOUNT
+ )
+ while True:
+ messages = image_status_queue.receive_messages()
+ if len(messages) == 0:
+ break
+ for message in messages:
+ message_attributes = json.loads(message.body).get("MessageAttributes", {})
+ message_image_id = message_attributes.get("image_id", {}).get("Value")
+ message_image_status = message_attributes.get("image_status", {}).get("Value")
+
+ if message_image_id in job_status_dict.keys():
+ if job_status_dict[message_image_id]["completed"] is False:
+ # update the status
+ job_status_dict[message_image_id]["status"] = message_image_status
+
+ # mark the item in the dict completed
+ if message_image_status in [
+ ImageRequestStatus.SUCCESS,
+ ImageRequestStatus.FAILED,
+ ImageRequestStatus.PARTIAL,
+ ]:
+ start_time = datetime.strptime(
+ job_status_dict[message_image_id]["start_time"], "%m/%d/%Y/%H:%M:%S"
+ )
+ processing_duration = (datetime.now() - start_time).total_seconds()
+ job_status_dict[message_image_id]["completed"] = True
+ job_status_dict[message_image_id]["processing_duration"] = processing_duration
+ else:
+ logger.warning(f"[Background Thread] {message_image_id} does not exist in job_status_dict yet")
except ClientError as error:
logging.warning(f"[Background Thread] {error}")
except KeyError as error:
logging.warning(f"[Background Thread] {error}")
- if datetime.now() >= expected_end_time:
+ if datetime.now() >= expected_end_time and is_complete(job_status_dict):
+ logger.info("[Background Thread] All images have been processed!")
break
- sleep(15)
+ sleep(5)
-def display_image_results(job_status_dict: Dict, total_tiles_processed: int, total_regions_processed: int) -> None:
+def display_image_results(job_status_dict: Dict) -> Dict:
"""
Calculate and display the result of LoadTest
- :param job_status_dict: Dict = dict containing job information
+ :param job_status_dict: Dictionary containing job information
- :return: None
+ :return: Dict = dictionary containing the results
"""
total_image_sent = len(job_status_dict)
total_image_in_progress = 0
@@ -243,7 +207,7 @@ def display_image_results(job_status_dict: Dict, total_tiles_processed: int, tot
total_image_failed = 0
total_image_succeeded = 0
total_size_processed = 0
- total_pixels_processed = (0, 0)
+ total_pixels_processed = 0
for image_id, value in job_status_dict.items():
if value["completed"]:
@@ -256,13 +220,13 @@ def display_image_results(job_status_dict: Dict, total_tiles_processed: int, tot
total_size_processed += value["size"]
- image_pixel = value["pixels"]
- total_pixels_processed = tuple(sum(item) for item in zip(total_pixels_processed, image_pixel))
+ total_pixels_processed += value["pixels"]
else:
total_image_in_progress += 1
- total_size = "%.3f GB" % (total_size_processed / 1024 / 1024 / 1024)
+ # convert the size to GB
+ total_gb_processed = total_size_processed / 1024 / 1024 / 1024
logger.info(
f"""
@@ -271,21 +235,29 @@ def display_image_results(job_status_dict: Dict, total_tiles_processed: int, tot
Total Images Processed: {total_image_processed}
Total Images Succeeded: {total_image_succeeded}
Total Images Failed: {total_image_failed}
- Total Size Processed: {total_size}
- Total Pixels Processed: {total_pixels_processed[0]}x{total_pixels_processed[1]}
- Total Tiles Processed: {total_tiles_processed}
- Total Regions Processed: {total_regions_processed}
+ Total GB Processed: {total_gb_processed}
+ Total Pixels Processed: {total_pixels_processed}
"""
)
+ return {
+ "total_image_sent": total_image_sent,
+ "total_image_in_progress": total_image_in_progress,
+ "total_image_processed": total_image_processed,
+ "total_image_succeeded": total_image_succeeded,
+ "total_image_failed": total_image_failed,
+ "total_gb_processed": total_gb_processed,
+ "total_pixels_processed": total_pixels_processed,
+ }
+
def start_workflow() -> None:
"""
The workflow to build an image request for a specific SM endpoint and then place it
- on the corresponding SQS queue every definied seconds for ModelRunner to pick up and process.
- Once the image has been completed return the associated image_id and image_request object for analysis.
+ on the corresponding SQS queue every defined second for ModelRunner to pick up and process.
+ Once the image has been completed, return the associated image_id and image_request object for analysis.
Then it will display the results for all the images have been sent for ModelRunner and calculate
- how many has succeeded or failed.
+ how many have succeeded or failed.
:return: None
"""
@@ -296,14 +268,14 @@ def start_workflow() -> None:
sm_endpoint_model = OSMLLoadTestConfig.SM_LOAD_TEST_MODEL
sm_instance_type = get_model_instance_type(sm_endpoint_model)
periodic_sleep = int(OSMLLoadTestConfig.PERIODIC_SLEEP_SECS)
- processing_window_hrs = int(OSMLLoadTestConfig.PROCESSING_WINDOW_HRS)
+ processing_window_min = int(OSMLLoadTestConfig.PROCESSING_WINDOW_MIN)
- # checking if images bucket exist and result bucket exist
+ # checking if images bucket exists and result bucket exists
if not check_s3_bucket(s3_image_bucket) or not check_s3_bucket(s3_result_bucket):
sys.exit(1)
start_time = datetime.now()
- expected_end_time = start_time + timedelta(hours=processing_window_hrs)
+ expected_end_time = start_time + timedelta(minutes=processing_window_min)
logger.info(
f"""Starting {start_time} the load test with the following parameters:
@@ -311,14 +283,14 @@ def start_workflow() -> None:
Output S3 Result Bucket: {s3_result_bucket}
SageMaker Instance Type: {sm_instance_type}
SageMaker Model: {sm_endpoint_model}
- LoadTest will stop at {expected_end_time}, at least {processing_window_hrs} hours from now
+ LoadTest will stop at {expected_end_time}, at least {processing_window_min} minutes from now
"""
)
job_status_dict = {} # keep track of jobs and its status
image_index = 0
- images_list = get_s3_images(s3_image_bucket) # get list of images from the bucket
+ images_list = get_s3_images(s3_image_bucket) # get a list of images from the bucket
if not images_list:
logger.error(f"There's no images in {s3_image_bucket} bucket!")
@@ -326,13 +298,21 @@ def start_workflow() -> None:
logger.info(f"There are {len(images_list)} images in {s3_image_bucket} bucket")
+ # it will keep looping until the time is greater than expected_end_time, will stop
+ # and generate cost_report after it is done
# spinning up a daemon thread (aka monitoring the job status and keep tracking of it)
daemon = Thread(target=monitor_job_status, args=(job_status_dict, expected_end_time), daemon=True, name="Background")
daemon.start()
-
- # it will keep looping until the time is greater than expected_end_time, will stop
- # and generate cost_report after it
while datetime.now() <= expected_end_time:
+ image_request_queue = sqs_client().get_queue_by_name(
+ QueueName=OSMLConfig.SQS_IMAGE_REQUEST_QUEUE, QueueOwnerAWSAccountId=OSMLConfig.ACCOUNT
+ )
+ while int(image_request_queue.attributes.get("ApproximateNumberOfMessages")) > 3:
+ image_request_queue = sqs_client().get_queue_by_name(
+ QueueName=OSMLConfig.SQS_IMAGE_REQUEST_QUEUE, QueueOwnerAWSAccountId=OSMLConfig.ACCOUNT
+ )
+ logger.info(f"ApproximateNumberOfMessages is greater than 3... waiting {periodic_sleep} seconds..")
+ sleep(periodic_sleep)
# build an image processing request
image_url = images_list[image_index]["image_name"]
image_size = images_list[image_index]["image_size"]
@@ -344,43 +324,50 @@ def start_workflow() -> None:
# grab the job id from the image request
job_id = image_processing_request["jobId"]
- # recreate the image_id that will be associated with the image request
- # note this logic must match the strategy used to construct the image ID in the Model Runner from the
- # image processing request. See AWSOversightMLModelRunner src/aws_oversightml_model_runner/model_runner_api.py
- image_id = job_id + ":" + image_processing_request["imageUrls"][0]
-
- logger.info(f"Image Id: {image_id}")
-
- # get the pixel count (h x w)
- # gdal has this capability which allow to open file virtually without needing to download or pull in.
+ # gdal has this capability which allows to open file virtually without needing to download or pull in.
gdal_info = gdal.Open(image_url.replace("s3:/", "/vsis3", 1))
- pixels = (gdal_info.RasterXSize, gdal_info.RasterYSize)
+ pixels = gdal_info.RasterXSize * gdal_info.RasterYSize
+ image_id = job_id + ":" + image_url
# compile into dict format and store it in the list for future tracking
job_status_dict[image_id] = {
"job_id": job_id,
+ "image_url": image_url,
"message_id": message_id,
"status": ImageRequestStatus.STARTED,
"completed": False,
"size": image_size,
"pixels": pixels,
+ "start_time": datetime.now().strftime("%m/%d/%Y/%H:%M:%S"),
+ "processing_duration": None,
}
logger.info(f"Total image sent {len(job_status_dict)}")
- # sleep for defined seconds, then send another image request
- sleep(periodic_sleep)
-
image_index += 1
- # if we reached to the end, reset it back to zero
+ # if we reached to the end, reset it back to zero,
# we would want to keep looping until the timer runs out
if image_index == len(images_list):
image_index = 0
# occasionally display image results
- total_tiles_processed, total_regions_processed = get_cw_metrics(start_time)
- display_image_results(job_status_dict, total_tiles_processed, total_regions_processed)
+ display_image_results(job_status_dict)
+
+ # Writing to job status file
+ with open(job_status_log_file, "w") as outfile:
+ outfile.write(json.dumps(job_status_dict, indent=4))
+
+ sleep(1)
+
+ # ensure jobs completed
+ while not is_complete(job_status_dict):
+ # Writing to sample.json
+ with open(job_status_log_file, "w") as outfile:
+ outfile.write(json.dumps(job_status_dict, indent=4))
+ display_image_results(job_status_dict)
+ logger.info("Waiting for jobs to complete...")
+ sleep(5)
actual_end_time = datetime.now()
@@ -392,8 +379,17 @@ def start_workflow() -> None:
logger.info(f"Total elapsed time: {total_elapsed_time.total_seconds()} seconds")
# final display image results
- total_tiles_processed, total_regions_processed = get_cw_metrics(start_time)
- display_image_results(job_status_dict, total_tiles_processed, total_regions_processed)
+ job_status_summary = display_image_results(job_status_dict)
+
+ # Writing to job status file
+ with open(job_status_log_file, "w") as outfile:
+ outfile.write(json.dumps(job_status_dict, indent=4))
+
+ # Writing final job_status.json
+ with open(job_summary_log_file, "w") as outfile:
+ outfile.write(json.dumps(job_status_summary, indent=4))
+
+ logger.info(f"Load finished, completed in {total_elapsed_time.total_seconds()} seconds!")
start_workflow()
diff --git a/src/aws/osml/utils/__init__.py b/src/aws/osml/utils/__init__.py
index 198f723..15ea227 100644
--- a/src/aws/osml/utils/__init__.py
+++ b/src/aws/osml/utils/__init__.py
@@ -4,7 +4,7 @@
# __init__.py file.
# flake8: noqa
-from .clients import cw_client, ddb_client, kinesis_client, s3_client, sm_client, sqs_client
+from .clients import cw_client, ddb_client, elb_client, kinesis_client, s3_client, sm_client, sqs_client
from .integ_utils import (
build_image_processing_request,
count_features,
diff --git a/src/aws/osml/utils/clients.py b/src/aws/osml/utils/clients.py
index 62cda0b..ab1d9f8 100644
--- a/src/aws/osml/utils/clients.py
+++ b/src/aws/osml/utils/clients.py
@@ -1,9 +1,12 @@
# Copyright 2023 Amazon.com, Inc. or its affiliates.
+import logging
import boto3
from .osml_config import OSMLConfig
+logging.getLogger("botocore").setLevel(logging.CRITICAL)
+
def get_session_credentials() -> boto3.session.Session:
"""
@@ -72,3 +75,13 @@ def cw_client() -> boto3.client:
"""
session = get_session_credentials()
return session.client("cloudwatch", region_name=OSMLConfig.REGION)
+
+
+def elb_client() -> boto3.client:
+ """
+ Get resources from the default ElasticLoadBalancing session
+
+ :return: boto3.client = ELB client
+ """
+ session = get_session_credentials()
+ return session.client("elbv2", region_name=OSMLConfig.REGION)
diff --git a/src/aws/osml/utils/integ_utils.py b/src/aws/osml/utils/integ_utils.py
index b50168b..8a5bdc0 100644
--- a/src/aws/osml/utils/integ_utils.py
+++ b/src/aws/osml/utils/integ_utils.py
@@ -16,16 +16,17 @@
def run_model_on_image(
- sqs_client: boto3.resource, sm_endpoint: str, kinesis_client: Optional[boto3.resource]
+ sqs_client: boto3.resource, endpoint: str, endpoint_type: str, kinesis_client: Optional[boto3.resource]
) -> Tuple[str, str, Dict[str, Any], Optional[Dict[str, Any]]]:
"""
- The workflow to build an image request for a specific SM endpoint and then place it
+ The workflow to build an image request for a specific model endpoint and then place it
on the corresponding SQS queue for ModelRunner to pick up and process. Once the image
- has been completed return the associated image_id and image_request object for analysis.
+ has been completed, return the associated image_id and image_request object for analysis.
- :param sqs_client: boto3.resource = the sqs client fixture passed in
- :param sm_endpoint: str = the SM endpoint you wish to run your image against
- :param kinesis_client: Optional[boto3.resource] = the optional kinesis client fixture passed in
+ :param endpoint_type: The type of endpoint you want to build the image_request for SM/HTTP
+ :param sqs_client: SQS client fixture passed in
+ :param endpoint: endpoint you wish to run your image against
+ :param kinesis_client: Optional kinesis client fixture passed in
:return: Tuple[str, str, Dict[str, Any], Dict[str, Any]] = the generated image_id, job_id, image_request,
and kinesis shard.
@@ -33,7 +34,7 @@ def run_model_on_image(
image_url = OSMLConfig.TARGET_IMAGE # get image_url
# Build an image processing request from the test environment
- image_processing_request = build_image_processing_request(sm_endpoint, image_url)
+ image_processing_request = build_image_processing_request(endpoint, endpoint_type, image_url)
# Get the current Kinesis shard iterator to listen to for results since our start time
shard_iter = get_kinesis_shard(kinesis_client)
@@ -61,8 +62,8 @@ def queue_image_processing_job(sqs_client: boto3.resource, image_processing_requ
Place an image_request object onto the associated SQS queue for ModelRunner
pick up for processing.
- :param sqs_client: boto3.resource = the sqs client fixture passed in
- :param image_processing_request: Dict[str, Any] = the image request to place in the queue.
+ :param sqs_client: Sqs client fixture passed in
+ :param image_processing_request: Image request to place in the queue.
:return: None
"""
@@ -81,13 +82,11 @@ def queue_image_processing_job(sqs_client: boto3.resource, image_processing_requ
logging.error(f"Unable to send job request to SQS queue: {OSMLConfig.SQS_IMAGE_REQUEST_QUEUE}")
logging.error(f"{error}")
assert False
- return None
except ParamValidationError as error:
logging.error("Invalid SQS API request; validation failed")
logging.error(f"{error}")
assert False
- return None
def monitor_job_status(sqs_client: boto3.resource, image_id: str) -> None:
@@ -95,8 +94,8 @@ def monitor_job_status(sqs_client: boto3.resource, image_id: str) -> None:
Monitors the status of the image request on the corresponding SQS queue and returns
once the image request associated with the given image_id has completed.
- :param sqs_client: boto3.resource = the sqs client fixture passed in
- :param image_id: str = the image_id associated with the image request to monitor
+ :param sqs_client: The sqs client fixture passed in
+ :param image_id: Image_id associated with the image request to monitor
:return: None
"""
done = False
@@ -149,7 +148,6 @@ def get_kinesis_shard(kinesis_client: boto3.client) -> Dict[str, Any]:
"""
Get uniquely identified sequence of data records in a kinesis stream
- :param date_time: datetime.datetime: the time at which the test started running and read results starting from
:param kinesis_client: boto3.client = the kinesis client fixture passed in
:return: Dict[str, Any] = uniquely identified sequence of data records
@@ -171,7 +169,7 @@ def validate_features_match(
kinesis_client: boto3.client = None,
) -> None:
"""
- Compares known standard results ( features ) against the ones generated from the tests.
+ Compares known standard results (features) against the ones generated from the tests.
:param image_processing_request: Dict[str, Any] = the image processing request to validate against
:param job_id: str = the job-id associated with the request
@@ -191,7 +189,7 @@ def validate_features_match(
expected_features = geojson.load(geojson_file)["features"]
while not done and max_retries > 0:
- # This is really a List[Sink] but we don't have a common library to pull
+ # This is really a List[Sink], but we don't have a common library to pull
# this from so using "any"
outputs: List[Dict[str, Any]] = image_processing_request["outputs"]
# Reset found outputs on each retry so that we don't count a single output
@@ -218,12 +216,12 @@ def validate_s3_features_match(bucket: str, prefix: str, expected_features: List
"""
Checks a s3 output sync against known good feature results for a given test image.
- :param bucket: str = a folder inside s3
- :param prefix: str = string of characters at the beginning of the object key name
- :param expected_features: List[Features] = the list of features
- :param s3_client: boto3.client = the s3 client fixture passed in
+ :param bucket: Folder inside s3
+ :param prefix: String of characters at the beginning of the object key name
+ :param expected_features: The list of features
+ :param s3_client: S3 client fixture passed in
- :return: bool = s3 features matches the expected features
+ :return: True if S3 features match the expected features
"""
logging.info(f"Checking S3 at '{bucket}/{prefix}' for results.")
for object_key in get_matching_s3_keys(
@@ -255,13 +253,13 @@ def validate_kinesis_features_match(
"""
Checks a Kinesis output sync against know good feature results for a given test image
- :param job_id: str = the job-id associated with the request
- :param stream: str = kinesis stream name
- :param shard_iter: Dict[str, Any] = uniquely identified sequence of data records
- :param expected_features: List[Feature] = the list of features
- :param kinesis_client: boto3.client = the kinesis client fixture passed in
+ :param job_id: Job-id associated with the request
+ :param stream: Kinesis stream name
+ :param shard_iter: Uniquely identified record sequence
+ :param expected_features: List of features expected by test
+ :param kinesis_client: Kinesis client fixture passed in
- :return: bool = kinesis features matches the expected features
+ :return: Kinesis features matches the expected features
"""
logging.info(f"Checking Kinesis Stream '{stream}' for results.")
records = kinesis_client.get_records(ShardIterator=shard_iter, Limit=10000)["Records"]
@@ -286,10 +284,10 @@ def get_matching_s3_keys(s3_client: boto3.client, bucket: str, prefix: str = "",
"""
Generate the keys in an S3 bucket.
- :param s3_client: boto3.client = Boto3 S3 Client.
- :param bucket: str = Name of the S3 bucket.
- :param prefix: str = Only fetch keys that start with this prefix (optional).
- :param suffix: str = Only fetch keys that end with this suffix (optional).
+ :param s3_client: Boto3 S3 Client.
+ :param bucket: Name of the S3 bucket.
+ :param prefix: Only fetches keys that start with this prefix (optional).
+ :param suffix: Only fetches keys that end with this suffix (optional).
:return: None
"""
@@ -310,14 +308,14 @@ def get_matching_s3_keys(s3_client: boto3.client, bucket: str, prefix: str = "",
def feature_equal(expected: geojson.Feature, actual: geojson.Feature) -> bool:
"""
Determines if two features are roughly equivalent. We can't compare the full object because
- each feature include a hex token as a top level property. Instead, we compare every other part of
+ each feature includes a hex token as a top level property. Instead, we compare every other part of
the feature to make sure they match. The expected data located in ./src/data has a placeholder
value, $IMAGE_ID$, in place of an actual image id so that we can swap it in.
- :param expected: geojson.Feature = the feature we expect to match the result
- :param actual: geojson.Feature = the feature that was generated by the test
+ :param expected: Feature we expect to match the result
+ :param actual: Feature that was generated by the test
- :return: bool = whether the features match
+ :return: Whether the features match
"""
actual_pixel_coords = actual.get("properties", {}).get("detection", {}).get("pixelCoordinates")
expected_pixel_coords = expected.get("properties", {}).get("detection", {}).get("pixelCoordinates")
@@ -337,16 +335,16 @@ def feature_collections_equal(expected: List[geojson.Feature], actual: List[geoj
"""
Determines whether the supplied unordered feature lists are equal
- :param expected: List[geojson.Feature] = unordered list of expected features
- :param actual: List[geojson.Feature] = unordered list of detected features
+ :param expected: An unordered list of expected features
+ :param actual: An unordered list of detected features
- :return: bool = check to see if expected and actual are equal
+ :return: Check to see if expected and actual are equal
"""
if not len(expected) == len(actual):
logging.info(f"Expected {len(expected)} features but found {len(actual)}")
return False
# The order of features will depend on the order that regions/tiles were fed to the model.
- # While the order should roughly be the same there isn't a guarantee, we're just checking
+ # While the order should roughly be the same, there isn't a guarantee, we're just checking
# that all expected features were detected here as order within the collection isn't
# actually important.
expected.sort(key=lambda x: str(x.get("properties", {}).get("detection", {}).get("pixelCoordinates")))
@@ -360,17 +358,18 @@ def feature_collections_equal(expected: List[geojson.Feature], actual: List[geoj
return True
-def build_image_processing_request(sm_endpoint: str, image_url: str) -> Dict[str, Any]:
+def build_image_processing_request(endpoint: str, endpoint_type: str, image_url: str) -> Dict[str, Any]:
"""
Build an image_processing_request meant to be placed on the corresponding ModelRunner SQS queue.
- The image request is configured from the hydra provisioned hydra environment. In the future
- this could, and probably should, be extended to build more variant image requests for additional
+ The image request is configured from test environment.
+ In the future this could, and probably should, be extended to build more variant image requests for additional
testing configurations.
- :param image_url: the URL to the image you want to process
- :param sm_endpoint: str = the SM model endpoint that you want to build the image_request for
+ :param endpoint_type: The type of endpoint you want to build the image_request for SM/HTTP
+ :param image_url: URL to the image you want to process
+ :param endpoint: Model endpoint that you want to build the image_request for
- :return: Dict[str, Any] = the dictionary representation of the image request
+ :return: Dictionary representation of the image request
"""
if OSMLConfig.KINESIS_RESULTS_STREAM:
result_stream = OSMLConfig.KINESIS_RESULTS_STREAM
@@ -384,7 +383,7 @@ def build_image_processing_request(sm_endpoint: str, image_url: str) -> Dict[str
logging.info(f"Starting ModelRunner image job in {OSMLConfig.REGION}")
logging.info(f"Image: {image_url}")
- logging.info(f"Model: {sm_endpoint}")
+ logging.info(f"Model: {endpoint}, Type:{endpoint_type}")
job_id = token_hex(16)
job_name = f"test-{job_id}"
@@ -399,7 +398,7 @@ def build_image_processing_request(sm_endpoint: str, image_url: str) -> Dict[str
{"type": "S3", "bucket": result_bucket, "prefix": f"{job_name}/"},
{"type": "Kinesis", "stream": result_stream, "batchSize": 1000},
],
- "imageProcessor": {"name": sm_endpoint, "type": "SM_ENDPOINT"},
+ "imageProcessor": {"name": endpoint, "type": endpoint_type},
"imageProcessorTileSize": OSMLConfig.TILE_SIZE,
"imageProcessorTileOverlap": OSMLConfig.TILE_OVERLAP,
"imageProcessorTileFormat": OSMLConfig.TILE_FORMAT,
@@ -415,10 +414,10 @@ def count_features(image_id: str, ddb_client: boto3.resource) -> int:
Counts the features present in the given DDB table associated
with an image_id (hash_key)
- :param image_id: str = the image_id the features are associated with
- :param ddb_client: boto3.resource = the DDB client fixture
+ :param image_id: Image_id features are associated with
+ :param ddb_client: DDB client fixture
- :return: int = count of the features found in the table for the image id
+ :return: Count of the features found in the table for the image id
"""
ddb_table = ddb_client.Table(OSMLConfig.DDB_FEATURES_TABLE)
@@ -442,7 +441,7 @@ def validate_expected_feature_count(feature_count: int) -> None:
"""
Validate the number of features created match expected values
- :param feature_count: int = the numer of features found for an image
+ :param feature_count: Number of features found for an image
:return: None
"""
@@ -460,16 +459,21 @@ def validate_expected_feature_count(feature_count: int) -> None:
def get_expected_image_feature_count(image: str) -> int:
"""
Get the number of expected features that are created for each image,
- since these are random we want to just count the features in the table
+ since these are random.
+ We want to just count the features in the table,
not match them against any known results.
- :return: int = features we expect for a given image using the flood model
+ :return: Features we expect for a given image using the flood model
"""
# Set the expected
if "large" in image:
- return 99200
+ return 112200
elif "tile" in image:
return 2
+ elif "sicd-capella-chip" in image or "sicd-umbra-chip" in image:
+ return 100
+ elif "sicd-interferometric" in image:
+ return 15300
else:
raise Exception(f"Could not determine expected features for image: {image}")
@@ -478,9 +482,9 @@ def query_items(ddb_table: boto3.resource, hash_key: str, hash_value: str) -> Li
"""
Query the table for all items of a given hash_key and hash_value.
- :param ddb_table: boto3.resource = the DynamoDB table you wish to query
- :param hash_key: str = the hash key of the items you wish to scan
- :param hash_value: str = the hash key value of the items you wish to scan
+ :param ddb_table: DynamoDB table you wish to query
+ :param hash_key: The Hash key associated with the items you wish to scan
+ :param hash_value: The Hash key value of the items you wish to scan
:return: List[Dict[str, Any]] = the list of dictionary responses corresponding to the items returned
"""
@@ -512,10 +516,10 @@ def count_region_request_items(image_id: str, ddb_client: boto3.resource) -> int
Counts the region request present in the given DDB table associated
with an image_id (hash_key)
- :param image_id: str the image_id the region request are associated with
- :param ddb_client: boto3.resource = the DDB client fixture
+ :param image_id: Image_id region request is associated with
+ :param ddb_client: DDB client fixture
- :return: int = count of the region request found in the table for the image id
+ :return: Count of the region request found in the table for the image id
"""
ddb_region_request_table = ddb_client.Table(OSMLConfig.DDB_REGION_REQUEST_TABLE)
items = query_items(ddb_region_request_table, "image_id", image_id)
@@ -531,9 +535,9 @@ def count_region_request_items(image_id: str, ddb_client: boto3.resource) -> int
def validate_expected_region_request_items(region_request_count: int) -> None:
"""
- Validate the number of region request created match expected values
+ Validate the number of region requests created match-expected values
- :param region_request_count: int = the numer of region request found for an image
+ :param region_request_count: Number of region requests found for an image
:return: None
"""
@@ -550,19 +554,25 @@ def validate_expected_region_request_items(region_request_count: int) -> None:
def get_expected_region_request_count(image: str) -> int:
"""
- Get the expected number of region request were created for each image
+ Get the expected number of region requests was created for each image
- :return: int = region request we expect for a given image using the flood model
+ :return: Region request we expect for a given image using the flood model
"""
expected_count = 0
if "small" in image:
- expected_count = 4
+ expected_count = 1
elif "meta" in image:
expected_count = 1
elif "large" in image:
expected_count = 49
elif "tile" in image:
expected_count = 1
+ elif "sicd-capella-chip" in image or "sicd-umbra-chip" in image:
+ expected_count = 1
+ elif "sicd-interferometric" in image:
+ expected_count = 8
+ elif "wbid" in image:
+ expected_count = 1
# Check that we got a valid region request count
if expected_count != 0:
diff --git a/src/aws/osml/utils/osml_config.py b/src/aws/osml/utils/osml_config.py
index 9430aa2..e23d862 100644
--- a/src/aws/osml/utils/osml_config.py
+++ b/src/aws/osml/utils/osml_config.py
@@ -26,6 +26,11 @@ class OSMLConfig:
SM_FLOOD_MODEL: str = os.getenv("SM_FLOOD_MODEL", "flood")
SM_AIRCRAFT_MODEL: str = os.getenv("SM_AIRCRAFT_MODEL", "aircraft")
+ # HTTP model config
+ HTTP_CENTERPOINT_MODEL_URL: str = os.getenv("HTTP_CENTER_POINT_MODEL_URL", None)
+ HTTP_CENTERPOINT_MODEL_ELB_NAME: str = os.getenv("HTTP_CENTER_POINT_MODEL_ELB_NAME", "test-http-model-endpoint")
+ HTTP_CENTERPOINT_MODEL_INFERENCE_PATH = os.getenv("HTTP_CENTERPOINT_MODEL_INFERENCE_PATH", "/invocations")
+
# bucket name prefixes
S3_RESULTS_BUCKET: str = os.getenv("S3_RESULTS_BUCKET")
S3_RESULTS_BUCKET_PREFIX: str = os.getenv("S3_RESULTS_BUCKET_PREFIX", "test-results")
@@ -45,7 +50,7 @@ class OSMLConfig:
TILE_FORMAT: str = os.environ.get("TILE_FORMAT", "GTIFF")
TILE_COMPRESSION: str = os.environ.get("TILE_COMPRESSION", "NONE")
TILE_SIZE: int = int(os.environ.get("TILE_SIZE", "512"))
- TILE_OVERLAP: int = int(os.environ.get("TILE_OVERLAP", "32"))
+ TILE_OVERLAP: int = int(os.environ.get("TILE_OVERLAP", "128"))
FEATURE_SELECTION_OPTIONS: str = os.environ.get(
"FEATURE_SELECTION_OPTIONS",
'{"algorithm": "NMS", "iou_threshold": 0.75, "skip_box_threshold": 0.0001, "sigma": .1}',
@@ -62,5 +67,5 @@ class OSMLLoadTestConfig:
S3_LOAD_TEST_RESULT_BUCKET: str = os.getenv("S3_LOAD_TEST_RESULT_BUCKET")
# processing workflow
- PERIODIC_SLEEP_SECS: str = os.getenv("PERIODIC_SLEEP_SECS", "60") # in seconds
- PROCESSING_WINDOW_HRS: str = os.getenv("PROCESSING_WINDOW_HRS", "1") # in hours
+ PERIODIC_SLEEP_SECS: str = os.getenv("PERIODIC_SLEEP_SECS", "60")
+ PROCESSING_WINDOW_MIN: str = os.getenv("PROCESSING_WINDOW_MIN", "1")
diff --git a/src/data/aircraft.tile.jpeg.geojson b/src/data/aircraft.tile.jpeg.geojson
new file mode 100644
index 0000000..b7f9a88
--- /dev/null
+++ b/src/data/aircraft.tile.jpeg.geojson
@@ -0,0 +1 @@
+{"type": "FeatureCollection", "features": [{"type": "Feature", "id": "26a4813c-b770-459c-9daf-89f939e56264", "geometry": {"type": "Point", "coordinates": [0.0, 0.0]}, "properties": {"geom_imcoords": [[230.0, 315.0], [229.0, 316.0], [228.0, 316.0], [227.0, 316.0], [226.0, 316.0], [225.0, 316.0], [224.0, 316.0], [223.0, 316.0], [222.0, 317.0], [221.0, 317.0], [221.0, 318.0], [220.0, 319.0], [219.0, 320.0], [218.0, 321.0], [217.0, 322.0], [216.0, 323.0], [215.0, 324.0], [214.0, 325.0], [213.0, 326.0], [212.0, 327.0], [211.0, 328.0], [210.0, 328.0], [209.0, 329.0], [208.0, 329.0], [207.0, 330.0], [206.0, 330.0], [205.0, 330.0], [204.0, 331.0], [203.0, 331.0], [202.0, 332.0], [201.0, 332.0], [200.0, 333.0], [199.0, 333.0], [198.0, 334.0], [197.0, 334.0], [196.0, 335.0], [195.0, 335.0], [194.0, 336.0], [193.0, 336.0], [192.0, 337.0], [191.0, 337.0], [190.0, 338.0], [189.0, 338.0], [188.0, 338.0], [187.0, 339.0], [186.0, 339.0], [185.0, 339.0], [184.0, 339.0], [183.0, 339.0], [182.0, 339.0], [181.0, 340.0], [180.0, 340.0], [179.0, 340.0], [178.0, 340.0], [177.0, 340.0], [176.0, 340.0], [175.0, 340.0], [174.0, 341.0], [173.0, 341.0], [172.0, 341.0], [171.0, 341.0], [170.0, 341.0], [169.0, 341.0], [168.0, 342.0], [167.0, 342.0], [166.0, 342.0], [165.0, 342.0], [164.0, 343.0], [163.0, 343.0], [162.0, 343.0], [161.0, 343.0], [160.0, 344.0], [159.0, 344.0], [158.0, 344.0], [157.0, 345.0], [156.0, 345.0], [155.0, 346.0], [154.0, 347.0], [153.0, 348.0], [152.0, 349.0], [152.0, 350.0], [152.0, 351.0], [152.0, 352.0], [153.0, 353.0], [153.0, 354.0], [154.0, 355.0], [154.0, 356.0], [155.0, 356.0], [156.0, 357.0], [157.0, 358.0], [157.0, 359.0], [158.0, 360.0], [158.0, 361.0], [158.0, 362.0], [158.0, 363.0], [157.0, 364.0], [157.0, 365.0], [156.0, 366.0], [156.0, 367.0], [156.0, 368.0], [156.0, 369.0], [156.0, 370.0], [156.0, 371.0], [157.0, 372.0], [158.0, 373.0], [159.0, 374.0], [160.0, 375.0], [161.0, 376.0], [162.0, 376.0], [163.0, 376.0], [164.0, 377.0], [165.0, 377.0], [166.0, 378.0], [167.0, 378.0], [168.0, 379.0], [169.0, 380.0], [170.0, 381.0], [171.0, 382.0], [172.0, 382.0], [173.0, 383.0], [174.0, 384.0], [174.0, 385.0], [175.0, 386.0], [176.0, 387.0], [176.0, 388.0], [177.0, 389.0], [178.0, 390.0], [179.0, 391.0], [180.0, 392.0], [180.0, 393.0], [180.0, 394.0], [181.0, 395.0], [181.0, 396.0], [182.0, 397.0], [183.0, 398.0], [184.0, 399.0], [184.0, 400.0], [185.0, 401.0], [186.0, 402.0], [187.0, 403.0], [188.0, 404.0], [189.0, 405.0], [190.0, 405.0], [191.0, 406.0], [192.0, 407.0], [193.0, 407.0], [194.0, 408.0], [195.0, 409.0], [196.0, 410.0], [197.0, 411.0], [198.0, 412.0], [199.0, 413.0], [200.0, 414.0], [201.0, 415.0], [202.0, 416.0], [203.0, 416.0], [204.0, 417.0], [205.0, 417.0], [206.0, 418.0], [207.0, 418.0], [208.0, 418.0], [209.0, 418.0], [210.0, 419.0], [211.0, 419.0], [212.0, 419.0], [213.0, 419.0], [214.0, 419.0], [215.0, 420.0], [216.0, 420.0], [217.0, 420.0], [218.0, 420.0], [219.0, 421.0], [220.0, 421.0], [221.0, 422.0], [222.0, 422.0], [223.0, 423.0], [224.0, 423.0], [225.0, 423.0], [226.0, 424.0], [227.0, 424.0], [228.0, 425.0], [229.0, 425.0], [230.0, 426.0], [231.0, 427.0], [232.0, 427.0], [233.0, 428.0], [234.0, 428.0], [235.0, 429.0], [236.0, 429.0], [237.0, 429.0], [238.0, 429.0], [239.0, 430.0], [240.0, 430.0], [241.0, 430.0], [242.0, 430.0], [243.0, 429.0], [244.0, 429.0], [245.0, 429.0], [246.0, 428.0], [247.0, 427.0], [247.0, 426.0], [248.0, 425.0], [248.0, 424.0], [248.0, 423.0], [249.0, 422.0], [249.0, 421.0], [249.0, 420.0], [249.0, 419.0], [250.0, 418.0], [250.0, 417.0], [251.0, 416.0], [252.0, 415.0], [253.0, 415.0], [254.0, 414.0], [255.0, 414.0], [256.0, 413.0], [257.0, 413.0], [258.0, 413.0], [259.0, 412.0], [260.0, 412.0], [261.0, 412.0], [262.0, 411.0], [263.0, 411.0], [264.0, 410.0], [265.0, 409.0], [266.0, 409.0], [267.0, 408.0], [268.0, 407.0], [269.0, 407.0], [270.0, 406.0], [271.0, 405.0], [272.0, 405.0], [273.0, 404.0], [273.0, 403.0], [274.0, 402.0], [275.0, 401.0], [276.0, 401.0], [277.0, 401.0], [278.0, 400.0], [279.0, 400.0], [280.0, 400.0], [281.0, 399.0], [282.0, 399.0], [283.0, 399.0], [284.0, 399.0], [285.0, 399.0], [286.0, 399.0], [287.0, 399.0], [288.0, 399.0], [289.0, 399.0], [290.0, 400.0], [291.0, 400.0], [292.0, 400.0], [293.0, 400.0], [294.0, 400.0], [295.0, 400.0], [296.0, 400.0], [297.0, 400.0], [298.0, 400.0], [299.0, 399.0], [300.0, 399.0], [301.0, 398.0], [301.0, 397.0], [302.0, 396.0], [303.0, 395.0], [303.0, 394.0], [303.0, 393.0], [304.0, 392.0], [304.0, 391.0], [304.0, 390.0], [304.0, 389.0], [304.0, 388.0], [304.0, 387.0], [304.0, 386.0], [304.0, 385.0], [304.0, 384.0], [304.0, 383.0], [304.0, 382.0], [304.0, 381.0], [304.0, 380.0], [303.0, 379.0], [303.0, 378.0], [303.0, 377.0], [303.0, 376.0], [303.0, 375.0], [303.0, 374.0], [304.0, 373.0], [304.0, 372.0], [304.0, 371.0], [304.0, 370.0], [304.0, 369.0], [304.0, 368.0], [304.0, 367.0], [304.0, 366.0], [304.0, 365.0], [304.0, 364.0], [304.0, 363.0], [304.0, 362.0], [304.0, 361.0], [304.0, 360.0], [303.0, 359.0], [303.0, 358.0], [303.0, 357.0], [303.0, 356.0], [303.0, 355.0], [303.0, 354.0], [303.0, 353.0], [303.0, 352.0], [303.0, 351.0], [303.0, 350.0], [303.0, 349.0], [303.0, 348.0], [303.0, 347.0], [303.0, 346.0], [303.0, 345.0], [303.0, 344.0], [303.0, 343.0], [302.0, 342.0], [302.0, 341.0], [301.0, 340.0], [300.0, 339.0], [299.0, 338.0], [298.0, 337.0], [297.0, 336.0], [296.0, 335.0], [295.0, 334.0], [294.0, 333.0], [293.0, 332.0], [293.0, 331.0], [292.0, 330.0], [292.0, 329.0], [291.0, 328.0], [290.0, 327.0], [289.0, 326.0], [288.0, 325.0], [287.0, 324.0], [286.0, 324.0], [285.0, 324.0], [284.0, 324.0], [283.0, 324.0], [282.0, 323.0], [281.0, 323.0], [280.0, 323.0], [279.0, 323.0], [278.0, 323.0], [277.0, 323.0], [276.0, 323.0], [275.0, 323.0], [274.0, 323.0], [273.0, 322.0], [272.0, 322.0], [271.0, 322.0], [270.0, 322.0], [269.0, 321.0], [268.0, 321.0], [267.0, 320.0], [266.0, 320.0], [265.0, 319.0], [264.0, 318.0], [263.0, 317.0], [262.0, 317.0], [261.0, 316.0], [260.0, 316.0], [259.0, 316.0], [258.0, 316.0], [257.0, 316.0], [256.0, 315.0], [255.0, 315.0], [254.0, 315.0], [253.0, 315.0], [252.0, 315.0], [251.0, 315.0], [250.0, 315.0], [249.0, 315.0], [248.0, 315.0], [247.0, 315.0], [246.0, 315.0], [245.0, 315.0], [244.0, 315.0], [243.0, 315.0], [242.0, 315.0], [241.0, 315.0], [240.0, 315.0], [239.0, 315.0], [238.0, 315.0], [237.0, 315.0], [236.0, 315.0], [235.0, 315.0], [234.0, 315.0], [233.0, 315.0], [232.0, 315.0], [231.0, 315.0], [230.0, 315.0]], "detection": {"type": "Polygon", "pixelCoordinates": [[230.0, 315.0], [229.0, 316.0], [228.0, 316.0], [227.0, 316.0], [226.0, 316.0], [225.0, 316.0], [224.0, 316.0], [223.0, 316.0], [222.0, 317.0], [221.0, 317.0], [221.0, 318.0], [220.0, 319.0], [219.0, 320.0], [218.0, 321.0], [217.0, 322.0], [216.0, 323.0], [215.0, 324.0], [214.0, 325.0], [213.0, 326.0], [212.0, 327.0], [211.0, 328.0], [210.0, 328.0], [209.0, 329.0], [208.0, 329.0], [207.0, 330.0], [206.0, 330.0], [205.0, 330.0], [204.0, 331.0], [203.0, 331.0], [202.0, 332.0], [201.0, 332.0], [200.0, 333.0], [199.0, 333.0], [198.0, 334.0], [197.0, 334.0], [196.0, 335.0], [195.0, 335.0], [194.0, 336.0], [193.0, 336.0], [192.0, 337.0], [191.0, 337.0], [190.0, 338.0], [189.0, 338.0], [188.0, 338.0], [187.0, 339.0], [186.0, 339.0], [185.0, 339.0], [184.0, 339.0], [183.0, 339.0], [182.0, 339.0], [181.0, 340.0], [180.0, 340.0], [179.0, 340.0], [178.0, 340.0], [177.0, 340.0], [176.0, 340.0], [175.0, 340.0], [174.0, 341.0], [173.0, 341.0], [172.0, 341.0], [171.0, 341.0], [170.0, 341.0], [169.0, 341.0], [168.0, 342.0], [167.0, 342.0], [166.0, 342.0], [165.0, 342.0], [164.0, 343.0], [163.0, 343.0], [162.0, 343.0], [161.0, 343.0], [160.0, 344.0], [159.0, 344.0], [158.0, 344.0], [157.0, 345.0], [156.0, 345.0], [155.0, 346.0], [154.0, 347.0], [153.0, 348.0], [152.0, 349.0], [152.0, 350.0], [152.0, 351.0], [152.0, 352.0], [153.0, 353.0], [153.0, 354.0], [154.0, 355.0], [154.0, 356.0], [155.0, 356.0], [156.0, 357.0], [157.0, 358.0], [157.0, 359.0], [158.0, 360.0], [158.0, 361.0], [158.0, 362.0], [158.0, 363.0], [157.0, 364.0], [157.0, 365.0], [156.0, 366.0], [156.0, 367.0], [156.0, 368.0], [156.0, 369.0], [156.0, 370.0], [156.0, 371.0], [157.0, 372.0], [158.0, 373.0], [159.0, 374.0], [160.0, 375.0], [161.0, 376.0], [162.0, 376.0], [163.0, 376.0], [164.0, 377.0], [165.0, 377.0], [166.0, 378.0], [167.0, 378.0], [168.0, 379.0], [169.0, 380.0], [170.0, 381.0], [171.0, 382.0], [172.0, 382.0], [173.0, 383.0], [174.0, 384.0], [174.0, 385.0], [175.0, 386.0], [176.0, 387.0], [176.0, 388.0], [177.0, 389.0], [178.0, 390.0], [179.0, 391.0], [180.0, 392.0], [180.0, 393.0], [180.0, 394.0], [181.0, 395.0], [181.0, 396.0], [182.0, 397.0], [183.0, 398.0], [184.0, 399.0], [184.0, 400.0], [185.0, 401.0], [186.0, 402.0], [187.0, 403.0], [188.0, 404.0], [189.0, 405.0], [190.0, 405.0], [191.0, 406.0], [192.0, 407.0], [193.0, 407.0], [194.0, 408.0], [195.0, 409.0], [196.0, 410.0], [197.0, 411.0], [198.0, 412.0], [199.0, 413.0], [200.0, 414.0], [201.0, 415.0], [202.0, 416.0], [203.0, 416.0], [204.0, 417.0], [205.0, 417.0], [206.0, 418.0], [207.0, 418.0], [208.0, 418.0], [209.0, 418.0], [210.0, 419.0], [211.0, 419.0], [212.0, 419.0], [213.0, 419.0], [214.0, 419.0], [215.0, 420.0], [216.0, 420.0], [217.0, 420.0], [218.0, 420.0], [219.0, 421.0], [220.0, 421.0], [221.0, 422.0], [222.0, 422.0], [223.0, 423.0], [224.0, 423.0], [225.0, 423.0], [226.0, 424.0], [227.0, 424.0], [228.0, 425.0], [229.0, 425.0], [230.0, 426.0], [231.0, 427.0], [232.0, 427.0], [233.0, 428.0], [234.0, 428.0], [235.0, 429.0], [236.0, 429.0], [237.0, 429.0], [238.0, 429.0], [239.0, 430.0], [240.0, 430.0], [241.0, 430.0], [242.0, 430.0], [243.0, 429.0], [244.0, 429.0], [245.0, 429.0], [246.0, 428.0], [247.0, 427.0], [247.0, 426.0], [248.0, 425.0], [248.0, 424.0], [248.0, 423.0], [249.0, 422.0], [249.0, 421.0], [249.0, 420.0], [249.0, 419.0], [250.0, 418.0], [250.0, 417.0], [251.0, 416.0], [252.0, 415.0], [253.0, 415.0], [254.0, 414.0], [255.0, 414.0], [256.0, 413.0], [257.0, 413.0], [258.0, 413.0], [259.0, 412.0], [260.0, 412.0], [261.0, 412.0], [262.0, 411.0], [263.0, 411.0], [264.0, 410.0], [265.0, 409.0], [266.0, 409.0], [267.0, 408.0], [268.0, 407.0], [269.0, 407.0], [270.0, 406.0], [271.0, 405.0], [272.0, 405.0], [273.0, 404.0], [273.0, 403.0], [274.0, 402.0], [275.0, 401.0], [276.0, 401.0], [277.0, 401.0], [278.0, 400.0], [279.0, 400.0], [280.0, 400.0], [281.0, 399.0], [282.0, 399.0], [283.0, 399.0], [284.0, 399.0], [285.0, 399.0], [286.0, 399.0], [287.0, 399.0], [288.0, 399.0], [289.0, 399.0], [290.0, 400.0], [291.0, 400.0], [292.0, 400.0], [293.0, 400.0], [294.0, 400.0], [295.0, 400.0], [296.0, 400.0], [297.0, 400.0], [298.0, 400.0], [299.0, 399.0], [300.0, 399.0], [301.0, 398.0], [301.0, 397.0], [302.0, 396.0], [303.0, 395.0], [303.0, 394.0], [303.0, 393.0], [304.0, 392.0], [304.0, 391.0], [304.0, 390.0], [304.0, 389.0], [304.0, 388.0], [304.0, 387.0], [304.0, 386.0], [304.0, 385.0], [304.0, 384.0], [304.0, 383.0], [304.0, 382.0], [304.0, 381.0], [304.0, 380.0], [303.0, 379.0], [303.0, 378.0], [303.0, 377.0], [303.0, 376.0], [303.0, 375.0], [303.0, 374.0], [304.0, 373.0], [304.0, 372.0], [304.0, 371.0], [304.0, 370.0], [304.0, 369.0], [304.0, 368.0], [304.0, 367.0], [304.0, 366.0], [304.0, 365.0], [304.0, 364.0], [304.0, 363.0], [304.0, 362.0], [304.0, 361.0], [304.0, 360.0], [303.0, 359.0], [303.0, 358.0], [303.0, 357.0], [303.0, 356.0], [303.0, 355.0], [303.0, 354.0], [303.0, 353.0], [303.0, 352.0], [303.0, 351.0], [303.0, 350.0], [303.0, 349.0], [303.0, 348.0], [303.0, 347.0], [303.0, 346.0], [303.0, 345.0], [303.0, 344.0], [303.0, 343.0], [302.0, 342.0], [302.0, 341.0], [301.0, 340.0], [300.0, 339.0], [299.0, 338.0], [298.0, 337.0], [297.0, 336.0], [296.0, 335.0], [295.0, 334.0], [294.0, 333.0], [293.0, 332.0], [293.0, 331.0], [292.0, 330.0], [292.0, 329.0], [291.0, 328.0], [290.0, 327.0], [289.0, 326.0], [288.0, 325.0], [287.0, 324.0], [286.0, 324.0], [285.0, 324.0], [284.0, 324.0], [283.0, 324.0], [282.0, 323.0], [281.0, 323.0], [280.0, 323.0], [279.0, 323.0], [278.0, 323.0], [277.0, 323.0], [276.0, 323.0], [275.0, 323.0], [274.0, 323.0], [273.0, 322.0], [272.0, 322.0], [271.0, 322.0], [270.0, 322.0], [269.0, 321.0], [268.0, 321.0], [267.0, 320.0], [266.0, 320.0], [265.0, 319.0], [264.0, 318.0], [263.0, 317.0], [262.0, 317.0], [261.0, 316.0], [260.0, 316.0], [259.0, 316.0], [258.0, 316.0], [257.0, 316.0], [256.0, 315.0], [255.0, 315.0], [254.0, 315.0], [253.0, 315.0], [252.0, 315.0], [251.0, 315.0], [250.0, 315.0], [249.0, 315.0], [248.0, 315.0], [247.0, 315.0], [246.0, 315.0], [245.0, 315.0], [244.0, 315.0], [243.0, 315.0], [242.0, 315.0], [241.0, 315.0], [240.0, 315.0], [239.0, 315.0], [238.0, 315.0], [237.0, 315.0], [236.0, 315.0], [235.0, 315.0], [234.0, 315.0], [233.0, 315.0], [232.0, 315.0], [231.0, 315.0], [230.0, 315.0]], "ontology": [{"iri": "aircraft", "detectionScore": 0.9916208982467651}], "coordinates": []}, "inferenceMetadata": {"jobId": "29bf3582-5243-4e2c-94b9-969082ad81e7", "filePath": "s3://test-images-409719124294/tile.jpeg", "receiveTime": "2023-11-09T01:23:14.771275", "inferenceTime": "2023-11-09T01:23:15.479290+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}}}, {"type": "Feature", "id": "31765797-a4a5-444d-9fa0-a7c19cfb171e", "geometry": {"type": "Point", "coordinates": [0.0, 0.0]}, "properties": {"geom_imcoords": [[248.0, 166.0], [247.0, 167.0], [246.0, 167.0], [245.0, 167.0], [244.0, 167.0], [243.0, 167.0], [242.0, 167.0], [241.0, 168.0], [241.0, 169.0], [240.0, 170.0], [239.0, 171.0], [239.0, 172.0], [238.0, 173.0], [237.0, 174.0], [236.0, 175.0], [235.0, 175.0], [234.0, 176.0], [233.0, 176.0], [232.0, 177.0], [231.0, 177.0], [230.0, 178.0], [229.0, 178.0], [228.0, 178.0], [227.0, 179.0], [226.0, 179.0], [225.0, 180.0], [224.0, 180.0], [223.0, 181.0], [222.0, 181.0], [221.0, 182.0], [220.0, 182.0], [219.0, 183.0], [218.0, 184.0], [217.0, 184.0], [216.0, 185.0], [215.0, 185.0], [214.0, 186.0], [213.0, 186.0], [212.0, 187.0], [211.0, 187.0], [210.0, 187.0], [209.0, 187.0], [208.0, 188.0], [207.0, 188.0], [206.0, 188.0], [205.0, 188.0], [204.0, 188.0], [203.0, 188.0], [202.0, 188.0], [201.0, 189.0], [200.0, 189.0], [199.0, 189.0], [198.0, 189.0], [197.0, 189.0], [196.0, 189.0], [195.0, 189.0], [194.0, 189.0], [193.0, 189.0], [192.0, 189.0], [191.0, 190.0], [190.0, 190.0], [189.0, 190.0], [188.0, 190.0], [187.0, 190.0], [186.0, 191.0], [185.0, 191.0], [184.0, 191.0], [183.0, 191.0], [182.0, 192.0], [181.0, 192.0], [180.0, 193.0], [179.0, 194.0], [178.0, 194.0], [177.0, 195.0], [176.0, 195.0], [176.0, 196.0], [176.0, 197.0], [176.0, 198.0], [175.0, 199.0], [176.0, 200.0], [176.0, 201.0], [177.0, 202.0], [178.0, 203.0], [179.0, 204.0], [180.0, 205.0], [181.0, 206.0], [182.0, 206.0], [183.0, 207.0], [183.0, 208.0], [183.0, 209.0], [182.0, 210.0], [182.0, 211.0], [182.0, 212.0], [181.0, 213.0], [180.0, 214.0], [179.0, 215.0], [179.0, 216.0], [179.0, 217.0], [178.0, 218.0], [178.0, 219.0], [179.0, 220.0], [180.0, 221.0], [181.0, 222.0], [182.0, 223.0], [183.0, 224.0], [184.0, 225.0], [185.0, 225.0], [186.0, 225.0], [187.0, 226.0], [188.0, 226.0], [189.0, 227.0], [190.0, 227.0], [191.0, 228.0], [192.0, 229.0], [193.0, 230.0], [194.0, 231.0], [195.0, 232.0], [196.0, 233.0], [197.0, 234.0], [198.0, 235.0], [198.0, 236.0], [199.0, 236.0], [200.0, 237.0], [201.0, 238.0], [202.0, 239.0], [202.0, 240.0], [203.0, 241.0], [203.0, 242.0], [204.0, 243.0], [204.0, 244.0], [205.0, 245.0], [206.0, 246.0], [207.0, 247.0], [208.0, 248.0], [208.0, 249.0], [209.0, 250.0], [209.0, 251.0], [210.0, 252.0], [211.0, 252.0], [212.0, 253.0], [213.0, 254.0], [214.0, 255.0], [215.0, 256.0], [216.0, 256.0], [217.0, 257.0], [218.0, 258.0], [219.0, 259.0], [220.0, 259.0], [221.0, 260.0], [222.0, 261.0], [223.0, 261.0], [224.0, 262.0], [225.0, 262.0], [226.0, 263.0], [227.0, 263.0], [228.0, 264.0], [229.0, 264.0], [230.0, 265.0], [231.0, 265.0], [232.0, 265.0], [233.0, 265.0], [234.0, 265.0], [235.0, 266.0], [236.0, 266.0], [237.0, 266.0], [238.0, 266.0], [239.0, 266.0], [240.0, 267.0], [241.0, 267.0], [242.0, 267.0], [243.0, 268.0], [244.0, 268.0], [245.0, 269.0], [246.0, 269.0], [247.0, 270.0], [248.0, 270.0], [249.0, 271.0], [250.0, 271.0], [251.0, 272.0], [252.0, 273.0], [253.0, 273.0], [254.0, 274.0], [255.0, 274.0], [256.0, 275.0], [257.0, 275.0], [258.0, 276.0], [259.0, 276.0], [260.0, 276.0], [261.0, 276.0], [262.0, 276.0], [263.0, 276.0], [264.0, 277.0], [265.0, 277.0], [266.0, 277.0], [267.0, 276.0], [268.0, 276.0], [269.0, 276.0], [270.0, 276.0], [271.0, 276.0], [271.0, 275.0], [272.0, 274.0], [273.0, 273.0], [273.0, 272.0], [273.0, 271.0], [273.0, 270.0], [274.0, 269.0], [274.0, 268.0], [274.0, 267.0], [274.0, 266.0], [275.0, 265.0], [275.0, 264.0], [276.0, 263.0], [277.0, 262.0], [278.0, 262.0], [279.0, 262.0], [280.0, 261.0], [281.0, 261.0], [282.0, 261.0], [283.0, 260.0], [284.0, 260.0], [285.0, 260.0], [286.0, 259.0], [287.0, 259.0], [288.0, 259.0], [289.0, 258.0], [290.0, 257.0], [291.0, 257.0], [292.0, 256.0], [293.0, 255.0], [294.0, 254.0], [295.0, 254.0], [296.0, 253.0], [297.0, 252.0], [298.0, 251.0], [299.0, 250.0], [300.0, 249.0], [301.0, 248.0], [302.0, 248.0], [303.0, 248.0], [304.0, 247.0], [305.0, 247.0], [306.0, 247.0], [307.0, 247.0], [308.0, 247.0], [309.0, 247.0], [310.0, 247.0], [311.0, 247.0], [312.0, 247.0], [313.0, 247.0], [314.0, 247.0], [315.0, 247.0], [316.0, 248.0], [317.0, 248.0], [318.0, 248.0], [319.0, 248.0], [320.0, 248.0], [321.0, 248.0], [322.0, 247.0], [323.0, 247.0], [324.0, 246.0], [325.0, 246.0], [326.0, 245.0], [326.0, 244.0], [327.0, 243.0], [327.0, 242.0], [327.0, 241.0], [327.0, 240.0], [327.0, 239.0], [328.0, 238.0], [328.0, 237.0], [328.0, 236.0], [328.0, 235.0], [328.0, 234.0], [327.0, 233.0], [327.0, 232.0], [327.0, 231.0], [327.0, 230.0], [327.0, 229.0], [327.0, 228.0], [327.0, 227.0], [326.0, 226.0], [326.0, 225.0], [326.0, 224.0], [326.0, 223.0], [325.0, 222.0], [325.0, 221.0], [325.0, 220.0], [325.0, 219.0], [325.0, 218.0], [325.0, 217.0], [325.0, 216.0], [324.0, 215.0], [324.0, 214.0], [325.0, 213.0], [325.0, 212.0], [325.0, 211.0], [325.0, 210.0], [324.0, 209.0], [324.0, 208.0], [324.0, 207.0], [324.0, 206.0], [324.0, 205.0], [324.0, 204.0], [324.0, 203.0], [324.0, 202.0], [324.0, 201.0], [324.0, 200.0], [324.0, 199.0], [324.0, 198.0], [324.0, 197.0], [324.0, 196.0], [325.0, 195.0], [324.0, 194.0], [324.0, 193.0], [324.0, 192.0], [324.0, 191.0], [324.0, 190.0], [324.0, 189.0], [323.0, 188.0], [322.0, 187.0], [321.0, 186.0], [320.0, 185.0], [319.0, 184.0], [318.0, 183.0], [317.0, 183.0], [316.0, 182.0], [315.0, 182.0], [314.0, 181.0], [313.0, 180.0], [312.0, 179.0], [311.0, 178.0], [311.0, 177.0], [310.0, 176.0], [309.0, 175.0], [308.0, 175.0], [307.0, 174.0], [306.0, 174.0], [305.0, 175.0], [304.0, 175.0], [303.0, 175.0], [302.0, 176.0], [301.0, 176.0], [300.0, 177.0], [299.0, 177.0], [298.0, 177.0], [297.0, 178.0], [296.0, 178.0], [295.0, 178.0], [294.0, 178.0], [293.0, 179.0], [292.0, 179.0], [291.0, 179.0], [290.0, 180.0], [289.0, 180.0], [288.0, 179.0], [288.0, 178.0], [288.0, 177.0], [288.0, 176.0], [288.0, 175.0], [287.0, 174.0], [286.0, 173.0], [285.0, 172.0], [284.0, 171.0], [283.0, 170.0], [282.0, 169.0], [281.0, 168.0], [280.0, 167.0], [279.0, 167.0], [278.0, 167.0], [277.0, 167.0], [276.0, 167.0], [275.0, 167.0], [274.0, 167.0], [273.0, 167.0], [272.0, 167.0], [271.0, 167.0], [270.0, 167.0], [269.0, 167.0], [268.0, 167.0], [267.0, 167.0], [266.0, 166.0], [265.0, 166.0], [264.0, 166.0], [263.0, 166.0], [262.0, 166.0], [261.0, 166.0], [260.0, 166.0], [259.0, 166.0], [258.0, 166.0], [257.0, 166.0], [256.0, 166.0], [255.0, 166.0], [254.0, 166.0], [253.0, 166.0], [252.0, 166.0], [251.0, 166.0], [250.0, 166.0], [249.0, 166.0], [248.0, 166.0]], "detection": {"type": "Polygon", "pixelCoordinates": [[248.0, 166.0], [247.0, 167.0], [246.0, 167.0], [245.0, 167.0], [244.0, 167.0], [243.0, 167.0], [242.0, 167.0], [241.0, 168.0], [241.0, 169.0], [240.0, 170.0], [239.0, 171.0], [239.0, 172.0], [238.0, 173.0], [237.0, 174.0], [236.0, 175.0], [235.0, 175.0], [234.0, 176.0], [233.0, 176.0], [232.0, 177.0], [231.0, 177.0], [230.0, 178.0], [229.0, 178.0], [228.0, 178.0], [227.0, 179.0], [226.0, 179.0], [225.0, 180.0], [224.0, 180.0], [223.0, 181.0], [222.0, 181.0], [221.0, 182.0], [220.0, 182.0], [219.0, 183.0], [218.0, 184.0], [217.0, 184.0], [216.0, 185.0], [215.0, 185.0], [214.0, 186.0], [213.0, 186.0], [212.0, 187.0], [211.0, 187.0], [210.0, 187.0], [209.0, 187.0], [208.0, 188.0], [207.0, 188.0], [206.0, 188.0], [205.0, 188.0], [204.0, 188.0], [203.0, 188.0], [202.0, 188.0], [201.0, 189.0], [200.0, 189.0], [199.0, 189.0], [198.0, 189.0], [197.0, 189.0], [196.0, 189.0], [195.0, 189.0], [194.0, 189.0], [193.0, 189.0], [192.0, 189.0], [191.0, 190.0], [190.0, 190.0], [189.0, 190.0], [188.0, 190.0], [187.0, 190.0], [186.0, 191.0], [185.0, 191.0], [184.0, 191.0], [183.0, 191.0], [182.0, 192.0], [181.0, 192.0], [180.0, 193.0], [179.0, 194.0], [178.0, 194.0], [177.0, 195.0], [176.0, 195.0], [176.0, 196.0], [176.0, 197.0], [176.0, 198.0], [175.0, 199.0], [176.0, 200.0], [176.0, 201.0], [177.0, 202.0], [178.0, 203.0], [179.0, 204.0], [180.0, 205.0], [181.0, 206.0], [182.0, 206.0], [183.0, 207.0], [183.0, 208.0], [183.0, 209.0], [182.0, 210.0], [182.0, 211.0], [182.0, 212.0], [181.0, 213.0], [180.0, 214.0], [179.0, 215.0], [179.0, 216.0], [179.0, 217.0], [178.0, 218.0], [178.0, 219.0], [179.0, 220.0], [180.0, 221.0], [181.0, 222.0], [182.0, 223.0], [183.0, 224.0], [184.0, 225.0], [185.0, 225.0], [186.0, 225.0], [187.0, 226.0], [188.0, 226.0], [189.0, 227.0], [190.0, 227.0], [191.0, 228.0], [192.0, 229.0], [193.0, 230.0], [194.0, 231.0], [195.0, 232.0], [196.0, 233.0], [197.0, 234.0], [198.0, 235.0], [198.0, 236.0], [199.0, 236.0], [200.0, 237.0], [201.0, 238.0], [202.0, 239.0], [202.0, 240.0], [203.0, 241.0], [203.0, 242.0], [204.0, 243.0], [204.0, 244.0], [205.0, 245.0], [206.0, 246.0], [207.0, 247.0], [208.0, 248.0], [208.0, 249.0], [209.0, 250.0], [209.0, 251.0], [210.0, 252.0], [211.0, 252.0], [212.0, 253.0], [213.0, 254.0], [214.0, 255.0], [215.0, 256.0], [216.0, 256.0], [217.0, 257.0], [218.0, 258.0], [219.0, 259.0], [220.0, 259.0], [221.0, 260.0], [222.0, 261.0], [223.0, 261.0], [224.0, 262.0], [225.0, 262.0], [226.0, 263.0], [227.0, 263.0], [228.0, 264.0], [229.0, 264.0], [230.0, 265.0], [231.0, 265.0], [232.0, 265.0], [233.0, 265.0], [234.0, 265.0], [235.0, 266.0], [236.0, 266.0], [237.0, 266.0], [238.0, 266.0], [239.0, 266.0], [240.0, 267.0], [241.0, 267.0], [242.0, 267.0], [243.0, 268.0], [244.0, 268.0], [245.0, 269.0], [246.0, 269.0], [247.0, 270.0], [248.0, 270.0], [249.0, 271.0], [250.0, 271.0], [251.0, 272.0], [252.0, 273.0], [253.0, 273.0], [254.0, 274.0], [255.0, 274.0], [256.0, 275.0], [257.0, 275.0], [258.0, 276.0], [259.0, 276.0], [260.0, 276.0], [261.0, 276.0], [262.0, 276.0], [263.0, 276.0], [264.0, 277.0], [265.0, 277.0], [266.0, 277.0], [267.0, 276.0], [268.0, 276.0], [269.0, 276.0], [270.0, 276.0], [271.0, 276.0], [271.0, 275.0], [272.0, 274.0], [273.0, 273.0], [273.0, 272.0], [273.0, 271.0], [273.0, 270.0], [274.0, 269.0], [274.0, 268.0], [274.0, 267.0], [274.0, 266.0], [275.0, 265.0], [275.0, 264.0], [276.0, 263.0], [277.0, 262.0], [278.0, 262.0], [279.0, 262.0], [280.0, 261.0], [281.0, 261.0], [282.0, 261.0], [283.0, 260.0], [284.0, 260.0], [285.0, 260.0], [286.0, 259.0], [287.0, 259.0], [288.0, 259.0], [289.0, 258.0], [290.0, 257.0], [291.0, 257.0], [292.0, 256.0], [293.0, 255.0], [294.0, 254.0], [295.0, 254.0], [296.0, 253.0], [297.0, 252.0], [298.0, 251.0], [299.0, 250.0], [300.0, 249.0], [301.0, 248.0], [302.0, 248.0], [303.0, 248.0], [304.0, 247.0], [305.0, 247.0], [306.0, 247.0], [307.0, 247.0], [308.0, 247.0], [309.0, 247.0], [310.0, 247.0], [311.0, 247.0], [312.0, 247.0], [313.0, 247.0], [314.0, 247.0], [315.0, 247.0], [316.0, 248.0], [317.0, 248.0], [318.0, 248.0], [319.0, 248.0], [320.0, 248.0], [321.0, 248.0], [322.0, 247.0], [323.0, 247.0], [324.0, 246.0], [325.0, 246.0], [326.0, 245.0], [326.0, 244.0], [327.0, 243.0], [327.0, 242.0], [327.0, 241.0], [327.0, 240.0], [327.0, 239.0], [328.0, 238.0], [328.0, 237.0], [328.0, 236.0], [328.0, 235.0], [328.0, 234.0], [327.0, 233.0], [327.0, 232.0], [327.0, 231.0], [327.0, 230.0], [327.0, 229.0], [327.0, 228.0], [327.0, 227.0], [326.0, 226.0], [326.0, 225.0], [326.0, 224.0], [326.0, 223.0], [325.0, 222.0], [325.0, 221.0], [325.0, 220.0], [325.0, 219.0], [325.0, 218.0], [325.0, 217.0], [325.0, 216.0], [324.0, 215.0], [324.0, 214.0], [325.0, 213.0], [325.0, 212.0], [325.0, 211.0], [325.0, 210.0], [324.0, 209.0], [324.0, 208.0], [324.0, 207.0], [324.0, 206.0], [324.0, 205.0], [324.0, 204.0], [324.0, 203.0], [324.0, 202.0], [324.0, 201.0], [324.0, 200.0], [324.0, 199.0], [324.0, 198.0], [324.0, 197.0], [324.0, 196.0], [325.0, 195.0], [324.0, 194.0], [324.0, 193.0], [324.0, 192.0], [324.0, 191.0], [324.0, 190.0], [324.0, 189.0], [323.0, 188.0], [322.0, 187.0], [321.0, 186.0], [320.0, 185.0], [319.0, 184.0], [318.0, 183.0], [317.0, 183.0], [316.0, 182.0], [315.0, 182.0], [314.0, 181.0], [313.0, 180.0], [312.0, 179.0], [311.0, 178.0], [311.0, 177.0], [310.0, 176.0], [309.0, 175.0], [308.0, 175.0], [307.0, 174.0], [306.0, 174.0], [305.0, 175.0], [304.0, 175.0], [303.0, 175.0], [302.0, 176.0], [301.0, 176.0], [300.0, 177.0], [299.0, 177.0], [298.0, 177.0], [297.0, 178.0], [296.0, 178.0], [295.0, 178.0], [294.0, 178.0], [293.0, 179.0], [292.0, 179.0], [291.0, 179.0], [290.0, 180.0], [289.0, 180.0], [288.0, 179.0], [288.0, 178.0], [288.0, 177.0], [288.0, 176.0], [288.0, 175.0], [287.0, 174.0], [286.0, 173.0], [285.0, 172.0], [284.0, 171.0], [283.0, 170.0], [282.0, 169.0], [281.0, 168.0], [280.0, 167.0], [279.0, 167.0], [278.0, 167.0], [277.0, 167.0], [276.0, 167.0], [275.0, 167.0], [274.0, 167.0], [273.0, 167.0], [272.0, 167.0], [271.0, 167.0], [270.0, 167.0], [269.0, 167.0], [268.0, 167.0], [267.0, 167.0], [266.0, 166.0], [265.0, 166.0], [264.0, 166.0], [263.0, 166.0], [262.0, 166.0], [261.0, 166.0], [260.0, 166.0], [259.0, 166.0], [258.0, 166.0], [257.0, 166.0], [256.0, 166.0], [255.0, 166.0], [254.0, 166.0], [253.0, 166.0], [252.0, 166.0], [251.0, 166.0], [250.0, 166.0], [249.0, 166.0], [248.0, 166.0]], "ontology": [{"iri": "aircraft", "detectionScore": 0.9913279414176941}], "coordinates": []}, "inferenceMetadata": {"jobId": "29bf3582-5243-4e2c-94b9-969082ad81e7", "filePath": "s3://test-images-409719124294/tile.jpeg", "receiveTime": "2023-11-09T01:23:14.771275", "inferenceTime": "2023-11-09T01:23:15.479651+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}}}]}
diff --git a/src/data/aircraft.tile.ntf.geojson b/src/data/aircraft.tile.ntf.geojson
new file mode 100644
index 0000000..1dc12d5
--- /dev/null
+++ b/src/data/aircraft.tile.ntf.geojson
@@ -0,0 +1,10265 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "bbox": [
+ -87.8881169819526,
+ 42.94165796912372,
+ -87.8876212220048,
+ 42.94202326592737
+ ],
+ "id": "397f2022-2b6e-4a7e-91a4-e23b4b645791",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.887876,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887879,
+ 42.94202,
+ 0
+ ],
+ [
+ -87.887882,
+ 42.94202,
+ 0
+ ],
+ [
+ -87.887885,
+ 42.94202,
+ 0
+ ],
+ [
+ -87.887889,
+ 42.94202,
+ 0
+ ],
+ [
+ -87.887892,
+ 42.94202,
+ 0
+ ],
+ [
+ -87.887892,
+ 42.942017,
+ 0
+ ],
+ [
+ -87.887895,
+ 42.942013,
+ 0
+ ],
+ [
+ -87.887898,
+ 42.94201,
+ 0
+ ],
+ [
+ -87.887902,
+ 42.942007,
+ 0
+ ],
+ [
+ -87.887905,
+ 42.942004,
+ 0
+ ],
+ [
+ -87.887908,
+ 42.942,
+ 0
+ ],
+ [
+ -87.887912,
+ 42.941997,
+ 0
+ ],
+ [
+ -87.887915,
+ 42.941994,
+ 0
+ ],
+ [
+ -87.887918,
+ 42.941991,
+ 0
+ ],
+ [
+ -87.887921,
+ 42.941987,
+ 0
+ ],
+ [
+ -87.887925,
+ 42.941987,
+ 0
+ ],
+ [
+ -87.887928,
+ 42.941987,
+ 0
+ ],
+ [
+ -87.887931,
+ 42.941984,
+ 0
+ ],
+ [
+ -87.887934,
+ 42.941984,
+ 0
+ ],
+ [
+ -87.887938,
+ 42.941981,
+ 0
+ ],
+ [
+ -87.887941,
+ 42.941981,
+ 0
+ ],
+ [
+ -87.887944,
+ 42.941978,
+ 0
+ ],
+ [
+ -87.887947,
+ 42.941978,
+ 0
+ ],
+ [
+ -87.887951,
+ 42.941974,
+ 0
+ ],
+ [
+ -87.887954,
+ 42.941974,
+ 0
+ ],
+ [
+ -87.887957,
+ 42.941971,
+ 0
+ ],
+ [
+ -87.88796,
+ 42.941971,
+ 0
+ ],
+ [
+ -87.887964,
+ 42.941968,
+ 0
+ ],
+ [
+ -87.887967,
+ 42.941968,
+ 0
+ ],
+ [
+ -87.88797,
+ 42.941965,
+ 0
+ ],
+ [
+ -87.887973,
+ 42.941965,
+ 0
+ ],
+ [
+ -87.887977,
+ 42.941961,
+ 0
+ ],
+ [
+ -87.88798,
+ 42.941961,
+ 0
+ ],
+ [
+ -87.887983,
+ 42.941958,
+ 0
+ ],
+ [
+ -87.887987,
+ 42.941958,
+ 0
+ ],
+ [
+ -87.88799,
+ 42.941955,
+ 0
+ ],
+ [
+ -87.887993,
+ 42.941955,
+ 0
+ ],
+ [
+ -87.887996,
+ 42.941952,
+ 0
+ ],
+ [
+ -87.888,
+ 42.941952,
+ 0
+ ],
+ [
+ -87.888003,
+ 42.941952,
+ 0
+ ],
+ [
+ -87.888006,
+ 42.941952,
+ 0
+ ],
+ [
+ -87.888009,
+ 42.941952,
+ 0
+ ],
+ [
+ -87.888013,
+ 42.941952,
+ 0
+ ],
+ [
+ -87.888016,
+ 42.941948,
+ 0
+ ],
+ [
+ -87.888019,
+ 42.941948,
+ 0
+ ],
+ [
+ -87.888022,
+ 42.941948,
+ 0
+ ],
+ [
+ -87.888026,
+ 42.941948,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.941948,
+ 0
+ ],
+ [
+ -87.888032,
+ 42.941948,
+ 0
+ ],
+ [
+ -87.888035,
+ 42.941945,
+ 0
+ ],
+ [
+ -87.888039,
+ 42.941945,
+ 0
+ ],
+ [
+ -87.888042,
+ 42.941945,
+ 0
+ ],
+ [
+ -87.888045,
+ 42.941945,
+ 0
+ ],
+ [
+ -87.888048,
+ 42.941945,
+ 0
+ ],
+ [
+ -87.888052,
+ 42.941945,
+ 0
+ ],
+ [
+ -87.888055,
+ 42.941945,
+ 0
+ ],
+ [
+ -87.888058,
+ 42.941945,
+ 0
+ ],
+ [
+ -87.888062,
+ 42.941945,
+ 0
+ ],
+ [
+ -87.888065,
+ 42.941942,
+ 0
+ ],
+ [
+ -87.888068,
+ 42.941942,
+ 0
+ ],
+ [
+ -87.888071,
+ 42.941942,
+ 0
+ ],
+ [
+ -87.888075,
+ 42.941942,
+ 0
+ ],
+ [
+ -87.888078,
+ 42.941938,
+ 0
+ ],
+ [
+ -87.888081,
+ 42.941938,
+ 0
+ ],
+ [
+ -87.888084,
+ 42.941938,
+ 0
+ ],
+ [
+ -87.888088,
+ 42.941935,
+ 0
+ ],
+ [
+ -87.888091,
+ 42.941935,
+ 0
+ ],
+ [
+ -87.888094,
+ 42.941935,
+ 0
+ ],
+ [
+ -87.888097,
+ 42.941932,
+ 0
+ ],
+ [
+ -87.888101,
+ 42.941932,
+ 0
+ ],
+ [
+ -87.888104,
+ 42.941929,
+ 0
+ ],
+ [
+ -87.888107,
+ 42.941929,
+ 0
+ ],
+ [
+ -87.88811,
+ 42.941925,
+ 0
+ ],
+ [
+ -87.888114,
+ 42.941922,
+ 0
+ ],
+ [
+ -87.888114,
+ 42.941919,
+ 0
+ ],
+ [
+ -87.888117,
+ 42.941916,
+ 0
+ ],
+ [
+ -87.888117,
+ 42.941912,
+ 0
+ ],
+ [
+ -87.888117,
+ 42.941909,
+ 0
+ ],
+ [
+ -87.888114,
+ 42.941906,
+ 0
+ ],
+ [
+ -87.888114,
+ 42.941903,
+ 0
+ ],
+ [
+ -87.888114,
+ 42.941899,
+ 0
+ ],
+ [
+ -87.88811,
+ 42.941896,
+ 0
+ ],
+ [
+ -87.888107,
+ 42.941893,
+ 0
+ ],
+ [
+ -87.888104,
+ 42.94189,
+ 0
+ ],
+ [
+ -87.888101,
+ 42.94189,
+ 0
+ ],
+ [
+ -87.888097,
+ 42.941886,
+ 0
+ ],
+ [
+ -87.888097,
+ 42.941883,
+ 0
+ ],
+ [
+ -87.888097,
+ 42.94188,
+ 0
+ ],
+ [
+ -87.888097,
+ 42.941876,
+ 0
+ ],
+ [
+ -87.888097,
+ 42.941873,
+ 0
+ ],
+ [
+ -87.888101,
+ 42.94187,
+ 0
+ ],
+ [
+ -87.888104,
+ 42.941867,
+ 0
+ ],
+ [
+ -87.888104,
+ 42.941863,
+ 0
+ ],
+ [
+ -87.888107,
+ 42.94186,
+ 0
+ ],
+ [
+ -87.888107,
+ 42.941857,
+ 0
+ ],
+ [
+ -87.888107,
+ 42.941854,
+ 0
+ ],
+ [
+ -87.888107,
+ 42.94185,
+ 0
+ ],
+ [
+ -87.888107,
+ 42.941847,
+ 0
+ ],
+ [
+ -87.888107,
+ 42.941844,
+ 0
+ ],
+ [
+ -87.888104,
+ 42.941844,
+ 0
+ ],
+ [
+ -87.888101,
+ 42.941841,
+ 0
+ ],
+ [
+ -87.888097,
+ 42.941837,
+ 0
+ ],
+ [
+ -87.888094,
+ 42.941834,
+ 0
+ ],
+ [
+ -87.888091,
+ 42.941831,
+ 0
+ ],
+ [
+ -87.888088,
+ 42.941831,
+ 0
+ ],
+ [
+ -87.888084,
+ 42.941828,
+ 0
+ ],
+ [
+ -87.888081,
+ 42.941828,
+ 0
+ ],
+ [
+ -87.888078,
+ 42.941828,
+ 0
+ ],
+ [
+ -87.888075,
+ 42.941824,
+ 0
+ ],
+ [
+ -87.888071,
+ 42.941824,
+ 0
+ ],
+ [
+ -87.888068,
+ 42.941821,
+ 0
+ ],
+ [
+ -87.888065,
+ 42.941821,
+ 0
+ ],
+ [
+ -87.888062,
+ 42.941818,
+ 0
+ ],
+ [
+ -87.888062,
+ 42.941815,
+ 0
+ ],
+ [
+ -87.888058,
+ 42.941811,
+ 0
+ ],
+ [
+ -87.888055,
+ 42.941808,
+ 0
+ ],
+ [
+ -87.888052,
+ 42.941805,
+ 0
+ ],
+ [
+ -87.888048,
+ 42.941801,
+ 0
+ ],
+ [
+ -87.888045,
+ 42.941798,
+ 0
+ ],
+ [
+ -87.888045,
+ 42.941795,
+ 0
+ ],
+ [
+ -87.888042,
+ 42.941792,
+ 0
+ ],
+ [
+ -87.888039,
+ 42.941788,
+ 0
+ ],
+ [
+ -87.888035,
+ 42.941785,
+ 0
+ ],
+ [
+ -87.888032,
+ 42.941782,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.941779,
+ 0
+ ],
+ [
+ -87.888026,
+ 42.941775,
+ 0
+ ],
+ [
+ -87.888026,
+ 42.941772,
+ 0
+ ],
+ [
+ -87.888022,
+ 42.941769,
+ 0
+ ],
+ [
+ -87.888022,
+ 42.941766,
+ 0
+ ],
+ [
+ -87.888019,
+ 42.941762,
+ 0
+ ],
+ [
+ -87.888016,
+ 42.941759,
+ 0
+ ],
+ [
+ -87.888013,
+ 42.941756,
+ 0
+ ],
+ [
+ -87.888009,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.888006,
+ 42.941749,
+ 0
+ ],
+ [
+ -87.888003,
+ 42.941746,
+ 0
+ ],
+ [
+ -87.888,
+ 42.941746,
+ 0
+ ],
+ [
+ -87.887996,
+ 42.941743,
+ 0
+ ],
+ [
+ -87.887993,
+ 42.94174,
+ 0
+ ],
+ [
+ -87.88799,
+ 42.941736,
+ 0
+ ],
+ [
+ -87.887987,
+ 42.941736,
+ 0
+ ],
+ [
+ -87.887983,
+ 42.941733,
+ 0
+ ],
+ [
+ -87.88798,
+ 42.941733,
+ 0
+ ],
+ [
+ -87.887977,
+ 42.94173,
+ 0
+ ],
+ [
+ -87.887973,
+ 42.941726,
+ 0
+ ],
+ [
+ -87.88797,
+ 42.941723,
+ 0
+ ],
+ [
+ -87.887967,
+ 42.94172,
+ 0
+ ],
+ [
+ -87.887964,
+ 42.941717,
+ 0
+ ],
+ [
+ -87.88796,
+ 42.941713,
+ 0
+ ],
+ [
+ -87.887957,
+ 42.94171,
+ 0
+ ],
+ [
+ -87.887954,
+ 42.941707,
+ 0
+ ],
+ [
+ -87.887951,
+ 42.941704,
+ 0
+ ],
+ [
+ -87.887947,
+ 42.941704,
+ 0
+ ],
+ [
+ -87.887944,
+ 42.9417,
+ 0
+ ],
+ [
+ -87.887941,
+ 42.9417,
+ 0
+ ],
+ [
+ -87.887938,
+ 42.941697,
+ 0
+ ],
+ [
+ -87.887934,
+ 42.941697,
+ 0
+ ],
+ [
+ -87.887931,
+ 42.941697,
+ 0
+ ],
+ [
+ -87.887928,
+ 42.941697,
+ 0
+ ],
+ [
+ -87.887925,
+ 42.941694,
+ 0
+ ],
+ [
+ -87.887921,
+ 42.941694,
+ 0
+ ],
+ [
+ -87.887918,
+ 42.941694,
+ 0
+ ],
+ [
+ -87.887915,
+ 42.941694,
+ 0
+ ],
+ [
+ -87.887912,
+ 42.941694,
+ 0
+ ],
+ [
+ -87.887908,
+ 42.941691,
+ 0
+ ],
+ [
+ -87.887905,
+ 42.941691,
+ 0
+ ],
+ [
+ -87.887902,
+ 42.941691,
+ 0
+ ],
+ [
+ -87.887898,
+ 42.941691,
+ 0
+ ],
+ [
+ -87.887895,
+ 42.941687,
+ 0
+ ],
+ [
+ -87.887892,
+ 42.941687,
+ 0
+ ],
+ [
+ -87.887889,
+ 42.941684,
+ 0
+ ],
+ [
+ -87.887885,
+ 42.941684,
+ 0
+ ],
+ [
+ -87.887882,
+ 42.941681,
+ 0
+ ],
+ [
+ -87.887879,
+ 42.941681,
+ 0
+ ],
+ [
+ -87.887876,
+ 42.941678,
+ 0
+ ],
+ [
+ -87.887872,
+ 42.941678,
+ 0
+ ],
+ [
+ -87.887869,
+ 42.941674,
+ 0
+ ],
+ [
+ -87.887866,
+ 42.941674,
+ 0
+ ],
+ [
+ -87.887863,
+ 42.941671,
+ 0
+ ],
+ [
+ -87.887859,
+ 42.941668,
+ 0
+ ],
+ [
+ -87.887856,
+ 42.941668,
+ 0
+ ],
+ [
+ -87.887853,
+ 42.941664,
+ 0
+ ],
+ [
+ -87.88785,
+ 42.941664,
+ 0
+ ],
+ [
+ -87.887846,
+ 42.941661,
+ 0
+ ],
+ [
+ -87.887843,
+ 42.941661,
+ 0
+ ],
+ [
+ -87.88784,
+ 42.941658,
+ 0
+ ],
+ [
+ -87.887836,
+ 42.941658,
+ 0
+ ],
+ [
+ -87.887833,
+ 42.941658,
+ 0
+ ],
+ [
+ -87.88783,
+ 42.941658,
+ 0
+ ],
+ [
+ -87.887827,
+ 42.941658,
+ 0
+ ],
+ [
+ -87.887823,
+ 42.941658,
+ 0
+ ],
+ [
+ -87.88782,
+ 42.941658,
+ 0
+ ],
+ [
+ -87.887817,
+ 42.941661,
+ 0
+ ],
+ [
+ -87.887814,
+ 42.941664,
+ 0
+ ],
+ [
+ -87.88781,
+ 42.941668,
+ 0
+ ],
+ [
+ -87.887807,
+ 42.941671,
+ 0
+ ],
+ [
+ -87.887807,
+ 42.941674,
+ 0
+ ],
+ [
+ -87.887807,
+ 42.941678,
+ 0
+ ],
+ [
+ -87.887807,
+ 42.941681,
+ 0
+ ],
+ [
+ -87.887807,
+ 42.941684,
+ 0
+ ],
+ [
+ -87.887804,
+ 42.941687,
+ 0
+ ],
+ [
+ -87.887804,
+ 42.941691,
+ 0
+ ],
+ [
+ -87.887804,
+ 42.941694,
+ 0
+ ],
+ [
+ -87.887801,
+ 42.941697,
+ 0
+ ],
+ [
+ -87.887797,
+ 42.9417,
+ 0
+ ],
+ [
+ -87.887794,
+ 42.941704,
+ 0
+ ],
+ [
+ -87.887791,
+ 42.941707,
+ 0
+ ],
+ [
+ -87.887788,
+ 42.941707,
+ 0
+ ],
+ [
+ -87.887784,
+ 42.94171,
+ 0
+ ],
+ [
+ -87.887781,
+ 42.94171,
+ 0
+ ],
+ [
+ -87.887778,
+ 42.94171,
+ 0
+ ],
+ [
+ -87.887775,
+ 42.941713,
+ 0
+ ],
+ [
+ -87.887771,
+ 42.941713,
+ 0
+ ],
+ [
+ -87.887768,
+ 42.941717,
+ 0
+ ],
+ [
+ -87.887765,
+ 42.941717,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.941717,
+ 0
+ ],
+ [
+ -87.887758,
+ 42.94172,
+ 0
+ ],
+ [
+ -87.887755,
+ 42.94172,
+ 0
+ ],
+ [
+ -87.887752,
+ 42.941723,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.941726,
+ 0
+ ],
+ [
+ -87.887745,
+ 42.94173,
+ 0
+ ],
+ [
+ -87.887742,
+ 42.94173,
+ 0
+ ],
+ [
+ -87.887739,
+ 42.941733,
+ 0
+ ],
+ [
+ -87.887735,
+ 42.941733,
+ 0
+ ],
+ [
+ -87.887732,
+ 42.941736,
+ 0
+ ],
+ [
+ -87.887729,
+ 42.941736,
+ 0
+ ],
+ [
+ -87.887726,
+ 42.94174,
+ 0
+ ],
+ [
+ -87.887722,
+ 42.941743,
+ 0
+ ],
+ [
+ -87.887719,
+ 42.941746,
+ 0
+ ],
+ [
+ -87.887719,
+ 42.941749,
+ 0
+ ],
+ [
+ -87.887716,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.887713,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.887709,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.887706,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.887703,
+ 42.941756,
+ 0
+ ],
+ [
+ -87.887699,
+ 42.941756,
+ 0
+ ],
+ [
+ -87.887696,
+ 42.941756,
+ 0
+ ],
+ [
+ -87.887693,
+ 42.941756,
+ 0
+ ],
+ [
+ -87.88769,
+ 42.941756,
+ 0
+ ],
+ [
+ -87.887686,
+ 42.941759,
+ 0
+ ],
+ [
+ -87.887683,
+ 42.941759,
+ 0
+ ],
+ [
+ -87.88768,
+ 42.941759,
+ 0
+ ],
+ [
+ -87.887677,
+ 42.941759,
+ 0
+ ],
+ [
+ -87.887673,
+ 42.941756,
+ 0
+ ],
+ [
+ -87.88767,
+ 42.941756,
+ 0
+ ],
+ [
+ -87.887667,
+ 42.941756,
+ 0
+ ],
+ [
+ -87.887664,
+ 42.941756,
+ 0
+ ],
+ [
+ -87.88766,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.887657,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.887654,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.887651,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.887647,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.887644,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.887641,
+ 42.941756,
+ 0
+ ],
+ [
+ -87.887638,
+ 42.941756,
+ 0
+ ],
+ [
+ -87.887634,
+ 42.941759,
+ 0
+ ],
+ [
+ -87.887631,
+ 42.941762,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941766,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941769,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941772,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941775,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941779,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941782,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941785,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941788,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941792,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941795,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941798,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941801,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941805,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941808,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941811,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941815,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941818,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941821,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941824,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941828,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941831,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941834,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941837,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941841,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941844,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.941847,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.94185,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941854,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941857,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.94186,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941863,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941867,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.94187,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941873,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941876,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.94188,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.941883,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941886,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.94189,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941893,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941896,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941899,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941903,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941906,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941909,
+ 0
+ ],
+ [
+ -87.887631,
+ 42.941912,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941916,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941919,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941922,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941925,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941929,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941932,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.941935,
+ 0
+ ],
+ [
+ -87.887631,
+ 42.941938,
+ 0
+ ],
+ [
+ -87.887631,
+ 42.941942,
+ 0
+ ],
+ [
+ -87.887634,
+ 42.941945,
+ 0
+ ],
+ [
+ -87.887638,
+ 42.941948,
+ 0
+ ],
+ [
+ -87.887641,
+ 42.941948,
+ 0
+ ],
+ [
+ -87.887644,
+ 42.941952,
+ 0
+ ],
+ [
+ -87.887647,
+ 42.941955,
+ 0
+ ],
+ [
+ -87.887651,
+ 42.941955,
+ 0
+ ],
+ [
+ -87.887654,
+ 42.941958,
+ 0
+ ],
+ [
+ -87.887657,
+ 42.941961,
+ 0
+ ],
+ [
+ -87.88766,
+ 42.941965,
+ 0
+ ],
+ [
+ -87.887664,
+ 42.941965,
+ 0
+ ],
+ [
+ -87.887667,
+ 42.941968,
+ 0
+ ],
+ [
+ -87.88767,
+ 42.941971,
+ 0
+ ],
+ [
+ -87.88767,
+ 42.941974,
+ 0
+ ],
+ [
+ -87.887673,
+ 42.941978,
+ 0
+ ],
+ [
+ -87.887673,
+ 42.941981,
+ 0
+ ],
+ [
+ -87.887677,
+ 42.941984,
+ 0
+ ],
+ [
+ -87.88768,
+ 42.941987,
+ 0
+ ],
+ [
+ -87.88768,
+ 42.941991,
+ 0
+ ],
+ [
+ -87.887683,
+ 42.941994,
+ 0
+ ],
+ [
+ -87.887686,
+ 42.941994,
+ 0
+ ],
+ [
+ -87.88769,
+ 42.941994,
+ 0
+ ],
+ [
+ -87.887693,
+ 42.941997,
+ 0
+ ],
+ [
+ -87.887696,
+ 42.941997,
+ 0
+ ],
+ [
+ -87.887699,
+ 42.941997,
+ 0
+ ],
+ [
+ -87.887703,
+ 42.941997,
+ 0
+ ],
+ [
+ -87.887706,
+ 42.941997,
+ 0
+ ],
+ [
+ -87.887709,
+ 42.941997,
+ 0
+ ],
+ [
+ -87.887713,
+ 42.941997,
+ 0
+ ],
+ [
+ -87.887716,
+ 42.941997,
+ 0
+ ],
+ [
+ -87.887719,
+ 42.941997,
+ 0
+ ],
+ [
+ -87.887722,
+ 42.942,
+ 0
+ ],
+ [
+ -87.887726,
+ 42.942,
+ 0
+ ],
+ [
+ -87.887729,
+ 42.942,
+ 0
+ ],
+ [
+ -87.887732,
+ 42.942,
+ 0
+ ],
+ [
+ -87.887735,
+ 42.942004,
+ 0
+ ],
+ [
+ -87.887739,
+ 42.942004,
+ 0
+ ],
+ [
+ -87.887742,
+ 42.942004,
+ 0
+ ],
+ [
+ -87.887745,
+ 42.942007,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.942007,
+ 0
+ ],
+ [
+ -87.887752,
+ 42.942007,
+ 0
+ ],
+ [
+ -87.887755,
+ 42.94201,
+ 0
+ ],
+ [
+ -87.887758,
+ 42.94201,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942013,
+ 0
+ ],
+ [
+ -87.887765,
+ 42.942017,
+ 0
+ ],
+ [
+ -87.887768,
+ 42.942017,
+ 0
+ ],
+ [
+ -87.887771,
+ 42.94202,
+ 0
+ ],
+ [
+ -87.887775,
+ 42.94202,
+ 0
+ ],
+ [
+ -87.887778,
+ 42.94202,
+ 0
+ ],
+ [
+ -87.887781,
+ 42.94202,
+ 0
+ ],
+ [
+ -87.887784,
+ 42.94202,
+ 0
+ ],
+ [
+ -87.887788,
+ 42.94202,
+ 0
+ ],
+ [
+ -87.887791,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887794,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887797,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887801,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887804,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887807,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.88781,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887814,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887817,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.88782,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887823,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887827,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.88783,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887833,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887836,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.88784,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887843,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887846,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.88785,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887853,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887856,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887859,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887863,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887866,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887869,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887872,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887876,
+ 42.942023,
+ 0
+ ],
+ [
+ -87.887876,
+ 42.942023,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "geom_imcoords": [
+ [
+ 226,
+ 317
+ ],
+ [
+ 225,
+ 318
+ ],
+ [
+ 224,
+ 318
+ ],
+ [
+ 223,
+ 318
+ ],
+ [
+ 222,
+ 318
+ ],
+ [
+ 221,
+ 318
+ ],
+ [
+ 221,
+ 319
+ ],
+ [
+ 220,
+ 320
+ ],
+ [
+ 219,
+ 321
+ ],
+ [
+ 218,
+ 322
+ ],
+ [
+ 217,
+ 323
+ ],
+ [
+ 216,
+ 324
+ ],
+ [
+ 215,
+ 325
+ ],
+ [
+ 214,
+ 326
+ ],
+ [
+ 213,
+ 327
+ ],
+ [
+ 212,
+ 328
+ ],
+ [
+ 211,
+ 328
+ ],
+ [
+ 210,
+ 328
+ ],
+ [
+ 209,
+ 329
+ ],
+ [
+ 208,
+ 329
+ ],
+ [
+ 207,
+ 330
+ ],
+ [
+ 206,
+ 330
+ ],
+ [
+ 205,
+ 331
+ ],
+ [
+ 204,
+ 331
+ ],
+ [
+ 203,
+ 332
+ ],
+ [
+ 202,
+ 332
+ ],
+ [
+ 201,
+ 333
+ ],
+ [
+ 200,
+ 333
+ ],
+ [
+ 199,
+ 334
+ ],
+ [
+ 198,
+ 334
+ ],
+ [
+ 197,
+ 335
+ ],
+ [
+ 196,
+ 335
+ ],
+ [
+ 195,
+ 336
+ ],
+ [
+ 194,
+ 336
+ ],
+ [
+ 193,
+ 337
+ ],
+ [
+ 192,
+ 337
+ ],
+ [
+ 191,
+ 338
+ ],
+ [
+ 190,
+ 338
+ ],
+ [
+ 189,
+ 339
+ ],
+ [
+ 188,
+ 339
+ ],
+ [
+ 187,
+ 339
+ ],
+ [
+ 186,
+ 339
+ ],
+ [
+ 185,
+ 339
+ ],
+ [
+ 184,
+ 339
+ ],
+ [
+ 183,
+ 340
+ ],
+ [
+ 182,
+ 340
+ ],
+ [
+ 181,
+ 340
+ ],
+ [
+ 180,
+ 340
+ ],
+ [
+ 179,
+ 340
+ ],
+ [
+ 178,
+ 340
+ ],
+ [
+ 177,
+ 341
+ ],
+ [
+ 176,
+ 341
+ ],
+ [
+ 175,
+ 341
+ ],
+ [
+ 174,
+ 341
+ ],
+ [
+ 173,
+ 341
+ ],
+ [
+ 172,
+ 341
+ ],
+ [
+ 171,
+ 341
+ ],
+ [
+ 170,
+ 341
+ ],
+ [
+ 169,
+ 341
+ ],
+ [
+ 168,
+ 342
+ ],
+ [
+ 167,
+ 342
+ ],
+ [
+ 166,
+ 342
+ ],
+ [
+ 165,
+ 342
+ ],
+ [
+ 164,
+ 343
+ ],
+ [
+ 163,
+ 343
+ ],
+ [
+ 162,
+ 343
+ ],
+ [
+ 161,
+ 344
+ ],
+ [
+ 160,
+ 344
+ ],
+ [
+ 159,
+ 344
+ ],
+ [
+ 158,
+ 345
+ ],
+ [
+ 157,
+ 345
+ ],
+ [
+ 156,
+ 346
+ ],
+ [
+ 155,
+ 346
+ ],
+ [
+ 154,
+ 347
+ ],
+ [
+ 153,
+ 348
+ ],
+ [
+ 153,
+ 349
+ ],
+ [
+ 152,
+ 350
+ ],
+ [
+ 152,
+ 351
+ ],
+ [
+ 152,
+ 352
+ ],
+ [
+ 153,
+ 353
+ ],
+ [
+ 153,
+ 354
+ ],
+ [
+ 153,
+ 355
+ ],
+ [
+ 154,
+ 356
+ ],
+ [
+ 155,
+ 357
+ ],
+ [
+ 156,
+ 358
+ ],
+ [
+ 157,
+ 358
+ ],
+ [
+ 158,
+ 359
+ ],
+ [
+ 158,
+ 360
+ ],
+ [
+ 158,
+ 361
+ ],
+ [
+ 158,
+ 362
+ ],
+ [
+ 158,
+ 363
+ ],
+ [
+ 157,
+ 364
+ ],
+ [
+ 156,
+ 365
+ ],
+ [
+ 156,
+ 366
+ ],
+ [
+ 155,
+ 367
+ ],
+ [
+ 155,
+ 368
+ ],
+ [
+ 155,
+ 369
+ ],
+ [
+ 155,
+ 370
+ ],
+ [
+ 155,
+ 371
+ ],
+ [
+ 155,
+ 372
+ ],
+ [
+ 156,
+ 372
+ ],
+ [
+ 157,
+ 373
+ ],
+ [
+ 158,
+ 374
+ ],
+ [
+ 159,
+ 375
+ ],
+ [
+ 160,
+ 376
+ ],
+ [
+ 161,
+ 376
+ ],
+ [
+ 162,
+ 377
+ ],
+ [
+ 163,
+ 377
+ ],
+ [
+ 164,
+ 377
+ ],
+ [
+ 165,
+ 378
+ ],
+ [
+ 166,
+ 378
+ ],
+ [
+ 167,
+ 379
+ ],
+ [
+ 168,
+ 379
+ ],
+ [
+ 169,
+ 380
+ ],
+ [
+ 169,
+ 381
+ ],
+ [
+ 170,
+ 382
+ ],
+ [
+ 171,
+ 383
+ ],
+ [
+ 172,
+ 384
+ ],
+ [
+ 173,
+ 385
+ ],
+ [
+ 174,
+ 386
+ ],
+ [
+ 174,
+ 387
+ ],
+ [
+ 175,
+ 388
+ ],
+ [
+ 176,
+ 389
+ ],
+ [
+ 177,
+ 390
+ ],
+ [
+ 178,
+ 391
+ ],
+ [
+ 179,
+ 392
+ ],
+ [
+ 180,
+ 393
+ ],
+ [
+ 180,
+ 394
+ ],
+ [
+ 181,
+ 395
+ ],
+ [
+ 181,
+ 396
+ ],
+ [
+ 182,
+ 397
+ ],
+ [
+ 183,
+ 398
+ ],
+ [
+ 184,
+ 399
+ ],
+ [
+ 185,
+ 400
+ ],
+ [
+ 186,
+ 401
+ ],
+ [
+ 187,
+ 402
+ ],
+ [
+ 188,
+ 402
+ ],
+ [
+ 189,
+ 403
+ ],
+ [
+ 190,
+ 404
+ ],
+ [
+ 191,
+ 405
+ ],
+ [
+ 192,
+ 405
+ ],
+ [
+ 193,
+ 406
+ ],
+ [
+ 194,
+ 406
+ ],
+ [
+ 195,
+ 407
+ ],
+ [
+ 196,
+ 408
+ ],
+ [
+ 197,
+ 409
+ ],
+ [
+ 198,
+ 410
+ ],
+ [
+ 199,
+ 411
+ ],
+ [
+ 200,
+ 412
+ ],
+ [
+ 201,
+ 413
+ ],
+ [
+ 202,
+ 414
+ ],
+ [
+ 203,
+ 415
+ ],
+ [
+ 204,
+ 415
+ ],
+ [
+ 205,
+ 416
+ ],
+ [
+ 206,
+ 416
+ ],
+ [
+ 207,
+ 417
+ ],
+ [
+ 208,
+ 417
+ ],
+ [
+ 209,
+ 417
+ ],
+ [
+ 210,
+ 417
+ ],
+ [
+ 211,
+ 418
+ ],
+ [
+ 212,
+ 418
+ ],
+ [
+ 213,
+ 418
+ ],
+ [
+ 214,
+ 418
+ ],
+ [
+ 215,
+ 418
+ ],
+ [
+ 216,
+ 419
+ ],
+ [
+ 217,
+ 419
+ ],
+ [
+ 218,
+ 419
+ ],
+ [
+ 219,
+ 419
+ ],
+ [
+ 220,
+ 420
+ ],
+ [
+ 221,
+ 420
+ ],
+ [
+ 222,
+ 421
+ ],
+ [
+ 223,
+ 421
+ ],
+ [
+ 224,
+ 422
+ ],
+ [
+ 225,
+ 422
+ ],
+ [
+ 226,
+ 423
+ ],
+ [
+ 227,
+ 423
+ ],
+ [
+ 228,
+ 424
+ ],
+ [
+ 229,
+ 424
+ ],
+ [
+ 230,
+ 425
+ ],
+ [
+ 231,
+ 426
+ ],
+ [
+ 232,
+ 426
+ ],
+ [
+ 233,
+ 427
+ ],
+ [
+ 234,
+ 427
+ ],
+ [
+ 235,
+ 428
+ ],
+ [
+ 236,
+ 428
+ ],
+ [
+ 237,
+ 429
+ ],
+ [
+ 238,
+ 429
+ ],
+ [
+ 239,
+ 429
+ ],
+ [
+ 240,
+ 429
+ ],
+ [
+ 241,
+ 429
+ ],
+ [
+ 242,
+ 429
+ ],
+ [
+ 243,
+ 429
+ ],
+ [
+ 244,
+ 428
+ ],
+ [
+ 245,
+ 427
+ ],
+ [
+ 246,
+ 426
+ ],
+ [
+ 247,
+ 425
+ ],
+ [
+ 247,
+ 424
+ ],
+ [
+ 247,
+ 423
+ ],
+ [
+ 247,
+ 422
+ ],
+ [
+ 247,
+ 421
+ ],
+ [
+ 248,
+ 420
+ ],
+ [
+ 248,
+ 419
+ ],
+ [
+ 248,
+ 418
+ ],
+ [
+ 249,
+ 417
+ ],
+ [
+ 250,
+ 416
+ ],
+ [
+ 251,
+ 415
+ ],
+ [
+ 252,
+ 414
+ ],
+ [
+ 253,
+ 414
+ ],
+ [
+ 254,
+ 413
+ ],
+ [
+ 255,
+ 413
+ ],
+ [
+ 256,
+ 413
+ ],
+ [
+ 257,
+ 412
+ ],
+ [
+ 258,
+ 412
+ ],
+ [
+ 259,
+ 411
+ ],
+ [
+ 260,
+ 411
+ ],
+ [
+ 261,
+ 411
+ ],
+ [
+ 262,
+ 410
+ ],
+ [
+ 263,
+ 410
+ ],
+ [
+ 264,
+ 409
+ ],
+ [
+ 265,
+ 408
+ ],
+ [
+ 266,
+ 407
+ ],
+ [
+ 267,
+ 407
+ ],
+ [
+ 268,
+ 406
+ ],
+ [
+ 269,
+ 406
+ ],
+ [
+ 270,
+ 405
+ ],
+ [
+ 271,
+ 405
+ ],
+ [
+ 272,
+ 404
+ ],
+ [
+ 273,
+ 403
+ ],
+ [
+ 274,
+ 402
+ ],
+ [
+ 274,
+ 401
+ ],
+ [
+ 275,
+ 400
+ ],
+ [
+ 276,
+ 400
+ ],
+ [
+ 277,
+ 400
+ ],
+ [
+ 278,
+ 400
+ ],
+ [
+ 279,
+ 399
+ ],
+ [
+ 280,
+ 399
+ ],
+ [
+ 281,
+ 399
+ ],
+ [
+ 282,
+ 399
+ ],
+ [
+ 283,
+ 399
+ ],
+ [
+ 284,
+ 398
+ ],
+ [
+ 285,
+ 398
+ ],
+ [
+ 286,
+ 398
+ ],
+ [
+ 287,
+ 398
+ ],
+ [
+ 288,
+ 399
+ ],
+ [
+ 289,
+ 399
+ ],
+ [
+ 290,
+ 399
+ ],
+ [
+ 291,
+ 399
+ ],
+ [
+ 292,
+ 400
+ ],
+ [
+ 293,
+ 400
+ ],
+ [
+ 294,
+ 400
+ ],
+ [
+ 295,
+ 400
+ ],
+ [
+ 296,
+ 400
+ ],
+ [
+ 297,
+ 400
+ ],
+ [
+ 298,
+ 399
+ ],
+ [
+ 299,
+ 399
+ ],
+ [
+ 300,
+ 398
+ ],
+ [
+ 301,
+ 397
+ ],
+ [
+ 302,
+ 396
+ ],
+ [
+ 303,
+ 395
+ ],
+ [
+ 303,
+ 394
+ ],
+ [
+ 303,
+ 393
+ ],
+ [
+ 304,
+ 392
+ ],
+ [
+ 304,
+ 391
+ ],
+ [
+ 304,
+ 390
+ ],
+ [
+ 304,
+ 389
+ ],
+ [
+ 304,
+ 388
+ ],
+ [
+ 304,
+ 387
+ ],
+ [
+ 304,
+ 386
+ ],
+ [
+ 304,
+ 385
+ ],
+ [
+ 304,
+ 384
+ ],
+ [
+ 304,
+ 383
+ ],
+ [
+ 304,
+ 382
+ ],
+ [
+ 304,
+ 381
+ ],
+ [
+ 304,
+ 380
+ ],
+ [
+ 303,
+ 379
+ ],
+ [
+ 303,
+ 378
+ ],
+ [
+ 303,
+ 377
+ ],
+ [
+ 303,
+ 376
+ ],
+ [
+ 303,
+ 375
+ ],
+ [
+ 303,
+ 374
+ ],
+ [
+ 303,
+ 373
+ ],
+ [
+ 304,
+ 372
+ ],
+ [
+ 304,
+ 371
+ ],
+ [
+ 304,
+ 370
+ ],
+ [
+ 303,
+ 369
+ ],
+ [
+ 303,
+ 368
+ ],
+ [
+ 303,
+ 367
+ ],
+ [
+ 303,
+ 366
+ ],
+ [
+ 303,
+ 365
+ ],
+ [
+ 303,
+ 364
+ ],
+ [
+ 303,
+ 363
+ ],
+ [
+ 303,
+ 362
+ ],
+ [
+ 303,
+ 361
+ ],
+ [
+ 303,
+ 360
+ ],
+ [
+ 302,
+ 359
+ ],
+ [
+ 302,
+ 358
+ ],
+ [
+ 302,
+ 357
+ ],
+ [
+ 302,
+ 356
+ ],
+ [
+ 302,
+ 355
+ ],
+ [
+ 302,
+ 354
+ ],
+ [
+ 302,
+ 353
+ ],
+ [
+ 302,
+ 352
+ ],
+ [
+ 301,
+ 351
+ ],
+ [
+ 302,
+ 350
+ ],
+ [
+ 302,
+ 349
+ ],
+ [
+ 302,
+ 348
+ ],
+ [
+ 302,
+ 347
+ ],
+ [
+ 302,
+ 346
+ ],
+ [
+ 302,
+ 345
+ ],
+ [
+ 302,
+ 344
+ ],
+ [
+ 301,
+ 343
+ ],
+ [
+ 301,
+ 342
+ ],
+ [
+ 300,
+ 341
+ ],
+ [
+ 299,
+ 340
+ ],
+ [
+ 298,
+ 340
+ ],
+ [
+ 297,
+ 339
+ ],
+ [
+ 296,
+ 338
+ ],
+ [
+ 295,
+ 338
+ ],
+ [
+ 294,
+ 337
+ ],
+ [
+ 293,
+ 336
+ ],
+ [
+ 292,
+ 335
+ ],
+ [
+ 291,
+ 335
+ ],
+ [
+ 290,
+ 334
+ ],
+ [
+ 289,
+ 333
+ ],
+ [
+ 289,
+ 332
+ ],
+ [
+ 288,
+ 331
+ ],
+ [
+ 288,
+ 330
+ ],
+ [
+ 287,
+ 329
+ ],
+ [
+ 286,
+ 328
+ ],
+ [
+ 286,
+ 327
+ ],
+ [
+ 285,
+ 326
+ ],
+ [
+ 284,
+ 326
+ ],
+ [
+ 283,
+ 326
+ ],
+ [
+ 282,
+ 325
+ ],
+ [
+ 281,
+ 325
+ ],
+ [
+ 280,
+ 325
+ ],
+ [
+ 279,
+ 325
+ ],
+ [
+ 278,
+ 325
+ ],
+ [
+ 277,
+ 325
+ ],
+ [
+ 276,
+ 325
+ ],
+ [
+ 275,
+ 325
+ ],
+ [
+ 274,
+ 325
+ ],
+ [
+ 273,
+ 324
+ ],
+ [
+ 272,
+ 324
+ ],
+ [
+ 271,
+ 324
+ ],
+ [
+ 270,
+ 324
+ ],
+ [
+ 269,
+ 323
+ ],
+ [
+ 268,
+ 323
+ ],
+ [
+ 267,
+ 323
+ ],
+ [
+ 266,
+ 322
+ ],
+ [
+ 265,
+ 322
+ ],
+ [
+ 264,
+ 322
+ ],
+ [
+ 263,
+ 321
+ ],
+ [
+ 262,
+ 321
+ ],
+ [
+ 261,
+ 320
+ ],
+ [
+ 260,
+ 319
+ ],
+ [
+ 259,
+ 319
+ ],
+ [
+ 258,
+ 318
+ ],
+ [
+ 257,
+ 318
+ ],
+ [
+ 256,
+ 318
+ ],
+ [
+ 255,
+ 318
+ ],
+ [
+ 254,
+ 318
+ ],
+ [
+ 253,
+ 318
+ ],
+ [
+ 252,
+ 317
+ ],
+ [
+ 251,
+ 317
+ ],
+ [
+ 250,
+ 317
+ ],
+ [
+ 249,
+ 317
+ ],
+ [
+ 248,
+ 317
+ ],
+ [
+ 247,
+ 317
+ ],
+ [
+ 246,
+ 317
+ ],
+ [
+ 245,
+ 317
+ ],
+ [
+ 244,
+ 317
+ ],
+ [
+ 243,
+ 317
+ ],
+ [
+ 242,
+ 317
+ ],
+ [
+ 241,
+ 317
+ ],
+ [
+ 240,
+ 317
+ ],
+ [
+ 239,
+ 317
+ ],
+ [
+ 238,
+ 317
+ ],
+ [
+ 237,
+ 317
+ ],
+ [
+ 236,
+ 317
+ ],
+ [
+ 235,
+ 317
+ ],
+ [
+ 234,
+ 317
+ ],
+ [
+ 233,
+ 317
+ ],
+ [
+ 232,
+ 317
+ ],
+ [
+ 231,
+ 317
+ ],
+ [
+ 230,
+ 317
+ ],
+ [
+ 229,
+ 317
+ ],
+ [
+ 228,
+ 317
+ ],
+ [
+ 227,
+ 317
+ ],
+ [
+ 226,
+ 317
+ ]
+ ],
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 226,
+ 317
+ ],
+ [
+ 225,
+ 318
+ ],
+ [
+ 224,
+ 318
+ ],
+ [
+ 223,
+ 318
+ ],
+ [
+ 222,
+ 318
+ ],
+ [
+ 221,
+ 318
+ ],
+ [
+ 221,
+ 319
+ ],
+ [
+ 220,
+ 320
+ ],
+ [
+ 219,
+ 321
+ ],
+ [
+ 218,
+ 322
+ ],
+ [
+ 217,
+ 323
+ ],
+ [
+ 216,
+ 324
+ ],
+ [
+ 215,
+ 325
+ ],
+ [
+ 214,
+ 326
+ ],
+ [
+ 213,
+ 327
+ ],
+ [
+ 212,
+ 328
+ ],
+ [
+ 211,
+ 328
+ ],
+ [
+ 210,
+ 328
+ ],
+ [
+ 209,
+ 329
+ ],
+ [
+ 208,
+ 329
+ ],
+ [
+ 207,
+ 330
+ ],
+ [
+ 206,
+ 330
+ ],
+ [
+ 205,
+ 331
+ ],
+ [
+ 204,
+ 331
+ ],
+ [
+ 203,
+ 332
+ ],
+ [
+ 202,
+ 332
+ ],
+ [
+ 201,
+ 333
+ ],
+ [
+ 200,
+ 333
+ ],
+ [
+ 199,
+ 334
+ ],
+ [
+ 198,
+ 334
+ ],
+ [
+ 197,
+ 335
+ ],
+ [
+ 196,
+ 335
+ ],
+ [
+ 195,
+ 336
+ ],
+ [
+ 194,
+ 336
+ ],
+ [
+ 193,
+ 337
+ ],
+ [
+ 192,
+ 337
+ ],
+ [
+ 191,
+ 338
+ ],
+ [
+ 190,
+ 338
+ ],
+ [
+ 189,
+ 339
+ ],
+ [
+ 188,
+ 339
+ ],
+ [
+ 187,
+ 339
+ ],
+ [
+ 186,
+ 339
+ ],
+ [
+ 185,
+ 339
+ ],
+ [
+ 184,
+ 339
+ ],
+ [
+ 183,
+ 340
+ ],
+ [
+ 182,
+ 340
+ ],
+ [
+ 181,
+ 340
+ ],
+ [
+ 180,
+ 340
+ ],
+ [
+ 179,
+ 340
+ ],
+ [
+ 178,
+ 340
+ ],
+ [
+ 177,
+ 341
+ ],
+ [
+ 176,
+ 341
+ ],
+ [
+ 175,
+ 341
+ ],
+ [
+ 174,
+ 341
+ ],
+ [
+ 173,
+ 341
+ ],
+ [
+ 172,
+ 341
+ ],
+ [
+ 171,
+ 341
+ ],
+ [
+ 170,
+ 341
+ ],
+ [
+ 169,
+ 341
+ ],
+ [
+ 168,
+ 342
+ ],
+ [
+ 167,
+ 342
+ ],
+ [
+ 166,
+ 342
+ ],
+ [
+ 165,
+ 342
+ ],
+ [
+ 164,
+ 343
+ ],
+ [
+ 163,
+ 343
+ ],
+ [
+ 162,
+ 343
+ ],
+ [
+ 161,
+ 344
+ ],
+ [
+ 160,
+ 344
+ ],
+ [
+ 159,
+ 344
+ ],
+ [
+ 158,
+ 345
+ ],
+ [
+ 157,
+ 345
+ ],
+ [
+ 156,
+ 346
+ ],
+ [
+ 155,
+ 346
+ ],
+ [
+ 154,
+ 347
+ ],
+ [
+ 153,
+ 348
+ ],
+ [
+ 153,
+ 349
+ ],
+ [
+ 152,
+ 350
+ ],
+ [
+ 152,
+ 351
+ ],
+ [
+ 152,
+ 352
+ ],
+ [
+ 153,
+ 353
+ ],
+ [
+ 153,
+ 354
+ ],
+ [
+ 153,
+ 355
+ ],
+ [
+ 154,
+ 356
+ ],
+ [
+ 155,
+ 357
+ ],
+ [
+ 156,
+ 358
+ ],
+ [
+ 157,
+ 358
+ ],
+ [
+ 158,
+ 359
+ ],
+ [
+ 158,
+ 360
+ ],
+ [
+ 158,
+ 361
+ ],
+ [
+ 158,
+ 362
+ ],
+ [
+ 158,
+ 363
+ ],
+ [
+ 157,
+ 364
+ ],
+ [
+ 156,
+ 365
+ ],
+ [
+ 156,
+ 366
+ ],
+ [
+ 155,
+ 367
+ ],
+ [
+ 155,
+ 368
+ ],
+ [
+ 155,
+ 369
+ ],
+ [
+ 155,
+ 370
+ ],
+ [
+ 155,
+ 371
+ ],
+ [
+ 155,
+ 372
+ ],
+ [
+ 156,
+ 372
+ ],
+ [
+ 157,
+ 373
+ ],
+ [
+ 158,
+ 374
+ ],
+ [
+ 159,
+ 375
+ ],
+ [
+ 160,
+ 376
+ ],
+ [
+ 161,
+ 376
+ ],
+ [
+ 162,
+ 377
+ ],
+ [
+ 163,
+ 377
+ ],
+ [
+ 164,
+ 377
+ ],
+ [
+ 165,
+ 378
+ ],
+ [
+ 166,
+ 378
+ ],
+ [
+ 167,
+ 379
+ ],
+ [
+ 168,
+ 379
+ ],
+ [
+ 169,
+ 380
+ ],
+ [
+ 169,
+ 381
+ ],
+ [
+ 170,
+ 382
+ ],
+ [
+ 171,
+ 383
+ ],
+ [
+ 172,
+ 384
+ ],
+ [
+ 173,
+ 385
+ ],
+ [
+ 174,
+ 386
+ ],
+ [
+ 174,
+ 387
+ ],
+ [
+ 175,
+ 388
+ ],
+ [
+ 176,
+ 389
+ ],
+ [
+ 177,
+ 390
+ ],
+ [
+ 178,
+ 391
+ ],
+ [
+ 179,
+ 392
+ ],
+ [
+ 180,
+ 393
+ ],
+ [
+ 180,
+ 394
+ ],
+ [
+ 181,
+ 395
+ ],
+ [
+ 181,
+ 396
+ ],
+ [
+ 182,
+ 397
+ ],
+ [
+ 183,
+ 398
+ ],
+ [
+ 184,
+ 399
+ ],
+ [
+ 185,
+ 400
+ ],
+ [
+ 186,
+ 401
+ ],
+ [
+ 187,
+ 402
+ ],
+ [
+ 188,
+ 402
+ ],
+ [
+ 189,
+ 403
+ ],
+ [
+ 190,
+ 404
+ ],
+ [
+ 191,
+ 405
+ ],
+ [
+ 192,
+ 405
+ ],
+ [
+ 193,
+ 406
+ ],
+ [
+ 194,
+ 406
+ ],
+ [
+ 195,
+ 407
+ ],
+ [
+ 196,
+ 408
+ ],
+ [
+ 197,
+ 409
+ ],
+ [
+ 198,
+ 410
+ ],
+ [
+ 199,
+ 411
+ ],
+ [
+ 200,
+ 412
+ ],
+ [
+ 201,
+ 413
+ ],
+ [
+ 202,
+ 414
+ ],
+ [
+ 203,
+ 415
+ ],
+ [
+ 204,
+ 415
+ ],
+ [
+ 205,
+ 416
+ ],
+ [
+ 206,
+ 416
+ ],
+ [
+ 207,
+ 417
+ ],
+ [
+ 208,
+ 417
+ ],
+ [
+ 209,
+ 417
+ ],
+ [
+ 210,
+ 417
+ ],
+ [
+ 211,
+ 418
+ ],
+ [
+ 212,
+ 418
+ ],
+ [
+ 213,
+ 418
+ ],
+ [
+ 214,
+ 418
+ ],
+ [
+ 215,
+ 418
+ ],
+ [
+ 216,
+ 419
+ ],
+ [
+ 217,
+ 419
+ ],
+ [
+ 218,
+ 419
+ ],
+ [
+ 219,
+ 419
+ ],
+ [
+ 220,
+ 420
+ ],
+ [
+ 221,
+ 420
+ ],
+ [
+ 222,
+ 421
+ ],
+ [
+ 223,
+ 421
+ ],
+ [
+ 224,
+ 422
+ ],
+ [
+ 225,
+ 422
+ ],
+ [
+ 226,
+ 423
+ ],
+ [
+ 227,
+ 423
+ ],
+ [
+ 228,
+ 424
+ ],
+ [
+ 229,
+ 424
+ ],
+ [
+ 230,
+ 425
+ ],
+ [
+ 231,
+ 426
+ ],
+ [
+ 232,
+ 426
+ ],
+ [
+ 233,
+ 427
+ ],
+ [
+ 234,
+ 427
+ ],
+ [
+ 235,
+ 428
+ ],
+ [
+ 236,
+ 428
+ ],
+ [
+ 237,
+ 429
+ ],
+ [
+ 238,
+ 429
+ ],
+ [
+ 239,
+ 429
+ ],
+ [
+ 240,
+ 429
+ ],
+ [
+ 241,
+ 429
+ ],
+ [
+ 242,
+ 429
+ ],
+ [
+ 243,
+ 429
+ ],
+ [
+ 244,
+ 428
+ ],
+ [
+ 245,
+ 427
+ ],
+ [
+ 246,
+ 426
+ ],
+ [
+ 247,
+ 425
+ ],
+ [
+ 247,
+ 424
+ ],
+ [
+ 247,
+ 423
+ ],
+ [
+ 247,
+ 422
+ ],
+ [
+ 247,
+ 421
+ ],
+ [
+ 248,
+ 420
+ ],
+ [
+ 248,
+ 419
+ ],
+ [
+ 248,
+ 418
+ ],
+ [
+ 249,
+ 417
+ ],
+ [
+ 250,
+ 416
+ ],
+ [
+ 251,
+ 415
+ ],
+ [
+ 252,
+ 414
+ ],
+ [
+ 253,
+ 414
+ ],
+ [
+ 254,
+ 413
+ ],
+ [
+ 255,
+ 413
+ ],
+ [
+ 256,
+ 413
+ ],
+ [
+ 257,
+ 412
+ ],
+ [
+ 258,
+ 412
+ ],
+ [
+ 259,
+ 411
+ ],
+ [
+ 260,
+ 411
+ ],
+ [
+ 261,
+ 411
+ ],
+ [
+ 262,
+ 410
+ ],
+ [
+ 263,
+ 410
+ ],
+ [
+ 264,
+ 409
+ ],
+ [
+ 265,
+ 408
+ ],
+ [
+ 266,
+ 407
+ ],
+ [
+ 267,
+ 407
+ ],
+ [
+ 268,
+ 406
+ ],
+ [
+ 269,
+ 406
+ ],
+ [
+ 270,
+ 405
+ ],
+ [
+ 271,
+ 405
+ ],
+ [
+ 272,
+ 404
+ ],
+ [
+ 273,
+ 403
+ ],
+ [
+ 274,
+ 402
+ ],
+ [
+ 274,
+ 401
+ ],
+ [
+ 275,
+ 400
+ ],
+ [
+ 276,
+ 400
+ ],
+ [
+ 277,
+ 400
+ ],
+ [
+ 278,
+ 400
+ ],
+ [
+ 279,
+ 399
+ ],
+ [
+ 280,
+ 399
+ ],
+ [
+ 281,
+ 399
+ ],
+ [
+ 282,
+ 399
+ ],
+ [
+ 283,
+ 399
+ ],
+ [
+ 284,
+ 398
+ ],
+ [
+ 285,
+ 398
+ ],
+ [
+ 286,
+ 398
+ ],
+ [
+ 287,
+ 398
+ ],
+ [
+ 288,
+ 399
+ ],
+ [
+ 289,
+ 399
+ ],
+ [
+ 290,
+ 399
+ ],
+ [
+ 291,
+ 399
+ ],
+ [
+ 292,
+ 400
+ ],
+ [
+ 293,
+ 400
+ ],
+ [
+ 294,
+ 400
+ ],
+ [
+ 295,
+ 400
+ ],
+ [
+ 296,
+ 400
+ ],
+ [
+ 297,
+ 400
+ ],
+ [
+ 298,
+ 399
+ ],
+ [
+ 299,
+ 399
+ ],
+ [
+ 300,
+ 398
+ ],
+ [
+ 301,
+ 397
+ ],
+ [
+ 302,
+ 396
+ ],
+ [
+ 303,
+ 395
+ ],
+ [
+ 303,
+ 394
+ ],
+ [
+ 303,
+ 393
+ ],
+ [
+ 304,
+ 392
+ ],
+ [
+ 304,
+ 391
+ ],
+ [
+ 304,
+ 390
+ ],
+ [
+ 304,
+ 389
+ ],
+ [
+ 304,
+ 388
+ ],
+ [
+ 304,
+ 387
+ ],
+ [
+ 304,
+ 386
+ ],
+ [
+ 304,
+ 385
+ ],
+ [
+ 304,
+ 384
+ ],
+ [
+ 304,
+ 383
+ ],
+ [
+ 304,
+ 382
+ ],
+ [
+ 304,
+ 381
+ ],
+ [
+ 304,
+ 380
+ ],
+ [
+ 303,
+ 379
+ ],
+ [
+ 303,
+ 378
+ ],
+ [
+ 303,
+ 377
+ ],
+ [
+ 303,
+ 376
+ ],
+ [
+ 303,
+ 375
+ ],
+ [
+ 303,
+ 374
+ ],
+ [
+ 303,
+ 373
+ ],
+ [
+ 304,
+ 372
+ ],
+ [
+ 304,
+ 371
+ ],
+ [
+ 304,
+ 370
+ ],
+ [
+ 303,
+ 369
+ ],
+ [
+ 303,
+ 368
+ ],
+ [
+ 303,
+ 367
+ ],
+ [
+ 303,
+ 366
+ ],
+ [
+ 303,
+ 365
+ ],
+ [
+ 303,
+ 364
+ ],
+ [
+ 303,
+ 363
+ ],
+ [
+ 303,
+ 362
+ ],
+ [
+ 303,
+ 361
+ ],
+ [
+ 303,
+ 360
+ ],
+ [
+ 302,
+ 359
+ ],
+ [
+ 302,
+ 358
+ ],
+ [
+ 302,
+ 357
+ ],
+ [
+ 302,
+ 356
+ ],
+ [
+ 302,
+ 355
+ ],
+ [
+ 302,
+ 354
+ ],
+ [
+ 302,
+ 353
+ ],
+ [
+ 302,
+ 352
+ ],
+ [
+ 301,
+ 351
+ ],
+ [
+ 302,
+ 350
+ ],
+ [
+ 302,
+ 349
+ ],
+ [
+ 302,
+ 348
+ ],
+ [
+ 302,
+ 347
+ ],
+ [
+ 302,
+ 346
+ ],
+ [
+ 302,
+ 345
+ ],
+ [
+ 302,
+ 344
+ ],
+ [
+ 301,
+ 343
+ ],
+ [
+ 301,
+ 342
+ ],
+ [
+ 300,
+ 341
+ ],
+ [
+ 299,
+ 340
+ ],
+ [
+ 298,
+ 340
+ ],
+ [
+ 297,
+ 339
+ ],
+ [
+ 296,
+ 338
+ ],
+ [
+ 295,
+ 338
+ ],
+ [
+ 294,
+ 337
+ ],
+ [
+ 293,
+ 336
+ ],
+ [
+ 292,
+ 335
+ ],
+ [
+ 291,
+ 335
+ ],
+ [
+ 290,
+ 334
+ ],
+ [
+ 289,
+ 333
+ ],
+ [
+ 289,
+ 332
+ ],
+ [
+ 288,
+ 331
+ ],
+ [
+ 288,
+ 330
+ ],
+ [
+ 287,
+ 329
+ ],
+ [
+ 286,
+ 328
+ ],
+ [
+ 286,
+ 327
+ ],
+ [
+ 285,
+ 326
+ ],
+ [
+ 284,
+ 326
+ ],
+ [
+ 283,
+ 326
+ ],
+ [
+ 282,
+ 325
+ ],
+ [
+ 281,
+ 325
+ ],
+ [
+ 280,
+ 325
+ ],
+ [
+ 279,
+ 325
+ ],
+ [
+ 278,
+ 325
+ ],
+ [
+ 277,
+ 325
+ ],
+ [
+ 276,
+ 325
+ ],
+ [
+ 275,
+ 325
+ ],
+ [
+ 274,
+ 325
+ ],
+ [
+ 273,
+ 324
+ ],
+ [
+ 272,
+ 324
+ ],
+ [
+ 271,
+ 324
+ ],
+ [
+ 270,
+ 324
+ ],
+ [
+ 269,
+ 323
+ ],
+ [
+ 268,
+ 323
+ ],
+ [
+ 267,
+ 323
+ ],
+ [
+ 266,
+ 322
+ ],
+ [
+ 265,
+ 322
+ ],
+ [
+ 264,
+ 322
+ ],
+ [
+ 263,
+ 321
+ ],
+ [
+ 262,
+ 321
+ ],
+ [
+ 261,
+ 320
+ ],
+ [
+ 260,
+ 319
+ ],
+ [
+ 259,
+ 319
+ ],
+ [
+ 258,
+ 318
+ ],
+ [
+ 257,
+ 318
+ ],
+ [
+ 256,
+ 318
+ ],
+ [
+ 255,
+ 318
+ ],
+ [
+ 254,
+ 318
+ ],
+ [
+ 253,
+ 318
+ ],
+ [
+ 252,
+ 317
+ ],
+ [
+ 251,
+ 317
+ ],
+ [
+ 250,
+ 317
+ ],
+ [
+ 249,
+ 317
+ ],
+ [
+ 248,
+ 317
+ ],
+ [
+ 247,
+ 317
+ ],
+ [
+ 246,
+ 317
+ ],
+ [
+ 245,
+ 317
+ ],
+ [
+ 244,
+ 317
+ ],
+ [
+ 243,
+ 317
+ ],
+ [
+ 242,
+ 317
+ ],
+ [
+ 241,
+ 317
+ ],
+ [
+ 240,
+ 317
+ ],
+ [
+ 239,
+ 317
+ ],
+ [
+ 238,
+ 317
+ ],
+ [
+ 237,
+ 317
+ ],
+ [
+ 236,
+ 317
+ ],
+ [
+ 235,
+ 317
+ ],
+ [
+ 234,
+ 317
+ ],
+ [
+ 233,
+ 317
+ ],
+ [
+ 232,
+ 317
+ ],
+ [
+ 231,
+ 317
+ ],
+ [
+ 230,
+ 317
+ ],
+ [
+ 229,
+ 317
+ ],
+ [
+ 228,
+ 317
+ ],
+ [
+ 227,
+ 317
+ ],
+ [
+ 226,
+ 317
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "aircraft",
+ "detectionScore": 0.9915148019790649
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -87.88784848966017,
+ "center_latitude": 42.941855680721076,
+ "inferenceMetadata": {
+ "jobId": "8f96a35c-b5db-4ba7-a66d-be284ff3d7bc",
+ "filePath": "s3://test-images-409719124294/tile.ntf",
+ "receiveTime": "2023-11-10T19:24:57.458017",
+ "inferenceTime": "2023-11-10T19:24:58.097213+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "VIS",
+ "metadata": {
+ "sourceId": "",
+ "sourceDt": "2002-12-16T15:16:29",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -87.8880387040661,
+ 42.94215046749293,
+ -87.88754620569689,
+ 42.94251576429658
+ ],
+ "id": "f70681be-264f-492d-84bf-fadfe027aab2",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.887797,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887801,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887804,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887807,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.88781,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887814,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887817,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.88782,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887823,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887827,
+ 42.942509,
+ 0
+ ],
+ [
+ -87.88783,
+ 42.942506,
+ 0
+ ],
+ [
+ -87.887833,
+ 42.942503,
+ 0
+ ],
+ [
+ -87.887833,
+ 42.942499,
+ 0
+ ],
+ [
+ -87.887836,
+ 42.942496,
+ 0
+ ],
+ [
+ -87.88784,
+ 42.942493,
+ 0
+ ],
+ [
+ -87.887843,
+ 42.94249,
+ 0
+ ],
+ [
+ -87.887846,
+ 42.942486,
+ 0
+ ],
+ [
+ -87.88785,
+ 42.942483,
+ 0
+ ],
+ [
+ -87.887853,
+ 42.942483,
+ 0
+ ],
+ [
+ -87.887856,
+ 42.94248,
+ 0
+ ],
+ [
+ -87.887859,
+ 42.94248,
+ 0
+ ],
+ [
+ -87.887863,
+ 42.942477,
+ 0
+ ],
+ [
+ -87.887866,
+ 42.942477,
+ 0
+ ],
+ [
+ -87.887869,
+ 42.942477,
+ 0
+ ],
+ [
+ -87.887872,
+ 42.942473,
+ 0
+ ],
+ [
+ -87.887876,
+ 42.942473,
+ 0
+ ],
+ [
+ -87.887879,
+ 42.94247,
+ 0
+ ],
+ [
+ -87.887882,
+ 42.94247,
+ 0
+ ],
+ [
+ -87.887885,
+ 42.942467,
+ 0
+ ],
+ [
+ -87.887889,
+ 42.942467,
+ 0
+ ],
+ [
+ -87.887892,
+ 42.942464,
+ 0
+ ],
+ [
+ -87.887895,
+ 42.942464,
+ 0
+ ],
+ [
+ -87.887898,
+ 42.94246,
+ 0
+ ],
+ [
+ -87.887902,
+ 42.942457,
+ 0
+ ],
+ [
+ -87.887905,
+ 42.942457,
+ 0
+ ],
+ [
+ -87.887908,
+ 42.942454,
+ 0
+ ],
+ [
+ -87.887912,
+ 42.942454,
+ 0
+ ],
+ [
+ -87.887915,
+ 42.942451,
+ 0
+ ],
+ [
+ -87.887918,
+ 42.942451,
+ 0
+ ],
+ [
+ -87.887921,
+ 42.942447,
+ 0
+ ],
+ [
+ -87.887925,
+ 42.942447,
+ 0
+ ],
+ [
+ -87.887928,
+ 42.942447,
+ 0
+ ],
+ [
+ -87.887931,
+ 42.942447,
+ 0
+ ],
+ [
+ -87.887934,
+ 42.942447,
+ 0
+ ],
+ [
+ -87.887938,
+ 42.942444,
+ 0
+ ],
+ [
+ -87.887941,
+ 42.942444,
+ 0
+ ],
+ [
+ -87.887944,
+ 42.942444,
+ 0
+ ],
+ [
+ -87.887947,
+ 42.942444,
+ 0
+ ],
+ [
+ -87.887951,
+ 42.942444,
+ 0
+ ],
+ [
+ -87.887954,
+ 42.942441,
+ 0
+ ],
+ [
+ -87.887957,
+ 42.942441,
+ 0
+ ],
+ [
+ -87.88796,
+ 42.942441,
+ 0
+ ],
+ [
+ -87.887964,
+ 42.942441,
+ 0
+ ],
+ [
+ -87.887967,
+ 42.942441,
+ 0
+ ],
+ [
+ -87.88797,
+ 42.942441,
+ 0
+ ],
+ [
+ -87.887973,
+ 42.942441,
+ 0
+ ],
+ [
+ -87.887977,
+ 42.942441,
+ 0
+ ],
+ [
+ -87.88798,
+ 42.942441,
+ 0
+ ],
+ [
+ -87.887983,
+ 42.942441,
+ 0
+ ],
+ [
+ -87.887987,
+ 42.942437,
+ 0
+ ],
+ [
+ -87.88799,
+ 42.942437,
+ 0
+ ],
+ [
+ -87.887993,
+ 42.942437,
+ 0
+ ],
+ [
+ -87.887996,
+ 42.942437,
+ 0
+ ],
+ [
+ -87.888,
+ 42.942437,
+ 0
+ ],
+ [
+ -87.888003,
+ 42.942434,
+ 0
+ ],
+ [
+ -87.888006,
+ 42.942434,
+ 0
+ ],
+ [
+ -87.888009,
+ 42.942434,
+ 0
+ ],
+ [
+ -87.888013,
+ 42.942434,
+ 0
+ ],
+ [
+ -87.888016,
+ 42.942431,
+ 0
+ ],
+ [
+ -87.888019,
+ 42.942431,
+ 0
+ ],
+ [
+ -87.888022,
+ 42.942431,
+ 0
+ ],
+ [
+ -87.888026,
+ 42.942428,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.942428,
+ 0
+ ],
+ [
+ -87.888032,
+ 42.942424,
+ 0
+ ],
+ [
+ -87.888035,
+ 42.942421,
+ 0
+ ],
+ [
+ -87.888039,
+ 42.942418,
+ 0
+ ],
+ [
+ -87.888039,
+ 42.942415,
+ 0
+ ],
+ [
+ -87.888039,
+ 42.942411,
+ 0
+ ],
+ [
+ -87.888039,
+ 42.942408,
+ 0
+ ],
+ [
+ -87.888039,
+ 42.942405,
+ 0
+ ],
+ [
+ -87.888035,
+ 42.942402,
+ 0
+ ],
+ [
+ -87.888032,
+ 42.942398,
+ 0
+ ],
+ [
+ -87.888032,
+ 42.942395,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.942392,
+ 0
+ ],
+ [
+ -87.888026,
+ 42.942389,
+ 0
+ ],
+ [
+ -87.888022,
+ 42.942385,
+ 0
+ ],
+ [
+ -87.888019,
+ 42.942382,
+ 0
+ ],
+ [
+ -87.888019,
+ 42.942379,
+ 0
+ ],
+ [
+ -87.888019,
+ 42.942376,
+ 0
+ ],
+ [
+ -87.888019,
+ 42.942372,
+ 0
+ ],
+ [
+ -87.888019,
+ 42.942369,
+ 0
+ ],
+ [
+ -87.888022,
+ 42.942366,
+ 0
+ ],
+ [
+ -87.888022,
+ 42.942362,
+ 0
+ ],
+ [
+ -87.888026,
+ 42.942359,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.942356,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.942353,
+ 0
+ ],
+ [
+ -87.888032,
+ 42.942349,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.942346,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.942343,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.94234,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.942336,
+ 0
+ ],
+ [
+ -87.888026,
+ 42.942333,
+ 0
+ ],
+ [
+ -87.888022,
+ 42.94233,
+ 0
+ ],
+ [
+ -87.888019,
+ 42.94233,
+ 0
+ ],
+ [
+ -87.888016,
+ 42.942327,
+ 0
+ ],
+ [
+ -87.888013,
+ 42.942323,
+ 0
+ ],
+ [
+ -87.888009,
+ 42.94232,
+ 0
+ ],
+ [
+ -87.888006,
+ 42.94232,
+ 0
+ ],
+ [
+ -87.888003,
+ 42.94232,
+ 0
+ ],
+ [
+ -87.888,
+ 42.942317,
+ 0
+ ],
+ [
+ -87.887996,
+ 42.942317,
+ 0
+ ],
+ [
+ -87.887993,
+ 42.942314,
+ 0
+ ],
+ [
+ -87.88799,
+ 42.942314,
+ 0
+ ],
+ [
+ -87.887987,
+ 42.94231,
+ 0
+ ],
+ [
+ -87.887983,
+ 42.942307,
+ 0
+ ],
+ [
+ -87.88798,
+ 42.942304,
+ 0
+ ],
+ [
+ -87.887977,
+ 42.942301,
+ 0
+ ],
+ [
+ -87.887973,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.887973,
+ 42.942294,
+ 0
+ ],
+ [
+ -87.88797,
+ 42.942291,
+ 0
+ ],
+ [
+ -87.88797,
+ 42.942287,
+ 0
+ ],
+ [
+ -87.887967,
+ 42.942284,
+ 0
+ ],
+ [
+ -87.887964,
+ 42.942281,
+ 0
+ ],
+ [
+ -87.88796,
+ 42.942278,
+ 0
+ ],
+ [
+ -87.887957,
+ 42.942274,
+ 0
+ ],
+ [
+ -87.887954,
+ 42.942271,
+ 0
+ ],
+ [
+ -87.887954,
+ 42.942268,
+ 0
+ ],
+ [
+ -87.887951,
+ 42.942265,
+ 0
+ ],
+ [
+ -87.887951,
+ 42.942261,
+ 0
+ ],
+ [
+ -87.887947,
+ 42.942258,
+ 0
+ ],
+ [
+ -87.887947,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.887944,
+ 42.942252,
+ 0
+ ],
+ [
+ -87.887941,
+ 42.942248,
+ 0
+ ],
+ [
+ -87.887938,
+ 42.942245,
+ 0
+ ],
+ [
+ -87.887934,
+ 42.942242,
+ 0
+ ],
+ [
+ -87.887931,
+ 42.942239,
+ 0
+ ],
+ [
+ -87.887931,
+ 42.942235,
+ 0
+ ],
+ [
+ -87.887928,
+ 42.942232,
+ 0
+ ],
+ [
+ -87.887925,
+ 42.942229,
+ 0
+ ],
+ [
+ -87.887921,
+ 42.942229,
+ 0
+ ],
+ [
+ -87.887918,
+ 42.942225,
+ 0
+ ],
+ [
+ -87.887915,
+ 42.942225,
+ 0
+ ],
+ [
+ -87.887912,
+ 42.942222,
+ 0
+ ],
+ [
+ -87.887908,
+ 42.942219,
+ 0
+ ],
+ [
+ -87.887905,
+ 42.942216,
+ 0
+ ],
+ [
+ -87.887902,
+ 42.942212,
+ 0
+ ],
+ [
+ -87.887898,
+ 42.942212,
+ 0
+ ],
+ [
+ -87.887895,
+ 42.942209,
+ 0
+ ],
+ [
+ -87.887892,
+ 42.942206,
+ 0
+ ],
+ [
+ -87.887889,
+ 42.942206,
+ 0
+ ],
+ [
+ -87.887885,
+ 42.942203,
+ 0
+ ],
+ [
+ -87.887882,
+ 42.942199,
+ 0
+ ],
+ [
+ -87.887879,
+ 42.942199,
+ 0
+ ],
+ [
+ -87.887876,
+ 42.942196,
+ 0
+ ],
+ [
+ -87.887872,
+ 42.942196,
+ 0
+ ],
+ [
+ -87.887869,
+ 42.942196,
+ 0
+ ],
+ [
+ -87.887866,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887863,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887859,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887856,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887853,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.88785,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887846,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887843,
+ 42.94219,
+ 0
+ ],
+ [
+ -87.88784,
+ 42.94219,
+ 0
+ ],
+ [
+ -87.887836,
+ 42.94219,
+ 0
+ ],
+ [
+ -87.887833,
+ 42.94219,
+ 0
+ ],
+ [
+ -87.88783,
+ 42.942186,
+ 0
+ ],
+ [
+ -87.887827,
+ 42.942186,
+ 0
+ ],
+ [
+ -87.887823,
+ 42.942186,
+ 0
+ ],
+ [
+ -87.88782,
+ 42.942183,
+ 0
+ ],
+ [
+ -87.887817,
+ 42.942183,
+ 0
+ ],
+ [
+ -87.887814,
+ 42.942183,
+ 0
+ ],
+ [
+ -87.88781,
+ 42.94218,
+ 0
+ ],
+ [
+ -87.887807,
+ 42.94218,
+ 0
+ ],
+ [
+ -87.887804,
+ 42.942177,
+ 0
+ ],
+ [
+ -87.887801,
+ 42.942173,
+ 0
+ ],
+ [
+ -87.887797,
+ 42.942173,
+ 0
+ ],
+ [
+ -87.887794,
+ 42.94217,
+ 0
+ ],
+ [
+ -87.887791,
+ 42.94217,
+ 0
+ ],
+ [
+ -87.887788,
+ 42.942167,
+ 0
+ ],
+ [
+ -87.887784,
+ 42.942167,
+ 0
+ ],
+ [
+ -87.887781,
+ 42.942164,
+ 0
+ ],
+ [
+ -87.887778,
+ 42.94216,
+ 0
+ ],
+ [
+ -87.887775,
+ 42.94216,
+ 0
+ ],
+ [
+ -87.887771,
+ 42.942157,
+ 0
+ ],
+ [
+ -87.887768,
+ 42.942157,
+ 0
+ ],
+ [
+ -87.887765,
+ 42.942154,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942154,
+ 0
+ ],
+ [
+ -87.887758,
+ 42.94215,
+ 0
+ ],
+ [
+ -87.887755,
+ 42.94215,
+ 0
+ ],
+ [
+ -87.887752,
+ 42.94215,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.94215,
+ 0
+ ],
+ [
+ -87.887745,
+ 42.94215,
+ 0
+ ],
+ [
+ -87.887742,
+ 42.94215,
+ 0
+ ],
+ [
+ -87.887739,
+ 42.94215,
+ 0
+ ],
+ [
+ -87.887735,
+ 42.94215,
+ 0
+ ],
+ [
+ -87.887732,
+ 42.942154,
+ 0
+ ],
+ [
+ -87.887729,
+ 42.942157,
+ 0
+ ],
+ [
+ -87.887726,
+ 42.94216,
+ 0
+ ],
+ [
+ -87.887726,
+ 42.942164,
+ 0
+ ],
+ [
+ -87.887726,
+ 42.942167,
+ 0
+ ],
+ [
+ -87.887722,
+ 42.94217,
+ 0
+ ],
+ [
+ -87.887722,
+ 42.942173,
+ 0
+ ],
+ [
+ -87.887722,
+ 42.942177,
+ 0
+ ],
+ [
+ -87.887722,
+ 42.94218,
+ 0
+ ],
+ [
+ -87.887722,
+ 42.942183,
+ 0
+ ],
+ [
+ -87.887722,
+ 42.942186,
+ 0
+ ],
+ [
+ -87.887722,
+ 42.94219,
+ 0
+ ],
+ [
+ -87.887719,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887716,
+ 42.942196,
+ 0
+ ],
+ [
+ -87.887713,
+ 42.942199,
+ 0
+ ],
+ [
+ -87.887709,
+ 42.942203,
+ 0
+ ],
+ [
+ -87.887706,
+ 42.942206,
+ 0
+ ],
+ [
+ -87.887703,
+ 42.942206,
+ 0
+ ],
+ [
+ -87.887699,
+ 42.942209,
+ 0
+ ],
+ [
+ -87.887696,
+ 42.942212,
+ 0
+ ],
+ [
+ -87.887693,
+ 42.942216,
+ 0
+ ],
+ [
+ -87.88769,
+ 42.942216,
+ 0
+ ],
+ [
+ -87.887686,
+ 42.942219,
+ 0
+ ],
+ [
+ -87.887683,
+ 42.942219,
+ 0
+ ],
+ [
+ -87.88768,
+ 42.942222,
+ 0
+ ],
+ [
+ -87.887677,
+ 42.942222,
+ 0
+ ],
+ [
+ -87.887673,
+ 42.942225,
+ 0
+ ],
+ [
+ -87.88767,
+ 42.942225,
+ 0
+ ],
+ [
+ -87.887667,
+ 42.942229,
+ 0
+ ],
+ [
+ -87.887664,
+ 42.942229,
+ 0
+ ],
+ [
+ -87.88766,
+ 42.942229,
+ 0
+ ],
+ [
+ -87.887657,
+ 42.942232,
+ 0
+ ],
+ [
+ -87.887654,
+ 42.942235,
+ 0
+ ],
+ [
+ -87.887651,
+ 42.942239,
+ 0
+ ],
+ [
+ -87.887647,
+ 42.942242,
+ 0
+ ],
+ [
+ -87.887644,
+ 42.942245,
+ 0
+ ],
+ [
+ -87.887641,
+ 42.942248,
+ 0
+ ],
+ [
+ -87.887638,
+ 42.942252,
+ 0
+ ],
+ [
+ -87.887634,
+ 42.942252,
+ 0
+ ],
+ [
+ -87.887631,
+ 42.942252,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.887618,
+ 42.942258,
+ 0
+ ],
+ [
+ -87.887615,
+ 42.942258,
+ 0
+ ],
+ [
+ -87.887611,
+ 42.942258,
+ 0
+ ],
+ [
+ -87.887608,
+ 42.942261,
+ 0
+ ],
+ [
+ -87.887605,
+ 42.942261,
+ 0
+ ],
+ [
+ -87.887602,
+ 42.942261,
+ 0
+ ],
+ [
+ -87.887598,
+ 42.942261,
+ 0
+ ],
+ [
+ -87.887595,
+ 42.942258,
+ 0
+ ],
+ [
+ -87.887592,
+ 42.942258,
+ 0
+ ],
+ [
+ -87.887589,
+ 42.942258,
+ 0
+ ],
+ [
+ -87.887585,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.887582,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.887579,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.887576,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.887572,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.887569,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.887566,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.887563,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942258,
+ 0
+ ],
+ [
+ -87.887556,
+ 42.942258,
+ 0
+ ],
+ [
+ -87.887553,
+ 42.942261,
+ 0
+ ],
+ [
+ -87.887549,
+ 42.942265,
+ 0
+ ],
+ [
+ -87.887549,
+ 42.942268,
+ 0
+ ],
+ [
+ -87.887546,
+ 42.942271,
+ 0
+ ],
+ [
+ -87.887546,
+ 42.942274,
+ 0
+ ],
+ [
+ -87.887546,
+ 42.942278,
+ 0
+ ],
+ [
+ -87.887546,
+ 42.942281,
+ 0
+ ],
+ [
+ -87.887546,
+ 42.942284,
+ 0
+ ],
+ [
+ -87.887546,
+ 42.942287,
+ 0
+ ],
+ [
+ -87.887546,
+ 42.942291,
+ 0
+ ],
+ [
+ -87.887546,
+ 42.942294,
+ 0
+ ],
+ [
+ -87.887546,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.887546,
+ 42.942301,
+ 0
+ ],
+ [
+ -87.887549,
+ 42.942304,
+ 0
+ ],
+ [
+ -87.887549,
+ 42.942307,
+ 0
+ ],
+ [
+ -87.887549,
+ 42.94231,
+ 0
+ ],
+ [
+ -87.887553,
+ 42.942314,
+ 0
+ ],
+ [
+ -87.887553,
+ 42.942317,
+ 0
+ ],
+ [
+ -87.887553,
+ 42.94232,
+ 0
+ ],
+ [
+ -87.887556,
+ 42.942323,
+ 0
+ ],
+ [
+ -87.887556,
+ 42.942327,
+ 0
+ ],
+ [
+ -87.887556,
+ 42.94233,
+ 0
+ ],
+ [
+ -87.887556,
+ 42.942333,
+ 0
+ ],
+ [
+ -87.887556,
+ 42.942336,
+ 0
+ ],
+ [
+ -87.887556,
+ 42.94234,
+ 0
+ ],
+ [
+ -87.887556,
+ 42.942343,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942346,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942349,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942353,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942356,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942359,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942362,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942366,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942369,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942372,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942376,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942379,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942382,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942385,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942389,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942392,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942395,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942398,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942402,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942405,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942408,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942411,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942415,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942418,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942421,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942424,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942428,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942431,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942434,
+ 0
+ ],
+ [
+ -87.887559,
+ 42.942437,
+ 0
+ ],
+ [
+ -87.887563,
+ 42.942441,
+ 0
+ ],
+ [
+ -87.887563,
+ 42.942444,
+ 0
+ ],
+ [
+ -87.887566,
+ 42.942447,
+ 0
+ ],
+ [
+ -87.887566,
+ 42.942451,
+ 0
+ ],
+ [
+ -87.887569,
+ 42.942451,
+ 0
+ ],
+ [
+ -87.887572,
+ 42.942454,
+ 0
+ ],
+ [
+ -87.887576,
+ 42.942457,
+ 0
+ ],
+ [
+ -87.887579,
+ 42.942457,
+ 0
+ ],
+ [
+ -87.887582,
+ 42.94246,
+ 0
+ ],
+ [
+ -87.887585,
+ 42.942464,
+ 0
+ ],
+ [
+ -87.887589,
+ 42.942464,
+ 0
+ ],
+ [
+ -87.887592,
+ 42.942467,
+ 0
+ ],
+ [
+ -87.887595,
+ 42.942467,
+ 0
+ ],
+ [
+ -87.887598,
+ 42.942467,
+ 0
+ ],
+ [
+ -87.887602,
+ 42.94247,
+ 0
+ ],
+ [
+ -87.887605,
+ 42.942473,
+ 0
+ ],
+ [
+ -87.887608,
+ 42.942477,
+ 0
+ ],
+ [
+ -87.887611,
+ 42.94248,
+ 0
+ ],
+ [
+ -87.887615,
+ 42.942483,
+ 0
+ ],
+ [
+ -87.887618,
+ 42.942486,
+ 0
+ ],
+ [
+ -87.887621,
+ 42.942486,
+ 0
+ ],
+ [
+ -87.887624,
+ 42.942486,
+ 0
+ ],
+ [
+ -87.887628,
+ 42.942486,
+ 0
+ ],
+ [
+ -87.887631,
+ 42.942486,
+ 0
+ ],
+ [
+ -87.887634,
+ 42.942483,
+ 0
+ ],
+ [
+ -87.887638,
+ 42.942483,
+ 0
+ ],
+ [
+ -87.887641,
+ 42.942483,
+ 0
+ ],
+ [
+ -87.887644,
+ 42.942486,
+ 0
+ ],
+ [
+ -87.887647,
+ 42.942486,
+ 0
+ ],
+ [
+ -87.887651,
+ 42.94249,
+ 0
+ ],
+ [
+ -87.887654,
+ 42.94249,
+ 0
+ ],
+ [
+ -87.887657,
+ 42.94249,
+ 0
+ ],
+ [
+ -87.88766,
+ 42.942493,
+ 0
+ ],
+ [
+ -87.887664,
+ 42.942496,
+ 0
+ ],
+ [
+ -87.887667,
+ 42.942496,
+ 0
+ ],
+ [
+ -87.88767,
+ 42.942499,
+ 0
+ ],
+ [
+ -87.887673,
+ 42.942499,
+ 0
+ ],
+ [
+ -87.887677,
+ 42.942503,
+ 0
+ ],
+ [
+ -87.88768,
+ 42.942506,
+ 0
+ ],
+ [
+ -87.887683,
+ 42.942506,
+ 0
+ ],
+ [
+ -87.887686,
+ 42.942509,
+ 0
+ ],
+ [
+ -87.88769,
+ 42.942509,
+ 0
+ ],
+ [
+ -87.887693,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887696,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887699,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887703,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887706,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887709,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887713,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887716,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887719,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887722,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887726,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887729,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887732,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887735,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887739,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887742,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887745,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887752,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887755,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887758,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887765,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887768,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887771,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887775,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887778,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887781,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887784,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887788,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887791,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887794,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887797,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887797,
+ 42.942516,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "geom_imcoords": [
+ [
+ 250,
+ 166
+ ],
+ [
+ 249,
+ 167
+ ],
+ [
+ 248,
+ 167
+ ],
+ [
+ 247,
+ 167
+ ],
+ [
+ 246,
+ 167
+ ],
+ [
+ 245,
+ 167
+ ],
+ [
+ 244,
+ 167
+ ],
+ [
+ 243,
+ 167
+ ],
+ [
+ 242,
+ 167
+ ],
+ [
+ 241,
+ 168
+ ],
+ [
+ 240,
+ 169
+ ],
+ [
+ 239,
+ 170
+ ],
+ [
+ 239,
+ 171
+ ],
+ [
+ 238,
+ 172
+ ],
+ [
+ 237,
+ 173
+ ],
+ [
+ 236,
+ 174
+ ],
+ [
+ 235,
+ 175
+ ],
+ [
+ 234,
+ 176
+ ],
+ [
+ 233,
+ 176
+ ],
+ [
+ 232,
+ 177
+ ],
+ [
+ 231,
+ 177
+ ],
+ [
+ 230,
+ 178
+ ],
+ [
+ 229,
+ 178
+ ],
+ [
+ 228,
+ 178
+ ],
+ [
+ 227,
+ 179
+ ],
+ [
+ 226,
+ 179
+ ],
+ [
+ 225,
+ 180
+ ],
+ [
+ 224,
+ 180
+ ],
+ [
+ 223,
+ 181
+ ],
+ [
+ 222,
+ 181
+ ],
+ [
+ 221,
+ 182
+ ],
+ [
+ 220,
+ 182
+ ],
+ [
+ 219,
+ 183
+ ],
+ [
+ 218,
+ 184
+ ],
+ [
+ 217,
+ 184
+ ],
+ [
+ 216,
+ 185
+ ],
+ [
+ 215,
+ 185
+ ],
+ [
+ 214,
+ 186
+ ],
+ [
+ 213,
+ 186
+ ],
+ [
+ 212,
+ 187
+ ],
+ [
+ 211,
+ 187
+ ],
+ [
+ 210,
+ 187
+ ],
+ [
+ 209,
+ 187
+ ],
+ [
+ 208,
+ 187
+ ],
+ [
+ 207,
+ 188
+ ],
+ [
+ 206,
+ 188
+ ],
+ [
+ 205,
+ 188
+ ],
+ [
+ 204,
+ 188
+ ],
+ [
+ 203,
+ 188
+ ],
+ [
+ 202,
+ 189
+ ],
+ [
+ 201,
+ 189
+ ],
+ [
+ 200,
+ 189
+ ],
+ [
+ 199,
+ 189
+ ],
+ [
+ 198,
+ 189
+ ],
+ [
+ 197,
+ 189
+ ],
+ [
+ 196,
+ 189
+ ],
+ [
+ 195,
+ 189
+ ],
+ [
+ 194,
+ 189
+ ],
+ [
+ 193,
+ 189
+ ],
+ [
+ 192,
+ 190
+ ],
+ [
+ 191,
+ 190
+ ],
+ [
+ 190,
+ 190
+ ],
+ [
+ 189,
+ 190
+ ],
+ [
+ 188,
+ 190
+ ],
+ [
+ 187,
+ 191
+ ],
+ [
+ 186,
+ 191
+ ],
+ [
+ 185,
+ 191
+ ],
+ [
+ 184,
+ 191
+ ],
+ [
+ 183,
+ 192
+ ],
+ [
+ 182,
+ 192
+ ],
+ [
+ 181,
+ 192
+ ],
+ [
+ 180,
+ 193
+ ],
+ [
+ 179,
+ 193
+ ],
+ [
+ 178,
+ 194
+ ],
+ [
+ 177,
+ 195
+ ],
+ [
+ 176,
+ 196
+ ],
+ [
+ 176,
+ 197
+ ],
+ [
+ 176,
+ 198
+ ],
+ [
+ 176,
+ 199
+ ],
+ [
+ 176,
+ 200
+ ],
+ [
+ 177,
+ 201
+ ],
+ [
+ 178,
+ 202
+ ],
+ [
+ 178,
+ 203
+ ],
+ [
+ 179,
+ 204
+ ],
+ [
+ 180,
+ 205
+ ],
+ [
+ 181,
+ 206
+ ],
+ [
+ 182,
+ 207
+ ],
+ [
+ 182,
+ 208
+ ],
+ [
+ 182,
+ 209
+ ],
+ [
+ 182,
+ 210
+ ],
+ [
+ 182,
+ 211
+ ],
+ [
+ 181,
+ 212
+ ],
+ [
+ 181,
+ 213
+ ],
+ [
+ 180,
+ 214
+ ],
+ [
+ 179,
+ 215
+ ],
+ [
+ 179,
+ 216
+ ],
+ [
+ 178,
+ 217
+ ],
+ [
+ 179,
+ 218
+ ],
+ [
+ 179,
+ 219
+ ],
+ [
+ 179,
+ 220
+ ],
+ [
+ 179,
+ 221
+ ],
+ [
+ 180,
+ 222
+ ],
+ [
+ 181,
+ 223
+ ],
+ [
+ 182,
+ 223
+ ],
+ [
+ 183,
+ 224
+ ],
+ [
+ 184,
+ 225
+ ],
+ [
+ 185,
+ 226
+ ],
+ [
+ 186,
+ 226
+ ],
+ [
+ 187,
+ 226
+ ],
+ [
+ 188,
+ 227
+ ],
+ [
+ 189,
+ 227
+ ],
+ [
+ 190,
+ 228
+ ],
+ [
+ 191,
+ 228
+ ],
+ [
+ 192,
+ 229
+ ],
+ [
+ 193,
+ 230
+ ],
+ [
+ 194,
+ 231
+ ],
+ [
+ 195,
+ 232
+ ],
+ [
+ 196,
+ 233
+ ],
+ [
+ 196,
+ 234
+ ],
+ [
+ 197,
+ 235
+ ],
+ [
+ 197,
+ 236
+ ],
+ [
+ 198,
+ 237
+ ],
+ [
+ 199,
+ 238
+ ],
+ [
+ 200,
+ 239
+ ],
+ [
+ 201,
+ 240
+ ],
+ [
+ 202,
+ 241
+ ],
+ [
+ 202,
+ 242
+ ],
+ [
+ 203,
+ 243
+ ],
+ [
+ 203,
+ 244
+ ],
+ [
+ 204,
+ 245
+ ],
+ [
+ 204,
+ 246
+ ],
+ [
+ 205,
+ 247
+ ],
+ [
+ 206,
+ 248
+ ],
+ [
+ 207,
+ 249
+ ],
+ [
+ 208,
+ 250
+ ],
+ [
+ 209,
+ 251
+ ],
+ [
+ 209,
+ 252
+ ],
+ [
+ 210,
+ 253
+ ],
+ [
+ 211,
+ 254
+ ],
+ [
+ 212,
+ 254
+ ],
+ [
+ 213,
+ 255
+ ],
+ [
+ 214,
+ 255
+ ],
+ [
+ 215,
+ 256
+ ],
+ [
+ 216,
+ 257
+ ],
+ [
+ 217,
+ 258
+ ],
+ [
+ 218,
+ 259
+ ],
+ [
+ 219,
+ 259
+ ],
+ [
+ 220,
+ 260
+ ],
+ [
+ 221,
+ 261
+ ],
+ [
+ 222,
+ 261
+ ],
+ [
+ 223,
+ 262
+ ],
+ [
+ 224,
+ 263
+ ],
+ [
+ 225,
+ 263
+ ],
+ [
+ 226,
+ 264
+ ],
+ [
+ 227,
+ 264
+ ],
+ [
+ 228,
+ 264
+ ],
+ [
+ 229,
+ 265
+ ],
+ [
+ 230,
+ 265
+ ],
+ [
+ 231,
+ 265
+ ],
+ [
+ 232,
+ 265
+ ],
+ [
+ 233,
+ 265
+ ],
+ [
+ 234,
+ 265
+ ],
+ [
+ 235,
+ 265
+ ],
+ [
+ 236,
+ 266
+ ],
+ [
+ 237,
+ 266
+ ],
+ [
+ 238,
+ 266
+ ],
+ [
+ 239,
+ 266
+ ],
+ [
+ 240,
+ 267
+ ],
+ [
+ 241,
+ 267
+ ],
+ [
+ 242,
+ 267
+ ],
+ [
+ 243,
+ 268
+ ],
+ [
+ 244,
+ 268
+ ],
+ [
+ 245,
+ 268
+ ],
+ [
+ 246,
+ 269
+ ],
+ [
+ 247,
+ 269
+ ],
+ [
+ 248,
+ 270
+ ],
+ [
+ 249,
+ 271
+ ],
+ [
+ 250,
+ 271
+ ],
+ [
+ 251,
+ 272
+ ],
+ [
+ 252,
+ 272
+ ],
+ [
+ 253,
+ 273
+ ],
+ [
+ 254,
+ 273
+ ],
+ [
+ 255,
+ 274
+ ],
+ [
+ 256,
+ 275
+ ],
+ [
+ 257,
+ 275
+ ],
+ [
+ 258,
+ 276
+ ],
+ [
+ 259,
+ 276
+ ],
+ [
+ 260,
+ 277
+ ],
+ [
+ 261,
+ 277
+ ],
+ [
+ 262,
+ 278
+ ],
+ [
+ 263,
+ 278
+ ],
+ [
+ 264,
+ 278
+ ],
+ [
+ 265,
+ 278
+ ],
+ [
+ 266,
+ 278
+ ],
+ [
+ 267,
+ 278
+ ],
+ [
+ 268,
+ 278
+ ],
+ [
+ 269,
+ 278
+ ],
+ [
+ 270,
+ 277
+ ],
+ [
+ 271,
+ 276
+ ],
+ [
+ 272,
+ 275
+ ],
+ [
+ 272,
+ 274
+ ],
+ [
+ 272,
+ 273
+ ],
+ [
+ 273,
+ 272
+ ],
+ [
+ 273,
+ 271
+ ],
+ [
+ 273,
+ 270
+ ],
+ [
+ 273,
+ 269
+ ],
+ [
+ 273,
+ 268
+ ],
+ [
+ 273,
+ 267
+ ],
+ [
+ 273,
+ 266
+ ],
+ [
+ 274,
+ 265
+ ],
+ [
+ 275,
+ 264
+ ],
+ [
+ 276,
+ 263
+ ],
+ [
+ 277,
+ 262
+ ],
+ [
+ 278,
+ 261
+ ],
+ [
+ 279,
+ 261
+ ],
+ [
+ 280,
+ 260
+ ],
+ [
+ 281,
+ 259
+ ],
+ [
+ 282,
+ 258
+ ],
+ [
+ 283,
+ 258
+ ],
+ [
+ 284,
+ 257
+ ],
+ [
+ 285,
+ 257
+ ],
+ [
+ 286,
+ 256
+ ],
+ [
+ 287,
+ 256
+ ],
+ [
+ 288,
+ 255
+ ],
+ [
+ 289,
+ 255
+ ],
+ [
+ 290,
+ 254
+ ],
+ [
+ 291,
+ 254
+ ],
+ [
+ 292,
+ 254
+ ],
+ [
+ 293,
+ 253
+ ],
+ [
+ 294,
+ 252
+ ],
+ [
+ 295,
+ 251
+ ],
+ [
+ 296,
+ 250
+ ],
+ [
+ 297,
+ 249
+ ],
+ [
+ 298,
+ 248
+ ],
+ [
+ 299,
+ 247
+ ],
+ [
+ 300,
+ 247
+ ],
+ [
+ 301,
+ 247
+ ],
+ [
+ 302,
+ 246
+ ],
+ [
+ 303,
+ 246
+ ],
+ [
+ 304,
+ 246
+ ],
+ [
+ 305,
+ 245
+ ],
+ [
+ 306,
+ 245
+ ],
+ [
+ 307,
+ 245
+ ],
+ [
+ 308,
+ 244
+ ],
+ [
+ 309,
+ 244
+ ],
+ [
+ 310,
+ 244
+ ],
+ [
+ 311,
+ 244
+ ],
+ [
+ 312,
+ 245
+ ],
+ [
+ 313,
+ 245
+ ],
+ [
+ 314,
+ 245
+ ],
+ [
+ 315,
+ 246
+ ],
+ [
+ 316,
+ 246
+ ],
+ [
+ 317,
+ 246
+ ],
+ [
+ 318,
+ 246
+ ],
+ [
+ 319,
+ 246
+ ],
+ [
+ 320,
+ 246
+ ],
+ [
+ 321,
+ 246
+ ],
+ [
+ 322,
+ 246
+ ],
+ [
+ 323,
+ 245
+ ],
+ [
+ 324,
+ 245
+ ],
+ [
+ 325,
+ 244
+ ],
+ [
+ 326,
+ 243
+ ],
+ [
+ 326,
+ 242
+ ],
+ [
+ 327,
+ 241
+ ],
+ [
+ 327,
+ 240
+ ],
+ [
+ 327,
+ 239
+ ],
+ [
+ 327,
+ 238
+ ],
+ [
+ 327,
+ 237
+ ],
+ [
+ 327,
+ 236
+ ],
+ [
+ 327,
+ 235
+ ],
+ [
+ 327,
+ 234
+ ],
+ [
+ 327,
+ 233
+ ],
+ [
+ 327,
+ 232
+ ],
+ [
+ 326,
+ 231
+ ],
+ [
+ 326,
+ 230
+ ],
+ [
+ 326,
+ 229
+ ],
+ [
+ 325,
+ 228
+ ],
+ [
+ 325,
+ 227
+ ],
+ [
+ 325,
+ 226
+ ],
+ [
+ 324,
+ 225
+ ],
+ [
+ 324,
+ 224
+ ],
+ [
+ 324,
+ 223
+ ],
+ [
+ 324,
+ 222
+ ],
+ [
+ 324,
+ 221
+ ],
+ [
+ 324,
+ 220
+ ],
+ [
+ 324,
+ 219
+ ],
+ [
+ 323,
+ 218
+ ],
+ [
+ 323,
+ 217
+ ],
+ [
+ 323,
+ 216
+ ],
+ [
+ 323,
+ 215
+ ],
+ [
+ 323,
+ 214
+ ],
+ [
+ 323,
+ 213
+ ],
+ [
+ 323,
+ 212
+ ],
+ [
+ 323,
+ 211
+ ],
+ [
+ 323,
+ 210
+ ],
+ [
+ 323,
+ 209
+ ],
+ [
+ 323,
+ 208
+ ],
+ [
+ 323,
+ 207
+ ],
+ [
+ 323,
+ 206
+ ],
+ [
+ 323,
+ 205
+ ],
+ [
+ 323,
+ 204
+ ],
+ [
+ 323,
+ 203
+ ],
+ [
+ 323,
+ 202
+ ],
+ [
+ 323,
+ 201
+ ],
+ [
+ 323,
+ 200
+ ],
+ [
+ 323,
+ 199
+ ],
+ [
+ 323,
+ 198
+ ],
+ [
+ 323,
+ 197
+ ],
+ [
+ 323,
+ 196
+ ],
+ [
+ 323,
+ 195
+ ],
+ [
+ 323,
+ 194
+ ],
+ [
+ 323,
+ 193
+ ],
+ [
+ 323,
+ 192
+ ],
+ [
+ 323,
+ 191
+ ],
+ [
+ 323,
+ 190
+ ],
+ [
+ 322,
+ 189
+ ],
+ [
+ 322,
+ 188
+ ],
+ [
+ 321,
+ 187
+ ],
+ [
+ 321,
+ 186
+ ],
+ [
+ 320,
+ 186
+ ],
+ [
+ 319,
+ 185
+ ],
+ [
+ 318,
+ 184
+ ],
+ [
+ 317,
+ 184
+ ],
+ [
+ 316,
+ 183
+ ],
+ [
+ 315,
+ 182
+ ],
+ [
+ 314,
+ 182
+ ],
+ [
+ 313,
+ 181
+ ],
+ [
+ 312,
+ 181
+ ],
+ [
+ 311,
+ 181
+ ],
+ [
+ 310,
+ 180
+ ],
+ [
+ 309,
+ 179
+ ],
+ [
+ 308,
+ 178
+ ],
+ [
+ 307,
+ 177
+ ],
+ [
+ 306,
+ 176
+ ],
+ [
+ 305,
+ 175
+ ],
+ [
+ 304,
+ 175
+ ],
+ [
+ 303,
+ 175
+ ],
+ [
+ 302,
+ 175
+ ],
+ [
+ 301,
+ 175
+ ],
+ [
+ 300,
+ 176
+ ],
+ [
+ 299,
+ 176
+ ],
+ [
+ 298,
+ 176
+ ],
+ [
+ 297,
+ 175
+ ],
+ [
+ 296,
+ 175
+ ],
+ [
+ 295,
+ 174
+ ],
+ [
+ 294,
+ 174
+ ],
+ [
+ 293,
+ 174
+ ],
+ [
+ 292,
+ 173
+ ],
+ [
+ 291,
+ 172
+ ],
+ [
+ 290,
+ 172
+ ],
+ [
+ 289,
+ 171
+ ],
+ [
+ 288,
+ 171
+ ],
+ [
+ 287,
+ 170
+ ],
+ [
+ 286,
+ 169
+ ],
+ [
+ 285,
+ 169
+ ],
+ [
+ 284,
+ 168
+ ],
+ [
+ 283,
+ 168
+ ],
+ [
+ 282,
+ 167
+ ],
+ [
+ 281,
+ 167
+ ],
+ [
+ 280,
+ 167
+ ],
+ [
+ 279,
+ 167
+ ],
+ [
+ 278,
+ 167
+ ],
+ [
+ 277,
+ 167
+ ],
+ [
+ 276,
+ 167
+ ],
+ [
+ 275,
+ 167
+ ],
+ [
+ 274,
+ 167
+ ],
+ [
+ 273,
+ 167
+ ],
+ [
+ 272,
+ 167
+ ],
+ [
+ 271,
+ 167
+ ],
+ [
+ 270,
+ 167
+ ],
+ [
+ 269,
+ 167
+ ],
+ [
+ 268,
+ 167
+ ],
+ [
+ 267,
+ 167
+ ],
+ [
+ 266,
+ 167
+ ],
+ [
+ 265,
+ 167
+ ],
+ [
+ 264,
+ 167
+ ],
+ [
+ 263,
+ 167
+ ],
+ [
+ 262,
+ 167
+ ],
+ [
+ 261,
+ 166
+ ],
+ [
+ 260,
+ 166
+ ],
+ [
+ 259,
+ 166
+ ],
+ [
+ 258,
+ 166
+ ],
+ [
+ 257,
+ 166
+ ],
+ [
+ 256,
+ 166
+ ],
+ [
+ 255,
+ 166
+ ],
+ [
+ 254,
+ 166
+ ],
+ [
+ 253,
+ 166
+ ],
+ [
+ 252,
+ 166
+ ],
+ [
+ 251,
+ 166
+ ],
+ [
+ 250,
+ 166
+ ]
+ ],
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 250,
+ 166
+ ],
+ [
+ 249,
+ 167
+ ],
+ [
+ 248,
+ 167
+ ],
+ [
+ 247,
+ 167
+ ],
+ [
+ 246,
+ 167
+ ],
+ [
+ 245,
+ 167
+ ],
+ [
+ 244,
+ 167
+ ],
+ [
+ 243,
+ 167
+ ],
+ [
+ 242,
+ 167
+ ],
+ [
+ 241,
+ 168
+ ],
+ [
+ 240,
+ 169
+ ],
+ [
+ 239,
+ 170
+ ],
+ [
+ 239,
+ 171
+ ],
+ [
+ 238,
+ 172
+ ],
+ [
+ 237,
+ 173
+ ],
+ [
+ 236,
+ 174
+ ],
+ [
+ 235,
+ 175
+ ],
+ [
+ 234,
+ 176
+ ],
+ [
+ 233,
+ 176
+ ],
+ [
+ 232,
+ 177
+ ],
+ [
+ 231,
+ 177
+ ],
+ [
+ 230,
+ 178
+ ],
+ [
+ 229,
+ 178
+ ],
+ [
+ 228,
+ 178
+ ],
+ [
+ 227,
+ 179
+ ],
+ [
+ 226,
+ 179
+ ],
+ [
+ 225,
+ 180
+ ],
+ [
+ 224,
+ 180
+ ],
+ [
+ 223,
+ 181
+ ],
+ [
+ 222,
+ 181
+ ],
+ [
+ 221,
+ 182
+ ],
+ [
+ 220,
+ 182
+ ],
+ [
+ 219,
+ 183
+ ],
+ [
+ 218,
+ 184
+ ],
+ [
+ 217,
+ 184
+ ],
+ [
+ 216,
+ 185
+ ],
+ [
+ 215,
+ 185
+ ],
+ [
+ 214,
+ 186
+ ],
+ [
+ 213,
+ 186
+ ],
+ [
+ 212,
+ 187
+ ],
+ [
+ 211,
+ 187
+ ],
+ [
+ 210,
+ 187
+ ],
+ [
+ 209,
+ 187
+ ],
+ [
+ 208,
+ 187
+ ],
+ [
+ 207,
+ 188
+ ],
+ [
+ 206,
+ 188
+ ],
+ [
+ 205,
+ 188
+ ],
+ [
+ 204,
+ 188
+ ],
+ [
+ 203,
+ 188
+ ],
+ [
+ 202,
+ 189
+ ],
+ [
+ 201,
+ 189
+ ],
+ [
+ 200,
+ 189
+ ],
+ [
+ 199,
+ 189
+ ],
+ [
+ 198,
+ 189
+ ],
+ [
+ 197,
+ 189
+ ],
+ [
+ 196,
+ 189
+ ],
+ [
+ 195,
+ 189
+ ],
+ [
+ 194,
+ 189
+ ],
+ [
+ 193,
+ 189
+ ],
+ [
+ 192,
+ 190
+ ],
+ [
+ 191,
+ 190
+ ],
+ [
+ 190,
+ 190
+ ],
+ [
+ 189,
+ 190
+ ],
+ [
+ 188,
+ 190
+ ],
+ [
+ 187,
+ 191
+ ],
+ [
+ 186,
+ 191
+ ],
+ [
+ 185,
+ 191
+ ],
+ [
+ 184,
+ 191
+ ],
+ [
+ 183,
+ 192
+ ],
+ [
+ 182,
+ 192
+ ],
+ [
+ 181,
+ 192
+ ],
+ [
+ 180,
+ 193
+ ],
+ [
+ 179,
+ 193
+ ],
+ [
+ 178,
+ 194
+ ],
+ [
+ 177,
+ 195
+ ],
+ [
+ 176,
+ 196
+ ],
+ [
+ 176,
+ 197
+ ],
+ [
+ 176,
+ 198
+ ],
+ [
+ 176,
+ 199
+ ],
+ [
+ 176,
+ 200
+ ],
+ [
+ 177,
+ 201
+ ],
+ [
+ 178,
+ 202
+ ],
+ [
+ 178,
+ 203
+ ],
+ [
+ 179,
+ 204
+ ],
+ [
+ 180,
+ 205
+ ],
+ [
+ 181,
+ 206
+ ],
+ [
+ 182,
+ 207
+ ],
+ [
+ 182,
+ 208
+ ],
+ [
+ 182,
+ 209
+ ],
+ [
+ 182,
+ 210
+ ],
+ [
+ 182,
+ 211
+ ],
+ [
+ 181,
+ 212
+ ],
+ [
+ 181,
+ 213
+ ],
+ [
+ 180,
+ 214
+ ],
+ [
+ 179,
+ 215
+ ],
+ [
+ 179,
+ 216
+ ],
+ [
+ 178,
+ 217
+ ],
+ [
+ 179,
+ 218
+ ],
+ [
+ 179,
+ 219
+ ],
+ [
+ 179,
+ 220
+ ],
+ [
+ 179,
+ 221
+ ],
+ [
+ 180,
+ 222
+ ],
+ [
+ 181,
+ 223
+ ],
+ [
+ 182,
+ 223
+ ],
+ [
+ 183,
+ 224
+ ],
+ [
+ 184,
+ 225
+ ],
+ [
+ 185,
+ 226
+ ],
+ [
+ 186,
+ 226
+ ],
+ [
+ 187,
+ 226
+ ],
+ [
+ 188,
+ 227
+ ],
+ [
+ 189,
+ 227
+ ],
+ [
+ 190,
+ 228
+ ],
+ [
+ 191,
+ 228
+ ],
+ [
+ 192,
+ 229
+ ],
+ [
+ 193,
+ 230
+ ],
+ [
+ 194,
+ 231
+ ],
+ [
+ 195,
+ 232
+ ],
+ [
+ 196,
+ 233
+ ],
+ [
+ 196,
+ 234
+ ],
+ [
+ 197,
+ 235
+ ],
+ [
+ 197,
+ 236
+ ],
+ [
+ 198,
+ 237
+ ],
+ [
+ 199,
+ 238
+ ],
+ [
+ 200,
+ 239
+ ],
+ [
+ 201,
+ 240
+ ],
+ [
+ 202,
+ 241
+ ],
+ [
+ 202,
+ 242
+ ],
+ [
+ 203,
+ 243
+ ],
+ [
+ 203,
+ 244
+ ],
+ [
+ 204,
+ 245
+ ],
+ [
+ 204,
+ 246
+ ],
+ [
+ 205,
+ 247
+ ],
+ [
+ 206,
+ 248
+ ],
+ [
+ 207,
+ 249
+ ],
+ [
+ 208,
+ 250
+ ],
+ [
+ 209,
+ 251
+ ],
+ [
+ 209,
+ 252
+ ],
+ [
+ 210,
+ 253
+ ],
+ [
+ 211,
+ 254
+ ],
+ [
+ 212,
+ 254
+ ],
+ [
+ 213,
+ 255
+ ],
+ [
+ 214,
+ 255
+ ],
+ [
+ 215,
+ 256
+ ],
+ [
+ 216,
+ 257
+ ],
+ [
+ 217,
+ 258
+ ],
+ [
+ 218,
+ 259
+ ],
+ [
+ 219,
+ 259
+ ],
+ [
+ 220,
+ 260
+ ],
+ [
+ 221,
+ 261
+ ],
+ [
+ 222,
+ 261
+ ],
+ [
+ 223,
+ 262
+ ],
+ [
+ 224,
+ 263
+ ],
+ [
+ 225,
+ 263
+ ],
+ [
+ 226,
+ 264
+ ],
+ [
+ 227,
+ 264
+ ],
+ [
+ 228,
+ 264
+ ],
+ [
+ 229,
+ 265
+ ],
+ [
+ 230,
+ 265
+ ],
+ [
+ 231,
+ 265
+ ],
+ [
+ 232,
+ 265
+ ],
+ [
+ 233,
+ 265
+ ],
+ [
+ 234,
+ 265
+ ],
+ [
+ 235,
+ 265
+ ],
+ [
+ 236,
+ 266
+ ],
+ [
+ 237,
+ 266
+ ],
+ [
+ 238,
+ 266
+ ],
+ [
+ 239,
+ 266
+ ],
+ [
+ 240,
+ 267
+ ],
+ [
+ 241,
+ 267
+ ],
+ [
+ 242,
+ 267
+ ],
+ [
+ 243,
+ 268
+ ],
+ [
+ 244,
+ 268
+ ],
+ [
+ 245,
+ 268
+ ],
+ [
+ 246,
+ 269
+ ],
+ [
+ 247,
+ 269
+ ],
+ [
+ 248,
+ 270
+ ],
+ [
+ 249,
+ 271
+ ],
+ [
+ 250,
+ 271
+ ],
+ [
+ 251,
+ 272
+ ],
+ [
+ 252,
+ 272
+ ],
+ [
+ 253,
+ 273
+ ],
+ [
+ 254,
+ 273
+ ],
+ [
+ 255,
+ 274
+ ],
+ [
+ 256,
+ 275
+ ],
+ [
+ 257,
+ 275
+ ],
+ [
+ 258,
+ 276
+ ],
+ [
+ 259,
+ 276
+ ],
+ [
+ 260,
+ 277
+ ],
+ [
+ 261,
+ 277
+ ],
+ [
+ 262,
+ 278
+ ],
+ [
+ 263,
+ 278
+ ],
+ [
+ 264,
+ 278
+ ],
+ [
+ 265,
+ 278
+ ],
+ [
+ 266,
+ 278
+ ],
+ [
+ 267,
+ 278
+ ],
+ [
+ 268,
+ 278
+ ],
+ [
+ 269,
+ 278
+ ],
+ [
+ 270,
+ 277
+ ],
+ [
+ 271,
+ 276
+ ],
+ [
+ 272,
+ 275
+ ],
+ [
+ 272,
+ 274
+ ],
+ [
+ 272,
+ 273
+ ],
+ [
+ 273,
+ 272
+ ],
+ [
+ 273,
+ 271
+ ],
+ [
+ 273,
+ 270
+ ],
+ [
+ 273,
+ 269
+ ],
+ [
+ 273,
+ 268
+ ],
+ [
+ 273,
+ 267
+ ],
+ [
+ 273,
+ 266
+ ],
+ [
+ 274,
+ 265
+ ],
+ [
+ 275,
+ 264
+ ],
+ [
+ 276,
+ 263
+ ],
+ [
+ 277,
+ 262
+ ],
+ [
+ 278,
+ 261
+ ],
+ [
+ 279,
+ 261
+ ],
+ [
+ 280,
+ 260
+ ],
+ [
+ 281,
+ 259
+ ],
+ [
+ 282,
+ 258
+ ],
+ [
+ 283,
+ 258
+ ],
+ [
+ 284,
+ 257
+ ],
+ [
+ 285,
+ 257
+ ],
+ [
+ 286,
+ 256
+ ],
+ [
+ 287,
+ 256
+ ],
+ [
+ 288,
+ 255
+ ],
+ [
+ 289,
+ 255
+ ],
+ [
+ 290,
+ 254
+ ],
+ [
+ 291,
+ 254
+ ],
+ [
+ 292,
+ 254
+ ],
+ [
+ 293,
+ 253
+ ],
+ [
+ 294,
+ 252
+ ],
+ [
+ 295,
+ 251
+ ],
+ [
+ 296,
+ 250
+ ],
+ [
+ 297,
+ 249
+ ],
+ [
+ 298,
+ 248
+ ],
+ [
+ 299,
+ 247
+ ],
+ [
+ 300,
+ 247
+ ],
+ [
+ 301,
+ 247
+ ],
+ [
+ 302,
+ 246
+ ],
+ [
+ 303,
+ 246
+ ],
+ [
+ 304,
+ 246
+ ],
+ [
+ 305,
+ 245
+ ],
+ [
+ 306,
+ 245
+ ],
+ [
+ 307,
+ 245
+ ],
+ [
+ 308,
+ 244
+ ],
+ [
+ 309,
+ 244
+ ],
+ [
+ 310,
+ 244
+ ],
+ [
+ 311,
+ 244
+ ],
+ [
+ 312,
+ 245
+ ],
+ [
+ 313,
+ 245
+ ],
+ [
+ 314,
+ 245
+ ],
+ [
+ 315,
+ 246
+ ],
+ [
+ 316,
+ 246
+ ],
+ [
+ 317,
+ 246
+ ],
+ [
+ 318,
+ 246
+ ],
+ [
+ 319,
+ 246
+ ],
+ [
+ 320,
+ 246
+ ],
+ [
+ 321,
+ 246
+ ],
+ [
+ 322,
+ 246
+ ],
+ [
+ 323,
+ 245
+ ],
+ [
+ 324,
+ 245
+ ],
+ [
+ 325,
+ 244
+ ],
+ [
+ 326,
+ 243
+ ],
+ [
+ 326,
+ 242
+ ],
+ [
+ 327,
+ 241
+ ],
+ [
+ 327,
+ 240
+ ],
+ [
+ 327,
+ 239
+ ],
+ [
+ 327,
+ 238
+ ],
+ [
+ 327,
+ 237
+ ],
+ [
+ 327,
+ 236
+ ],
+ [
+ 327,
+ 235
+ ],
+ [
+ 327,
+ 234
+ ],
+ [
+ 327,
+ 233
+ ],
+ [
+ 327,
+ 232
+ ],
+ [
+ 326,
+ 231
+ ],
+ [
+ 326,
+ 230
+ ],
+ [
+ 326,
+ 229
+ ],
+ [
+ 325,
+ 228
+ ],
+ [
+ 325,
+ 227
+ ],
+ [
+ 325,
+ 226
+ ],
+ [
+ 324,
+ 225
+ ],
+ [
+ 324,
+ 224
+ ],
+ [
+ 324,
+ 223
+ ],
+ [
+ 324,
+ 222
+ ],
+ [
+ 324,
+ 221
+ ],
+ [
+ 324,
+ 220
+ ],
+ [
+ 324,
+ 219
+ ],
+ [
+ 323,
+ 218
+ ],
+ [
+ 323,
+ 217
+ ],
+ [
+ 323,
+ 216
+ ],
+ [
+ 323,
+ 215
+ ],
+ [
+ 323,
+ 214
+ ],
+ [
+ 323,
+ 213
+ ],
+ [
+ 323,
+ 212
+ ],
+ [
+ 323,
+ 211
+ ],
+ [
+ 323,
+ 210
+ ],
+ [
+ 323,
+ 209
+ ],
+ [
+ 323,
+ 208
+ ],
+ [
+ 323,
+ 207
+ ],
+ [
+ 323,
+ 206
+ ],
+ [
+ 323,
+ 205
+ ],
+ [
+ 323,
+ 204
+ ],
+ [
+ 323,
+ 203
+ ],
+ [
+ 323,
+ 202
+ ],
+ [
+ 323,
+ 201
+ ],
+ [
+ 323,
+ 200
+ ],
+ [
+ 323,
+ 199
+ ],
+ [
+ 323,
+ 198
+ ],
+ [
+ 323,
+ 197
+ ],
+ [
+ 323,
+ 196
+ ],
+ [
+ 323,
+ 195
+ ],
+ [
+ 323,
+ 194
+ ],
+ [
+ 323,
+ 193
+ ],
+ [
+ 323,
+ 192
+ ],
+ [
+ 323,
+ 191
+ ],
+ [
+ 323,
+ 190
+ ],
+ [
+ 322,
+ 189
+ ],
+ [
+ 322,
+ 188
+ ],
+ [
+ 321,
+ 187
+ ],
+ [
+ 321,
+ 186
+ ],
+ [
+ 320,
+ 186
+ ],
+ [
+ 319,
+ 185
+ ],
+ [
+ 318,
+ 184
+ ],
+ [
+ 317,
+ 184
+ ],
+ [
+ 316,
+ 183
+ ],
+ [
+ 315,
+ 182
+ ],
+ [
+ 314,
+ 182
+ ],
+ [
+ 313,
+ 181
+ ],
+ [
+ 312,
+ 181
+ ],
+ [
+ 311,
+ 181
+ ],
+ [
+ 310,
+ 180
+ ],
+ [
+ 309,
+ 179
+ ],
+ [
+ 308,
+ 178
+ ],
+ [
+ 307,
+ 177
+ ],
+ [
+ 306,
+ 176
+ ],
+ [
+ 305,
+ 175
+ ],
+ [
+ 304,
+ 175
+ ],
+ [
+ 303,
+ 175
+ ],
+ [
+ 302,
+ 175
+ ],
+ [
+ 301,
+ 175
+ ],
+ [
+ 300,
+ 176
+ ],
+ [
+ 299,
+ 176
+ ],
+ [
+ 298,
+ 176
+ ],
+ [
+ 297,
+ 175
+ ],
+ [
+ 296,
+ 175
+ ],
+ [
+ 295,
+ 174
+ ],
+ [
+ 294,
+ 174
+ ],
+ [
+ 293,
+ 174
+ ],
+ [
+ 292,
+ 173
+ ],
+ [
+ 291,
+ 172
+ ],
+ [
+ 290,
+ 172
+ ],
+ [
+ 289,
+ 171
+ ],
+ [
+ 288,
+ 171
+ ],
+ [
+ 287,
+ 170
+ ],
+ [
+ 286,
+ 169
+ ],
+ [
+ 285,
+ 169
+ ],
+ [
+ 284,
+ 168
+ ],
+ [
+ 283,
+ 168
+ ],
+ [
+ 282,
+ 167
+ ],
+ [
+ 281,
+ 167
+ ],
+ [
+ 280,
+ 167
+ ],
+ [
+ 279,
+ 167
+ ],
+ [
+ 278,
+ 167
+ ],
+ [
+ 277,
+ 167
+ ],
+ [
+ 276,
+ 167
+ ],
+ [
+ 275,
+ 167
+ ],
+ [
+ 274,
+ 167
+ ],
+ [
+ 273,
+ 167
+ ],
+ [
+ 272,
+ 167
+ ],
+ [
+ 271,
+ 167
+ ],
+ [
+ 270,
+ 167
+ ],
+ [
+ 269,
+ 167
+ ],
+ [
+ 268,
+ 167
+ ],
+ [
+ 267,
+ 167
+ ],
+ [
+ 266,
+ 167
+ ],
+ [
+ 265,
+ 167
+ ],
+ [
+ 264,
+ 167
+ ],
+ [
+ 263,
+ 167
+ ],
+ [
+ 262,
+ 167
+ ],
+ [
+ 261,
+ 166
+ ],
+ [
+ 260,
+ 166
+ ],
+ [
+ 259,
+ 166
+ ],
+ [
+ 258,
+ 166
+ ],
+ [
+ 257,
+ 166
+ ],
+ [
+ 256,
+ 166
+ ],
+ [
+ 255,
+ 166
+ ],
+ [
+ 254,
+ 166
+ ],
+ [
+ 253,
+ 166
+ ],
+ [
+ 252,
+ 166
+ ],
+ [
+ 251,
+ 166
+ ],
+ [
+ 250,
+ 166
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "aircraft",
+ "detectionScore": 0.9863030314445496
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -87.88777702214225,
+ "center_latitude": 42.942349139747705,
+ "inferenceMetadata": {
+ "jobId": "8f96a35c-b5db-4ba7-a66d-be284ff3d7bc",
+ "filePath": "s3://test-images-409719124294/tile.ntf",
+ "receiveTime": "2023-11-10T19:24:57.458017",
+ "inferenceTime": "2023-11-10T19:24:58.097508+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "VIS",
+ "metadata": {
+ "sourceId": "",
+ "sourceDt": "2002-12-16T15:16:29",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ }
+ ]
+}
diff --git a/src/data/aircraft.tile.png.geojson b/src/data/aircraft.tile.png.geojson
new file mode 100644
index 0000000..b8cb5af
--- /dev/null
+++ b/src/data/aircraft.tile.png.geojson
@@ -0,0 +1,6313 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "id": "3b790985-ff64-44f1-8619-a62bd3b02732",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 0,
+ 0
+ ]
+ },
+ "properties": {
+ "geom_imcoords": [
+ [
+ 226,
+ 317
+ ],
+ [
+ 225,
+ 318
+ ],
+ [
+ 224,
+ 318
+ ],
+ [
+ 223,
+ 318
+ ],
+ [
+ 222,
+ 318
+ ],
+ [
+ 221,
+ 318
+ ],
+ [
+ 221,
+ 319
+ ],
+ [
+ 220,
+ 320
+ ],
+ [
+ 219,
+ 321
+ ],
+ [
+ 218,
+ 322
+ ],
+ [
+ 217,
+ 323
+ ],
+ [
+ 216,
+ 324
+ ],
+ [
+ 215,
+ 325
+ ],
+ [
+ 214,
+ 326
+ ],
+ [
+ 213,
+ 327
+ ],
+ [
+ 212,
+ 328
+ ],
+ [
+ 211,
+ 328
+ ],
+ [
+ 210,
+ 328
+ ],
+ [
+ 209,
+ 329
+ ],
+ [
+ 208,
+ 329
+ ],
+ [
+ 207,
+ 330
+ ],
+ [
+ 206,
+ 330
+ ],
+ [
+ 205,
+ 331
+ ],
+ [
+ 204,
+ 331
+ ],
+ [
+ 203,
+ 332
+ ],
+ [
+ 202,
+ 332
+ ],
+ [
+ 201,
+ 333
+ ],
+ [
+ 200,
+ 333
+ ],
+ [
+ 199,
+ 334
+ ],
+ [
+ 198,
+ 334
+ ],
+ [
+ 197,
+ 335
+ ],
+ [
+ 196,
+ 335
+ ],
+ [
+ 195,
+ 336
+ ],
+ [
+ 194,
+ 336
+ ],
+ [
+ 193,
+ 337
+ ],
+ [
+ 192,
+ 337
+ ],
+ [
+ 191,
+ 338
+ ],
+ [
+ 190,
+ 338
+ ],
+ [
+ 189,
+ 339
+ ],
+ [
+ 188,
+ 339
+ ],
+ [
+ 187,
+ 339
+ ],
+ [
+ 186,
+ 339
+ ],
+ [
+ 185,
+ 339
+ ],
+ [
+ 184,
+ 339
+ ],
+ [
+ 183,
+ 340
+ ],
+ [
+ 182,
+ 340
+ ],
+ [
+ 181,
+ 340
+ ],
+ [
+ 180,
+ 340
+ ],
+ [
+ 179,
+ 340
+ ],
+ [
+ 178,
+ 340
+ ],
+ [
+ 177,
+ 341
+ ],
+ [
+ 176,
+ 341
+ ],
+ [
+ 175,
+ 341
+ ],
+ [
+ 174,
+ 341
+ ],
+ [
+ 173,
+ 341
+ ],
+ [
+ 172,
+ 341
+ ],
+ [
+ 171,
+ 341
+ ],
+ [
+ 170,
+ 341
+ ],
+ [
+ 169,
+ 341
+ ],
+ [
+ 168,
+ 342
+ ],
+ [
+ 167,
+ 342
+ ],
+ [
+ 166,
+ 342
+ ],
+ [
+ 165,
+ 342
+ ],
+ [
+ 164,
+ 343
+ ],
+ [
+ 163,
+ 343
+ ],
+ [
+ 162,
+ 343
+ ],
+ [
+ 161,
+ 344
+ ],
+ [
+ 160,
+ 344
+ ],
+ [
+ 159,
+ 344
+ ],
+ [
+ 158,
+ 345
+ ],
+ [
+ 157,
+ 345
+ ],
+ [
+ 156,
+ 346
+ ],
+ [
+ 155,
+ 346
+ ],
+ [
+ 154,
+ 347
+ ],
+ [
+ 153,
+ 348
+ ],
+ [
+ 153,
+ 349
+ ],
+ [
+ 152,
+ 350
+ ],
+ [
+ 152,
+ 351
+ ],
+ [
+ 152,
+ 352
+ ],
+ [
+ 153,
+ 353
+ ],
+ [
+ 153,
+ 354
+ ],
+ [
+ 153,
+ 355
+ ],
+ [
+ 154,
+ 356
+ ],
+ [
+ 155,
+ 357
+ ],
+ [
+ 156,
+ 358
+ ],
+ [
+ 157,
+ 358
+ ],
+ [
+ 158,
+ 359
+ ],
+ [
+ 158,
+ 360
+ ],
+ [
+ 158,
+ 361
+ ],
+ [
+ 158,
+ 362
+ ],
+ [
+ 158,
+ 363
+ ],
+ [
+ 157,
+ 364
+ ],
+ [
+ 156,
+ 365
+ ],
+ [
+ 156,
+ 366
+ ],
+ [
+ 155,
+ 367
+ ],
+ [
+ 155,
+ 368
+ ],
+ [
+ 155,
+ 369
+ ],
+ [
+ 155,
+ 370
+ ],
+ [
+ 155,
+ 371
+ ],
+ [
+ 155,
+ 372
+ ],
+ [
+ 156,
+ 372
+ ],
+ [
+ 157,
+ 373
+ ],
+ [
+ 158,
+ 374
+ ],
+ [
+ 159,
+ 375
+ ],
+ [
+ 160,
+ 376
+ ],
+ [
+ 161,
+ 376
+ ],
+ [
+ 162,
+ 377
+ ],
+ [
+ 163,
+ 377
+ ],
+ [
+ 164,
+ 377
+ ],
+ [
+ 165,
+ 378
+ ],
+ [
+ 166,
+ 378
+ ],
+ [
+ 167,
+ 379
+ ],
+ [
+ 168,
+ 379
+ ],
+ [
+ 169,
+ 380
+ ],
+ [
+ 169,
+ 381
+ ],
+ [
+ 170,
+ 382
+ ],
+ [
+ 171,
+ 383
+ ],
+ [
+ 172,
+ 384
+ ],
+ [
+ 173,
+ 385
+ ],
+ [
+ 174,
+ 386
+ ],
+ [
+ 174,
+ 387
+ ],
+ [
+ 175,
+ 388
+ ],
+ [
+ 176,
+ 389
+ ],
+ [
+ 177,
+ 390
+ ],
+ [
+ 178,
+ 391
+ ],
+ [
+ 179,
+ 392
+ ],
+ [
+ 180,
+ 393
+ ],
+ [
+ 180,
+ 394
+ ],
+ [
+ 181,
+ 395
+ ],
+ [
+ 181,
+ 396
+ ],
+ [
+ 182,
+ 397
+ ],
+ [
+ 183,
+ 398
+ ],
+ [
+ 184,
+ 399
+ ],
+ [
+ 185,
+ 400
+ ],
+ [
+ 186,
+ 401
+ ],
+ [
+ 187,
+ 402
+ ],
+ [
+ 188,
+ 402
+ ],
+ [
+ 189,
+ 403
+ ],
+ [
+ 190,
+ 404
+ ],
+ [
+ 191,
+ 405
+ ],
+ [
+ 192,
+ 405
+ ],
+ [
+ 193,
+ 406
+ ],
+ [
+ 194,
+ 406
+ ],
+ [
+ 195,
+ 407
+ ],
+ [
+ 196,
+ 408
+ ],
+ [
+ 197,
+ 409
+ ],
+ [
+ 198,
+ 410
+ ],
+ [
+ 199,
+ 411
+ ],
+ [
+ 200,
+ 412
+ ],
+ [
+ 201,
+ 413
+ ],
+ [
+ 202,
+ 414
+ ],
+ [
+ 203,
+ 415
+ ],
+ [
+ 204,
+ 415
+ ],
+ [
+ 205,
+ 416
+ ],
+ [
+ 206,
+ 416
+ ],
+ [
+ 207,
+ 417
+ ],
+ [
+ 208,
+ 417
+ ],
+ [
+ 209,
+ 417
+ ],
+ [
+ 210,
+ 417
+ ],
+ [
+ 211,
+ 418
+ ],
+ [
+ 212,
+ 418
+ ],
+ [
+ 213,
+ 418
+ ],
+ [
+ 214,
+ 418
+ ],
+ [
+ 215,
+ 418
+ ],
+ [
+ 216,
+ 419
+ ],
+ [
+ 217,
+ 419
+ ],
+ [
+ 218,
+ 419
+ ],
+ [
+ 219,
+ 419
+ ],
+ [
+ 220,
+ 420
+ ],
+ [
+ 221,
+ 420
+ ],
+ [
+ 222,
+ 421
+ ],
+ [
+ 223,
+ 421
+ ],
+ [
+ 224,
+ 422
+ ],
+ [
+ 225,
+ 422
+ ],
+ [
+ 226,
+ 423
+ ],
+ [
+ 227,
+ 423
+ ],
+ [
+ 228,
+ 424
+ ],
+ [
+ 229,
+ 424
+ ],
+ [
+ 230,
+ 425
+ ],
+ [
+ 231,
+ 426
+ ],
+ [
+ 232,
+ 426
+ ],
+ [
+ 233,
+ 427
+ ],
+ [
+ 234,
+ 427
+ ],
+ [
+ 235,
+ 428
+ ],
+ [
+ 236,
+ 428
+ ],
+ [
+ 237,
+ 429
+ ],
+ [
+ 238,
+ 429
+ ],
+ [
+ 239,
+ 429
+ ],
+ [
+ 240,
+ 429
+ ],
+ [
+ 241,
+ 429
+ ],
+ [
+ 242,
+ 429
+ ],
+ [
+ 243,
+ 429
+ ],
+ [
+ 244,
+ 428
+ ],
+ [
+ 245,
+ 427
+ ],
+ [
+ 246,
+ 426
+ ],
+ [
+ 247,
+ 425
+ ],
+ [
+ 247,
+ 424
+ ],
+ [
+ 247,
+ 423
+ ],
+ [
+ 247,
+ 422
+ ],
+ [
+ 247,
+ 421
+ ],
+ [
+ 248,
+ 420
+ ],
+ [
+ 248,
+ 419
+ ],
+ [
+ 248,
+ 418
+ ],
+ [
+ 249,
+ 417
+ ],
+ [
+ 250,
+ 416
+ ],
+ [
+ 251,
+ 415
+ ],
+ [
+ 252,
+ 414
+ ],
+ [
+ 253,
+ 414
+ ],
+ [
+ 254,
+ 413
+ ],
+ [
+ 255,
+ 413
+ ],
+ [
+ 256,
+ 413
+ ],
+ [
+ 257,
+ 412
+ ],
+ [
+ 258,
+ 412
+ ],
+ [
+ 259,
+ 411
+ ],
+ [
+ 260,
+ 411
+ ],
+ [
+ 261,
+ 411
+ ],
+ [
+ 262,
+ 410
+ ],
+ [
+ 263,
+ 410
+ ],
+ [
+ 264,
+ 409
+ ],
+ [
+ 265,
+ 408
+ ],
+ [
+ 266,
+ 407
+ ],
+ [
+ 267,
+ 407
+ ],
+ [
+ 268,
+ 406
+ ],
+ [
+ 269,
+ 406
+ ],
+ [
+ 270,
+ 405
+ ],
+ [
+ 271,
+ 405
+ ],
+ [
+ 272,
+ 404
+ ],
+ [
+ 273,
+ 403
+ ],
+ [
+ 274,
+ 402
+ ],
+ [
+ 274,
+ 401
+ ],
+ [
+ 275,
+ 400
+ ],
+ [
+ 276,
+ 400
+ ],
+ [
+ 277,
+ 400
+ ],
+ [
+ 278,
+ 400
+ ],
+ [
+ 279,
+ 399
+ ],
+ [
+ 280,
+ 399
+ ],
+ [
+ 281,
+ 399
+ ],
+ [
+ 282,
+ 399
+ ],
+ [
+ 283,
+ 399
+ ],
+ [
+ 284,
+ 398
+ ],
+ [
+ 285,
+ 398
+ ],
+ [
+ 286,
+ 398
+ ],
+ [
+ 287,
+ 398
+ ],
+ [
+ 288,
+ 399
+ ],
+ [
+ 289,
+ 399
+ ],
+ [
+ 290,
+ 399
+ ],
+ [
+ 291,
+ 399
+ ],
+ [
+ 292,
+ 400
+ ],
+ [
+ 293,
+ 400
+ ],
+ [
+ 294,
+ 400
+ ],
+ [
+ 295,
+ 400
+ ],
+ [
+ 296,
+ 400
+ ],
+ [
+ 297,
+ 400
+ ],
+ [
+ 298,
+ 399
+ ],
+ [
+ 299,
+ 399
+ ],
+ [
+ 300,
+ 398
+ ],
+ [
+ 301,
+ 397
+ ],
+ [
+ 302,
+ 396
+ ],
+ [
+ 303,
+ 395
+ ],
+ [
+ 303,
+ 394
+ ],
+ [
+ 303,
+ 393
+ ],
+ [
+ 304,
+ 392
+ ],
+ [
+ 304,
+ 391
+ ],
+ [
+ 304,
+ 390
+ ],
+ [
+ 304,
+ 389
+ ],
+ [
+ 304,
+ 388
+ ],
+ [
+ 304,
+ 387
+ ],
+ [
+ 304,
+ 386
+ ],
+ [
+ 304,
+ 385
+ ],
+ [
+ 304,
+ 384
+ ],
+ [
+ 304,
+ 383
+ ],
+ [
+ 304,
+ 382
+ ],
+ [
+ 304,
+ 381
+ ],
+ [
+ 304,
+ 380
+ ],
+ [
+ 303,
+ 379
+ ],
+ [
+ 303,
+ 378
+ ],
+ [
+ 303,
+ 377
+ ],
+ [
+ 303,
+ 376
+ ],
+ [
+ 303,
+ 375
+ ],
+ [
+ 303,
+ 374
+ ],
+ [
+ 303,
+ 373
+ ],
+ [
+ 304,
+ 372
+ ],
+ [
+ 304,
+ 371
+ ],
+ [
+ 304,
+ 370
+ ],
+ [
+ 303,
+ 369
+ ],
+ [
+ 303,
+ 368
+ ],
+ [
+ 303,
+ 367
+ ],
+ [
+ 303,
+ 366
+ ],
+ [
+ 303,
+ 365
+ ],
+ [
+ 303,
+ 364
+ ],
+ [
+ 303,
+ 363
+ ],
+ [
+ 303,
+ 362
+ ],
+ [
+ 303,
+ 361
+ ],
+ [
+ 303,
+ 360
+ ],
+ [
+ 302,
+ 359
+ ],
+ [
+ 302,
+ 358
+ ],
+ [
+ 302,
+ 357
+ ],
+ [
+ 302,
+ 356
+ ],
+ [
+ 302,
+ 355
+ ],
+ [
+ 302,
+ 354
+ ],
+ [
+ 302,
+ 353
+ ],
+ [
+ 302,
+ 352
+ ],
+ [
+ 301,
+ 351
+ ],
+ [
+ 302,
+ 350
+ ],
+ [
+ 302,
+ 349
+ ],
+ [
+ 302,
+ 348
+ ],
+ [
+ 302,
+ 347
+ ],
+ [
+ 302,
+ 346
+ ],
+ [
+ 302,
+ 345
+ ],
+ [
+ 302,
+ 344
+ ],
+ [
+ 301,
+ 343
+ ],
+ [
+ 301,
+ 342
+ ],
+ [
+ 300,
+ 341
+ ],
+ [
+ 299,
+ 340
+ ],
+ [
+ 298,
+ 340
+ ],
+ [
+ 297,
+ 339
+ ],
+ [
+ 296,
+ 338
+ ],
+ [
+ 295,
+ 338
+ ],
+ [
+ 294,
+ 337
+ ],
+ [
+ 293,
+ 336
+ ],
+ [
+ 292,
+ 335
+ ],
+ [
+ 291,
+ 335
+ ],
+ [
+ 290,
+ 334
+ ],
+ [
+ 289,
+ 333
+ ],
+ [
+ 289,
+ 332
+ ],
+ [
+ 288,
+ 331
+ ],
+ [
+ 288,
+ 330
+ ],
+ [
+ 287,
+ 329
+ ],
+ [
+ 286,
+ 328
+ ],
+ [
+ 286,
+ 327
+ ],
+ [
+ 285,
+ 326
+ ],
+ [
+ 284,
+ 326
+ ],
+ [
+ 283,
+ 326
+ ],
+ [
+ 282,
+ 325
+ ],
+ [
+ 281,
+ 325
+ ],
+ [
+ 280,
+ 325
+ ],
+ [
+ 279,
+ 325
+ ],
+ [
+ 278,
+ 325
+ ],
+ [
+ 277,
+ 325
+ ],
+ [
+ 276,
+ 325
+ ],
+ [
+ 275,
+ 325
+ ],
+ [
+ 274,
+ 325
+ ],
+ [
+ 273,
+ 324
+ ],
+ [
+ 272,
+ 324
+ ],
+ [
+ 271,
+ 324
+ ],
+ [
+ 270,
+ 324
+ ],
+ [
+ 269,
+ 323
+ ],
+ [
+ 268,
+ 323
+ ],
+ [
+ 267,
+ 323
+ ],
+ [
+ 266,
+ 322
+ ],
+ [
+ 265,
+ 322
+ ],
+ [
+ 264,
+ 322
+ ],
+ [
+ 263,
+ 321
+ ],
+ [
+ 262,
+ 321
+ ],
+ [
+ 261,
+ 320
+ ],
+ [
+ 260,
+ 319
+ ],
+ [
+ 259,
+ 319
+ ],
+ [
+ 258,
+ 318
+ ],
+ [
+ 257,
+ 318
+ ],
+ [
+ 256,
+ 318
+ ],
+ [
+ 255,
+ 318
+ ],
+ [
+ 254,
+ 318
+ ],
+ [
+ 253,
+ 318
+ ],
+ [
+ 252,
+ 317
+ ],
+ [
+ 251,
+ 317
+ ],
+ [
+ 250,
+ 317
+ ],
+ [
+ 249,
+ 317
+ ],
+ [
+ 248,
+ 317
+ ],
+ [
+ 247,
+ 317
+ ],
+ [
+ 246,
+ 317
+ ],
+ [
+ 245,
+ 317
+ ],
+ [
+ 244,
+ 317
+ ],
+ [
+ 243,
+ 317
+ ],
+ [
+ 242,
+ 317
+ ],
+ [
+ 241,
+ 317
+ ],
+ [
+ 240,
+ 317
+ ],
+ [
+ 239,
+ 317
+ ],
+ [
+ 238,
+ 317
+ ],
+ [
+ 237,
+ 317
+ ],
+ [
+ 236,
+ 317
+ ],
+ [
+ 235,
+ 317
+ ],
+ [
+ 234,
+ 317
+ ],
+ [
+ 233,
+ 317
+ ],
+ [
+ 232,
+ 317
+ ],
+ [
+ 231,
+ 317
+ ],
+ [
+ 230,
+ 317
+ ],
+ [
+ 229,
+ 317
+ ],
+ [
+ 228,
+ 317
+ ],
+ [
+ 227,
+ 317
+ ],
+ [
+ 226,
+ 317
+ ]
+ ],
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 226,
+ 317
+ ],
+ [
+ 225,
+ 318
+ ],
+ [
+ 224,
+ 318
+ ],
+ [
+ 223,
+ 318
+ ],
+ [
+ 222,
+ 318
+ ],
+ [
+ 221,
+ 318
+ ],
+ [
+ 221,
+ 319
+ ],
+ [
+ 220,
+ 320
+ ],
+ [
+ 219,
+ 321
+ ],
+ [
+ 218,
+ 322
+ ],
+ [
+ 217,
+ 323
+ ],
+ [
+ 216,
+ 324
+ ],
+ [
+ 215,
+ 325
+ ],
+ [
+ 214,
+ 326
+ ],
+ [
+ 213,
+ 327
+ ],
+ [
+ 212,
+ 328
+ ],
+ [
+ 211,
+ 328
+ ],
+ [
+ 210,
+ 328
+ ],
+ [
+ 209,
+ 329
+ ],
+ [
+ 208,
+ 329
+ ],
+ [
+ 207,
+ 330
+ ],
+ [
+ 206,
+ 330
+ ],
+ [
+ 205,
+ 331
+ ],
+ [
+ 204,
+ 331
+ ],
+ [
+ 203,
+ 332
+ ],
+ [
+ 202,
+ 332
+ ],
+ [
+ 201,
+ 333
+ ],
+ [
+ 200,
+ 333
+ ],
+ [
+ 199,
+ 334
+ ],
+ [
+ 198,
+ 334
+ ],
+ [
+ 197,
+ 335
+ ],
+ [
+ 196,
+ 335
+ ],
+ [
+ 195,
+ 336
+ ],
+ [
+ 194,
+ 336
+ ],
+ [
+ 193,
+ 337
+ ],
+ [
+ 192,
+ 337
+ ],
+ [
+ 191,
+ 338
+ ],
+ [
+ 190,
+ 338
+ ],
+ [
+ 189,
+ 339
+ ],
+ [
+ 188,
+ 339
+ ],
+ [
+ 187,
+ 339
+ ],
+ [
+ 186,
+ 339
+ ],
+ [
+ 185,
+ 339
+ ],
+ [
+ 184,
+ 339
+ ],
+ [
+ 183,
+ 340
+ ],
+ [
+ 182,
+ 340
+ ],
+ [
+ 181,
+ 340
+ ],
+ [
+ 180,
+ 340
+ ],
+ [
+ 179,
+ 340
+ ],
+ [
+ 178,
+ 340
+ ],
+ [
+ 177,
+ 341
+ ],
+ [
+ 176,
+ 341
+ ],
+ [
+ 175,
+ 341
+ ],
+ [
+ 174,
+ 341
+ ],
+ [
+ 173,
+ 341
+ ],
+ [
+ 172,
+ 341
+ ],
+ [
+ 171,
+ 341
+ ],
+ [
+ 170,
+ 341
+ ],
+ [
+ 169,
+ 341
+ ],
+ [
+ 168,
+ 342
+ ],
+ [
+ 167,
+ 342
+ ],
+ [
+ 166,
+ 342
+ ],
+ [
+ 165,
+ 342
+ ],
+ [
+ 164,
+ 343
+ ],
+ [
+ 163,
+ 343
+ ],
+ [
+ 162,
+ 343
+ ],
+ [
+ 161,
+ 344
+ ],
+ [
+ 160,
+ 344
+ ],
+ [
+ 159,
+ 344
+ ],
+ [
+ 158,
+ 345
+ ],
+ [
+ 157,
+ 345
+ ],
+ [
+ 156,
+ 346
+ ],
+ [
+ 155,
+ 346
+ ],
+ [
+ 154,
+ 347
+ ],
+ [
+ 153,
+ 348
+ ],
+ [
+ 153,
+ 349
+ ],
+ [
+ 152,
+ 350
+ ],
+ [
+ 152,
+ 351
+ ],
+ [
+ 152,
+ 352
+ ],
+ [
+ 153,
+ 353
+ ],
+ [
+ 153,
+ 354
+ ],
+ [
+ 153,
+ 355
+ ],
+ [
+ 154,
+ 356
+ ],
+ [
+ 155,
+ 357
+ ],
+ [
+ 156,
+ 358
+ ],
+ [
+ 157,
+ 358
+ ],
+ [
+ 158,
+ 359
+ ],
+ [
+ 158,
+ 360
+ ],
+ [
+ 158,
+ 361
+ ],
+ [
+ 158,
+ 362
+ ],
+ [
+ 158,
+ 363
+ ],
+ [
+ 157,
+ 364
+ ],
+ [
+ 156,
+ 365
+ ],
+ [
+ 156,
+ 366
+ ],
+ [
+ 155,
+ 367
+ ],
+ [
+ 155,
+ 368
+ ],
+ [
+ 155,
+ 369
+ ],
+ [
+ 155,
+ 370
+ ],
+ [
+ 155,
+ 371
+ ],
+ [
+ 155,
+ 372
+ ],
+ [
+ 156,
+ 372
+ ],
+ [
+ 157,
+ 373
+ ],
+ [
+ 158,
+ 374
+ ],
+ [
+ 159,
+ 375
+ ],
+ [
+ 160,
+ 376
+ ],
+ [
+ 161,
+ 376
+ ],
+ [
+ 162,
+ 377
+ ],
+ [
+ 163,
+ 377
+ ],
+ [
+ 164,
+ 377
+ ],
+ [
+ 165,
+ 378
+ ],
+ [
+ 166,
+ 378
+ ],
+ [
+ 167,
+ 379
+ ],
+ [
+ 168,
+ 379
+ ],
+ [
+ 169,
+ 380
+ ],
+ [
+ 169,
+ 381
+ ],
+ [
+ 170,
+ 382
+ ],
+ [
+ 171,
+ 383
+ ],
+ [
+ 172,
+ 384
+ ],
+ [
+ 173,
+ 385
+ ],
+ [
+ 174,
+ 386
+ ],
+ [
+ 174,
+ 387
+ ],
+ [
+ 175,
+ 388
+ ],
+ [
+ 176,
+ 389
+ ],
+ [
+ 177,
+ 390
+ ],
+ [
+ 178,
+ 391
+ ],
+ [
+ 179,
+ 392
+ ],
+ [
+ 180,
+ 393
+ ],
+ [
+ 180,
+ 394
+ ],
+ [
+ 181,
+ 395
+ ],
+ [
+ 181,
+ 396
+ ],
+ [
+ 182,
+ 397
+ ],
+ [
+ 183,
+ 398
+ ],
+ [
+ 184,
+ 399
+ ],
+ [
+ 185,
+ 400
+ ],
+ [
+ 186,
+ 401
+ ],
+ [
+ 187,
+ 402
+ ],
+ [
+ 188,
+ 402
+ ],
+ [
+ 189,
+ 403
+ ],
+ [
+ 190,
+ 404
+ ],
+ [
+ 191,
+ 405
+ ],
+ [
+ 192,
+ 405
+ ],
+ [
+ 193,
+ 406
+ ],
+ [
+ 194,
+ 406
+ ],
+ [
+ 195,
+ 407
+ ],
+ [
+ 196,
+ 408
+ ],
+ [
+ 197,
+ 409
+ ],
+ [
+ 198,
+ 410
+ ],
+ [
+ 199,
+ 411
+ ],
+ [
+ 200,
+ 412
+ ],
+ [
+ 201,
+ 413
+ ],
+ [
+ 202,
+ 414
+ ],
+ [
+ 203,
+ 415
+ ],
+ [
+ 204,
+ 415
+ ],
+ [
+ 205,
+ 416
+ ],
+ [
+ 206,
+ 416
+ ],
+ [
+ 207,
+ 417
+ ],
+ [
+ 208,
+ 417
+ ],
+ [
+ 209,
+ 417
+ ],
+ [
+ 210,
+ 417
+ ],
+ [
+ 211,
+ 418
+ ],
+ [
+ 212,
+ 418
+ ],
+ [
+ 213,
+ 418
+ ],
+ [
+ 214,
+ 418
+ ],
+ [
+ 215,
+ 418
+ ],
+ [
+ 216,
+ 419
+ ],
+ [
+ 217,
+ 419
+ ],
+ [
+ 218,
+ 419
+ ],
+ [
+ 219,
+ 419
+ ],
+ [
+ 220,
+ 420
+ ],
+ [
+ 221,
+ 420
+ ],
+ [
+ 222,
+ 421
+ ],
+ [
+ 223,
+ 421
+ ],
+ [
+ 224,
+ 422
+ ],
+ [
+ 225,
+ 422
+ ],
+ [
+ 226,
+ 423
+ ],
+ [
+ 227,
+ 423
+ ],
+ [
+ 228,
+ 424
+ ],
+ [
+ 229,
+ 424
+ ],
+ [
+ 230,
+ 425
+ ],
+ [
+ 231,
+ 426
+ ],
+ [
+ 232,
+ 426
+ ],
+ [
+ 233,
+ 427
+ ],
+ [
+ 234,
+ 427
+ ],
+ [
+ 235,
+ 428
+ ],
+ [
+ 236,
+ 428
+ ],
+ [
+ 237,
+ 429
+ ],
+ [
+ 238,
+ 429
+ ],
+ [
+ 239,
+ 429
+ ],
+ [
+ 240,
+ 429
+ ],
+ [
+ 241,
+ 429
+ ],
+ [
+ 242,
+ 429
+ ],
+ [
+ 243,
+ 429
+ ],
+ [
+ 244,
+ 428
+ ],
+ [
+ 245,
+ 427
+ ],
+ [
+ 246,
+ 426
+ ],
+ [
+ 247,
+ 425
+ ],
+ [
+ 247,
+ 424
+ ],
+ [
+ 247,
+ 423
+ ],
+ [
+ 247,
+ 422
+ ],
+ [
+ 247,
+ 421
+ ],
+ [
+ 248,
+ 420
+ ],
+ [
+ 248,
+ 419
+ ],
+ [
+ 248,
+ 418
+ ],
+ [
+ 249,
+ 417
+ ],
+ [
+ 250,
+ 416
+ ],
+ [
+ 251,
+ 415
+ ],
+ [
+ 252,
+ 414
+ ],
+ [
+ 253,
+ 414
+ ],
+ [
+ 254,
+ 413
+ ],
+ [
+ 255,
+ 413
+ ],
+ [
+ 256,
+ 413
+ ],
+ [
+ 257,
+ 412
+ ],
+ [
+ 258,
+ 412
+ ],
+ [
+ 259,
+ 411
+ ],
+ [
+ 260,
+ 411
+ ],
+ [
+ 261,
+ 411
+ ],
+ [
+ 262,
+ 410
+ ],
+ [
+ 263,
+ 410
+ ],
+ [
+ 264,
+ 409
+ ],
+ [
+ 265,
+ 408
+ ],
+ [
+ 266,
+ 407
+ ],
+ [
+ 267,
+ 407
+ ],
+ [
+ 268,
+ 406
+ ],
+ [
+ 269,
+ 406
+ ],
+ [
+ 270,
+ 405
+ ],
+ [
+ 271,
+ 405
+ ],
+ [
+ 272,
+ 404
+ ],
+ [
+ 273,
+ 403
+ ],
+ [
+ 274,
+ 402
+ ],
+ [
+ 274,
+ 401
+ ],
+ [
+ 275,
+ 400
+ ],
+ [
+ 276,
+ 400
+ ],
+ [
+ 277,
+ 400
+ ],
+ [
+ 278,
+ 400
+ ],
+ [
+ 279,
+ 399
+ ],
+ [
+ 280,
+ 399
+ ],
+ [
+ 281,
+ 399
+ ],
+ [
+ 282,
+ 399
+ ],
+ [
+ 283,
+ 399
+ ],
+ [
+ 284,
+ 398
+ ],
+ [
+ 285,
+ 398
+ ],
+ [
+ 286,
+ 398
+ ],
+ [
+ 287,
+ 398
+ ],
+ [
+ 288,
+ 399
+ ],
+ [
+ 289,
+ 399
+ ],
+ [
+ 290,
+ 399
+ ],
+ [
+ 291,
+ 399
+ ],
+ [
+ 292,
+ 400
+ ],
+ [
+ 293,
+ 400
+ ],
+ [
+ 294,
+ 400
+ ],
+ [
+ 295,
+ 400
+ ],
+ [
+ 296,
+ 400
+ ],
+ [
+ 297,
+ 400
+ ],
+ [
+ 298,
+ 399
+ ],
+ [
+ 299,
+ 399
+ ],
+ [
+ 300,
+ 398
+ ],
+ [
+ 301,
+ 397
+ ],
+ [
+ 302,
+ 396
+ ],
+ [
+ 303,
+ 395
+ ],
+ [
+ 303,
+ 394
+ ],
+ [
+ 303,
+ 393
+ ],
+ [
+ 304,
+ 392
+ ],
+ [
+ 304,
+ 391
+ ],
+ [
+ 304,
+ 390
+ ],
+ [
+ 304,
+ 389
+ ],
+ [
+ 304,
+ 388
+ ],
+ [
+ 304,
+ 387
+ ],
+ [
+ 304,
+ 386
+ ],
+ [
+ 304,
+ 385
+ ],
+ [
+ 304,
+ 384
+ ],
+ [
+ 304,
+ 383
+ ],
+ [
+ 304,
+ 382
+ ],
+ [
+ 304,
+ 381
+ ],
+ [
+ 304,
+ 380
+ ],
+ [
+ 303,
+ 379
+ ],
+ [
+ 303,
+ 378
+ ],
+ [
+ 303,
+ 377
+ ],
+ [
+ 303,
+ 376
+ ],
+ [
+ 303,
+ 375
+ ],
+ [
+ 303,
+ 374
+ ],
+ [
+ 303,
+ 373
+ ],
+ [
+ 304,
+ 372
+ ],
+ [
+ 304,
+ 371
+ ],
+ [
+ 304,
+ 370
+ ],
+ [
+ 303,
+ 369
+ ],
+ [
+ 303,
+ 368
+ ],
+ [
+ 303,
+ 367
+ ],
+ [
+ 303,
+ 366
+ ],
+ [
+ 303,
+ 365
+ ],
+ [
+ 303,
+ 364
+ ],
+ [
+ 303,
+ 363
+ ],
+ [
+ 303,
+ 362
+ ],
+ [
+ 303,
+ 361
+ ],
+ [
+ 303,
+ 360
+ ],
+ [
+ 302,
+ 359
+ ],
+ [
+ 302,
+ 358
+ ],
+ [
+ 302,
+ 357
+ ],
+ [
+ 302,
+ 356
+ ],
+ [
+ 302,
+ 355
+ ],
+ [
+ 302,
+ 354
+ ],
+ [
+ 302,
+ 353
+ ],
+ [
+ 302,
+ 352
+ ],
+ [
+ 301,
+ 351
+ ],
+ [
+ 302,
+ 350
+ ],
+ [
+ 302,
+ 349
+ ],
+ [
+ 302,
+ 348
+ ],
+ [
+ 302,
+ 347
+ ],
+ [
+ 302,
+ 346
+ ],
+ [
+ 302,
+ 345
+ ],
+ [
+ 302,
+ 344
+ ],
+ [
+ 301,
+ 343
+ ],
+ [
+ 301,
+ 342
+ ],
+ [
+ 300,
+ 341
+ ],
+ [
+ 299,
+ 340
+ ],
+ [
+ 298,
+ 340
+ ],
+ [
+ 297,
+ 339
+ ],
+ [
+ 296,
+ 338
+ ],
+ [
+ 295,
+ 338
+ ],
+ [
+ 294,
+ 337
+ ],
+ [
+ 293,
+ 336
+ ],
+ [
+ 292,
+ 335
+ ],
+ [
+ 291,
+ 335
+ ],
+ [
+ 290,
+ 334
+ ],
+ [
+ 289,
+ 333
+ ],
+ [
+ 289,
+ 332
+ ],
+ [
+ 288,
+ 331
+ ],
+ [
+ 288,
+ 330
+ ],
+ [
+ 287,
+ 329
+ ],
+ [
+ 286,
+ 328
+ ],
+ [
+ 286,
+ 327
+ ],
+ [
+ 285,
+ 326
+ ],
+ [
+ 284,
+ 326
+ ],
+ [
+ 283,
+ 326
+ ],
+ [
+ 282,
+ 325
+ ],
+ [
+ 281,
+ 325
+ ],
+ [
+ 280,
+ 325
+ ],
+ [
+ 279,
+ 325
+ ],
+ [
+ 278,
+ 325
+ ],
+ [
+ 277,
+ 325
+ ],
+ [
+ 276,
+ 325
+ ],
+ [
+ 275,
+ 325
+ ],
+ [
+ 274,
+ 325
+ ],
+ [
+ 273,
+ 324
+ ],
+ [
+ 272,
+ 324
+ ],
+ [
+ 271,
+ 324
+ ],
+ [
+ 270,
+ 324
+ ],
+ [
+ 269,
+ 323
+ ],
+ [
+ 268,
+ 323
+ ],
+ [
+ 267,
+ 323
+ ],
+ [
+ 266,
+ 322
+ ],
+ [
+ 265,
+ 322
+ ],
+ [
+ 264,
+ 322
+ ],
+ [
+ 263,
+ 321
+ ],
+ [
+ 262,
+ 321
+ ],
+ [
+ 261,
+ 320
+ ],
+ [
+ 260,
+ 319
+ ],
+ [
+ 259,
+ 319
+ ],
+ [
+ 258,
+ 318
+ ],
+ [
+ 257,
+ 318
+ ],
+ [
+ 256,
+ 318
+ ],
+ [
+ 255,
+ 318
+ ],
+ [
+ 254,
+ 318
+ ],
+ [
+ 253,
+ 318
+ ],
+ [
+ 252,
+ 317
+ ],
+ [
+ 251,
+ 317
+ ],
+ [
+ 250,
+ 317
+ ],
+ [
+ 249,
+ 317
+ ],
+ [
+ 248,
+ 317
+ ],
+ [
+ 247,
+ 317
+ ],
+ [
+ 246,
+ 317
+ ],
+ [
+ 245,
+ 317
+ ],
+ [
+ 244,
+ 317
+ ],
+ [
+ 243,
+ 317
+ ],
+ [
+ 242,
+ 317
+ ],
+ [
+ 241,
+ 317
+ ],
+ [
+ 240,
+ 317
+ ],
+ [
+ 239,
+ 317
+ ],
+ [
+ 238,
+ 317
+ ],
+ [
+ 237,
+ 317
+ ],
+ [
+ 236,
+ 317
+ ],
+ [
+ 235,
+ 317
+ ],
+ [
+ 234,
+ 317
+ ],
+ [
+ 233,
+ 317
+ ],
+ [
+ 232,
+ 317
+ ],
+ [
+ 231,
+ 317
+ ],
+ [
+ 230,
+ 317
+ ],
+ [
+ 229,
+ 317
+ ],
+ [
+ 228,
+ 317
+ ],
+ [
+ 227,
+ 317
+ ],
+ [
+ 226,
+ 317
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "aircraft",
+ "detectionScore": 0.9915148019790649
+ }
+ ],
+ "coordinates": []
+ },
+ "inferenceMetadata": {
+ "jobId": "0eb8655d-b5b2-4c69-8c4f-5e4fb7a9cd7b",
+ "filePath": "s3://test-images-123456789123/tile.png",
+ "receiveTime": "2023-11-09T01:16:01.824443",
+ "inferenceTime": "2023-11-09T01:16:02.574711+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "id": "6c975f63-334f-4798-bc0a-82ece88fc4e9",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 0,
+ 0
+ ]
+ },
+ "properties": {
+ "geom_imcoords": [
+ [
+ 250,
+ 166
+ ],
+ [
+ 249,
+ 167
+ ],
+ [
+ 248,
+ 167
+ ],
+ [
+ 247,
+ 167
+ ],
+ [
+ 246,
+ 167
+ ],
+ [
+ 245,
+ 167
+ ],
+ [
+ 244,
+ 167
+ ],
+ [
+ 243,
+ 167
+ ],
+ [
+ 242,
+ 167
+ ],
+ [
+ 241,
+ 168
+ ],
+ [
+ 240,
+ 169
+ ],
+ [
+ 239,
+ 170
+ ],
+ [
+ 239,
+ 171
+ ],
+ [
+ 238,
+ 172
+ ],
+ [
+ 237,
+ 173
+ ],
+ [
+ 236,
+ 174
+ ],
+ [
+ 235,
+ 175
+ ],
+ [
+ 234,
+ 176
+ ],
+ [
+ 233,
+ 176
+ ],
+ [
+ 232,
+ 177
+ ],
+ [
+ 231,
+ 177
+ ],
+ [
+ 230,
+ 178
+ ],
+ [
+ 229,
+ 178
+ ],
+ [
+ 228,
+ 178
+ ],
+ [
+ 227,
+ 179
+ ],
+ [
+ 226,
+ 179
+ ],
+ [
+ 225,
+ 180
+ ],
+ [
+ 224,
+ 180
+ ],
+ [
+ 223,
+ 181
+ ],
+ [
+ 222,
+ 181
+ ],
+ [
+ 221,
+ 182
+ ],
+ [
+ 220,
+ 182
+ ],
+ [
+ 219,
+ 183
+ ],
+ [
+ 218,
+ 184
+ ],
+ [
+ 217,
+ 184
+ ],
+ [
+ 216,
+ 185
+ ],
+ [
+ 215,
+ 185
+ ],
+ [
+ 214,
+ 186
+ ],
+ [
+ 213,
+ 186
+ ],
+ [
+ 212,
+ 187
+ ],
+ [
+ 211,
+ 187
+ ],
+ [
+ 210,
+ 187
+ ],
+ [
+ 209,
+ 187
+ ],
+ [
+ 208,
+ 187
+ ],
+ [
+ 207,
+ 188
+ ],
+ [
+ 206,
+ 188
+ ],
+ [
+ 205,
+ 188
+ ],
+ [
+ 204,
+ 188
+ ],
+ [
+ 203,
+ 188
+ ],
+ [
+ 202,
+ 189
+ ],
+ [
+ 201,
+ 189
+ ],
+ [
+ 200,
+ 189
+ ],
+ [
+ 199,
+ 189
+ ],
+ [
+ 198,
+ 189
+ ],
+ [
+ 197,
+ 189
+ ],
+ [
+ 196,
+ 189
+ ],
+ [
+ 195,
+ 189
+ ],
+ [
+ 194,
+ 189
+ ],
+ [
+ 193,
+ 189
+ ],
+ [
+ 192,
+ 190
+ ],
+ [
+ 191,
+ 190
+ ],
+ [
+ 190,
+ 190
+ ],
+ [
+ 189,
+ 190
+ ],
+ [
+ 188,
+ 190
+ ],
+ [
+ 187,
+ 191
+ ],
+ [
+ 186,
+ 191
+ ],
+ [
+ 185,
+ 191
+ ],
+ [
+ 184,
+ 191
+ ],
+ [
+ 183,
+ 192
+ ],
+ [
+ 182,
+ 192
+ ],
+ [
+ 181,
+ 192
+ ],
+ [
+ 180,
+ 193
+ ],
+ [
+ 179,
+ 193
+ ],
+ [
+ 178,
+ 194
+ ],
+ [
+ 177,
+ 195
+ ],
+ [
+ 176,
+ 196
+ ],
+ [
+ 176,
+ 197
+ ],
+ [
+ 176,
+ 198
+ ],
+ [
+ 176,
+ 199
+ ],
+ [
+ 176,
+ 200
+ ],
+ [
+ 177,
+ 201
+ ],
+ [
+ 178,
+ 202
+ ],
+ [
+ 178,
+ 203
+ ],
+ [
+ 179,
+ 204
+ ],
+ [
+ 180,
+ 205
+ ],
+ [
+ 181,
+ 206
+ ],
+ [
+ 182,
+ 207
+ ],
+ [
+ 182,
+ 208
+ ],
+ [
+ 182,
+ 209
+ ],
+ [
+ 182,
+ 210
+ ],
+ [
+ 182,
+ 211
+ ],
+ [
+ 181,
+ 212
+ ],
+ [
+ 181,
+ 213
+ ],
+ [
+ 180,
+ 214
+ ],
+ [
+ 179,
+ 215
+ ],
+ [
+ 179,
+ 216
+ ],
+ [
+ 178,
+ 217
+ ],
+ [
+ 179,
+ 218
+ ],
+ [
+ 179,
+ 219
+ ],
+ [
+ 179,
+ 220
+ ],
+ [
+ 179,
+ 221
+ ],
+ [
+ 180,
+ 222
+ ],
+ [
+ 181,
+ 223
+ ],
+ [
+ 182,
+ 223
+ ],
+ [
+ 183,
+ 224
+ ],
+ [
+ 184,
+ 225
+ ],
+ [
+ 185,
+ 226
+ ],
+ [
+ 186,
+ 226
+ ],
+ [
+ 187,
+ 226
+ ],
+ [
+ 188,
+ 227
+ ],
+ [
+ 189,
+ 227
+ ],
+ [
+ 190,
+ 228
+ ],
+ [
+ 191,
+ 228
+ ],
+ [
+ 192,
+ 229
+ ],
+ [
+ 193,
+ 230
+ ],
+ [
+ 194,
+ 231
+ ],
+ [
+ 195,
+ 232
+ ],
+ [
+ 196,
+ 233
+ ],
+ [
+ 196,
+ 234
+ ],
+ [
+ 197,
+ 235
+ ],
+ [
+ 197,
+ 236
+ ],
+ [
+ 198,
+ 237
+ ],
+ [
+ 199,
+ 238
+ ],
+ [
+ 200,
+ 239
+ ],
+ [
+ 201,
+ 240
+ ],
+ [
+ 202,
+ 241
+ ],
+ [
+ 202,
+ 242
+ ],
+ [
+ 203,
+ 243
+ ],
+ [
+ 203,
+ 244
+ ],
+ [
+ 204,
+ 245
+ ],
+ [
+ 204,
+ 246
+ ],
+ [
+ 205,
+ 247
+ ],
+ [
+ 206,
+ 248
+ ],
+ [
+ 207,
+ 249
+ ],
+ [
+ 208,
+ 250
+ ],
+ [
+ 209,
+ 251
+ ],
+ [
+ 209,
+ 252
+ ],
+ [
+ 210,
+ 253
+ ],
+ [
+ 211,
+ 254
+ ],
+ [
+ 212,
+ 254
+ ],
+ [
+ 213,
+ 255
+ ],
+ [
+ 214,
+ 255
+ ],
+ [
+ 215,
+ 256
+ ],
+ [
+ 216,
+ 257
+ ],
+ [
+ 217,
+ 258
+ ],
+ [
+ 218,
+ 259
+ ],
+ [
+ 219,
+ 259
+ ],
+ [
+ 220,
+ 260
+ ],
+ [
+ 221,
+ 261
+ ],
+ [
+ 222,
+ 261
+ ],
+ [
+ 223,
+ 262
+ ],
+ [
+ 224,
+ 263
+ ],
+ [
+ 225,
+ 263
+ ],
+ [
+ 226,
+ 264
+ ],
+ [
+ 227,
+ 264
+ ],
+ [
+ 228,
+ 264
+ ],
+ [
+ 229,
+ 265
+ ],
+ [
+ 230,
+ 265
+ ],
+ [
+ 231,
+ 265
+ ],
+ [
+ 232,
+ 265
+ ],
+ [
+ 233,
+ 265
+ ],
+ [
+ 234,
+ 265
+ ],
+ [
+ 235,
+ 265
+ ],
+ [
+ 236,
+ 266
+ ],
+ [
+ 237,
+ 266
+ ],
+ [
+ 238,
+ 266
+ ],
+ [
+ 239,
+ 266
+ ],
+ [
+ 240,
+ 267
+ ],
+ [
+ 241,
+ 267
+ ],
+ [
+ 242,
+ 267
+ ],
+ [
+ 243,
+ 268
+ ],
+ [
+ 244,
+ 268
+ ],
+ [
+ 245,
+ 268
+ ],
+ [
+ 246,
+ 269
+ ],
+ [
+ 247,
+ 269
+ ],
+ [
+ 248,
+ 270
+ ],
+ [
+ 249,
+ 271
+ ],
+ [
+ 250,
+ 271
+ ],
+ [
+ 251,
+ 272
+ ],
+ [
+ 252,
+ 272
+ ],
+ [
+ 253,
+ 273
+ ],
+ [
+ 254,
+ 273
+ ],
+ [
+ 255,
+ 274
+ ],
+ [
+ 256,
+ 275
+ ],
+ [
+ 257,
+ 275
+ ],
+ [
+ 258,
+ 276
+ ],
+ [
+ 259,
+ 276
+ ],
+ [
+ 260,
+ 277
+ ],
+ [
+ 261,
+ 277
+ ],
+ [
+ 262,
+ 278
+ ],
+ [
+ 263,
+ 278
+ ],
+ [
+ 264,
+ 278
+ ],
+ [
+ 265,
+ 278
+ ],
+ [
+ 266,
+ 278
+ ],
+ [
+ 267,
+ 278
+ ],
+ [
+ 268,
+ 278
+ ],
+ [
+ 269,
+ 278
+ ],
+ [
+ 270,
+ 277
+ ],
+ [
+ 271,
+ 276
+ ],
+ [
+ 272,
+ 275
+ ],
+ [
+ 272,
+ 274
+ ],
+ [
+ 272,
+ 273
+ ],
+ [
+ 273,
+ 272
+ ],
+ [
+ 273,
+ 271
+ ],
+ [
+ 273,
+ 270
+ ],
+ [
+ 273,
+ 269
+ ],
+ [
+ 273,
+ 268
+ ],
+ [
+ 273,
+ 267
+ ],
+ [
+ 273,
+ 266
+ ],
+ [
+ 274,
+ 265
+ ],
+ [
+ 275,
+ 264
+ ],
+ [
+ 276,
+ 263
+ ],
+ [
+ 277,
+ 262
+ ],
+ [
+ 278,
+ 261
+ ],
+ [
+ 279,
+ 261
+ ],
+ [
+ 280,
+ 260
+ ],
+ [
+ 281,
+ 259
+ ],
+ [
+ 282,
+ 258
+ ],
+ [
+ 283,
+ 258
+ ],
+ [
+ 284,
+ 257
+ ],
+ [
+ 285,
+ 257
+ ],
+ [
+ 286,
+ 256
+ ],
+ [
+ 287,
+ 256
+ ],
+ [
+ 288,
+ 255
+ ],
+ [
+ 289,
+ 255
+ ],
+ [
+ 290,
+ 254
+ ],
+ [
+ 291,
+ 254
+ ],
+ [
+ 292,
+ 254
+ ],
+ [
+ 293,
+ 253
+ ],
+ [
+ 294,
+ 252
+ ],
+ [
+ 295,
+ 251
+ ],
+ [
+ 296,
+ 250
+ ],
+ [
+ 297,
+ 249
+ ],
+ [
+ 298,
+ 248
+ ],
+ [
+ 299,
+ 247
+ ],
+ [
+ 300,
+ 247
+ ],
+ [
+ 301,
+ 247
+ ],
+ [
+ 302,
+ 246
+ ],
+ [
+ 303,
+ 246
+ ],
+ [
+ 304,
+ 246
+ ],
+ [
+ 305,
+ 245
+ ],
+ [
+ 306,
+ 245
+ ],
+ [
+ 307,
+ 245
+ ],
+ [
+ 308,
+ 244
+ ],
+ [
+ 309,
+ 244
+ ],
+ [
+ 310,
+ 244
+ ],
+ [
+ 311,
+ 244
+ ],
+ [
+ 312,
+ 245
+ ],
+ [
+ 313,
+ 245
+ ],
+ [
+ 314,
+ 245
+ ],
+ [
+ 315,
+ 246
+ ],
+ [
+ 316,
+ 246
+ ],
+ [
+ 317,
+ 246
+ ],
+ [
+ 318,
+ 246
+ ],
+ [
+ 319,
+ 246
+ ],
+ [
+ 320,
+ 246
+ ],
+ [
+ 321,
+ 246
+ ],
+ [
+ 322,
+ 246
+ ],
+ [
+ 323,
+ 245
+ ],
+ [
+ 324,
+ 245
+ ],
+ [
+ 325,
+ 244
+ ],
+ [
+ 326,
+ 243
+ ],
+ [
+ 326,
+ 242
+ ],
+ [
+ 327,
+ 241
+ ],
+ [
+ 327,
+ 240
+ ],
+ [
+ 327,
+ 239
+ ],
+ [
+ 327,
+ 238
+ ],
+ [
+ 327,
+ 237
+ ],
+ [
+ 327,
+ 236
+ ],
+ [
+ 327,
+ 235
+ ],
+ [
+ 327,
+ 234
+ ],
+ [
+ 327,
+ 233
+ ],
+ [
+ 327,
+ 232
+ ],
+ [
+ 326,
+ 231
+ ],
+ [
+ 326,
+ 230
+ ],
+ [
+ 326,
+ 229
+ ],
+ [
+ 325,
+ 228
+ ],
+ [
+ 325,
+ 227
+ ],
+ [
+ 325,
+ 226
+ ],
+ [
+ 324,
+ 225
+ ],
+ [
+ 324,
+ 224
+ ],
+ [
+ 324,
+ 223
+ ],
+ [
+ 324,
+ 222
+ ],
+ [
+ 324,
+ 221
+ ],
+ [
+ 324,
+ 220
+ ],
+ [
+ 324,
+ 219
+ ],
+ [
+ 323,
+ 218
+ ],
+ [
+ 323,
+ 217
+ ],
+ [
+ 323,
+ 216
+ ],
+ [
+ 323,
+ 215
+ ],
+ [
+ 323,
+ 214
+ ],
+ [
+ 323,
+ 213
+ ],
+ [
+ 323,
+ 212
+ ],
+ [
+ 323,
+ 211
+ ],
+ [
+ 323,
+ 210
+ ],
+ [
+ 323,
+ 209
+ ],
+ [
+ 323,
+ 208
+ ],
+ [
+ 323,
+ 207
+ ],
+ [
+ 323,
+ 206
+ ],
+ [
+ 323,
+ 205
+ ],
+ [
+ 323,
+ 204
+ ],
+ [
+ 323,
+ 203
+ ],
+ [
+ 323,
+ 202
+ ],
+ [
+ 323,
+ 201
+ ],
+ [
+ 323,
+ 200
+ ],
+ [
+ 323,
+ 199
+ ],
+ [
+ 323,
+ 198
+ ],
+ [
+ 323,
+ 197
+ ],
+ [
+ 323,
+ 196
+ ],
+ [
+ 323,
+ 195
+ ],
+ [
+ 323,
+ 194
+ ],
+ [
+ 323,
+ 193
+ ],
+ [
+ 323,
+ 192
+ ],
+ [
+ 323,
+ 191
+ ],
+ [
+ 323,
+ 190
+ ],
+ [
+ 322,
+ 189
+ ],
+ [
+ 322,
+ 188
+ ],
+ [
+ 321,
+ 187
+ ],
+ [
+ 321,
+ 186
+ ],
+ [
+ 320,
+ 186
+ ],
+ [
+ 319,
+ 185
+ ],
+ [
+ 318,
+ 184
+ ],
+ [
+ 317,
+ 184
+ ],
+ [
+ 316,
+ 183
+ ],
+ [
+ 315,
+ 182
+ ],
+ [
+ 314,
+ 182
+ ],
+ [
+ 313,
+ 181
+ ],
+ [
+ 312,
+ 181
+ ],
+ [
+ 311,
+ 181
+ ],
+ [
+ 310,
+ 180
+ ],
+ [
+ 309,
+ 179
+ ],
+ [
+ 308,
+ 178
+ ],
+ [
+ 307,
+ 177
+ ],
+ [
+ 306,
+ 176
+ ],
+ [
+ 305,
+ 175
+ ],
+ [
+ 304,
+ 175
+ ],
+ [
+ 303,
+ 175
+ ],
+ [
+ 302,
+ 175
+ ],
+ [
+ 301,
+ 175
+ ],
+ [
+ 300,
+ 176
+ ],
+ [
+ 299,
+ 176
+ ],
+ [
+ 298,
+ 176
+ ],
+ [
+ 297,
+ 175
+ ],
+ [
+ 296,
+ 175
+ ],
+ [
+ 295,
+ 174
+ ],
+ [
+ 294,
+ 174
+ ],
+ [
+ 293,
+ 174
+ ],
+ [
+ 292,
+ 173
+ ],
+ [
+ 291,
+ 172
+ ],
+ [
+ 290,
+ 172
+ ],
+ [
+ 289,
+ 171
+ ],
+ [
+ 288,
+ 171
+ ],
+ [
+ 287,
+ 170
+ ],
+ [
+ 286,
+ 169
+ ],
+ [
+ 285,
+ 169
+ ],
+ [
+ 284,
+ 168
+ ],
+ [
+ 283,
+ 168
+ ],
+ [
+ 282,
+ 167
+ ],
+ [
+ 281,
+ 167
+ ],
+ [
+ 280,
+ 167
+ ],
+ [
+ 279,
+ 167
+ ],
+ [
+ 278,
+ 167
+ ],
+ [
+ 277,
+ 167
+ ],
+ [
+ 276,
+ 167
+ ],
+ [
+ 275,
+ 167
+ ],
+ [
+ 274,
+ 167
+ ],
+ [
+ 273,
+ 167
+ ],
+ [
+ 272,
+ 167
+ ],
+ [
+ 271,
+ 167
+ ],
+ [
+ 270,
+ 167
+ ],
+ [
+ 269,
+ 167
+ ],
+ [
+ 268,
+ 167
+ ],
+ [
+ 267,
+ 167
+ ],
+ [
+ 266,
+ 167
+ ],
+ [
+ 265,
+ 167
+ ],
+ [
+ 264,
+ 167
+ ],
+ [
+ 263,
+ 167
+ ],
+ [
+ 262,
+ 167
+ ],
+ [
+ 261,
+ 166
+ ],
+ [
+ 260,
+ 166
+ ],
+ [
+ 259,
+ 166
+ ],
+ [
+ 258,
+ 166
+ ],
+ [
+ 257,
+ 166
+ ],
+ [
+ 256,
+ 166
+ ],
+ [
+ 255,
+ 166
+ ],
+ [
+ 254,
+ 166
+ ],
+ [
+ 253,
+ 166
+ ],
+ [
+ 252,
+ 166
+ ],
+ [
+ 251,
+ 166
+ ],
+ [
+ 250,
+ 166
+ ]
+ ],
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 250,
+ 166
+ ],
+ [
+ 249,
+ 167
+ ],
+ [
+ 248,
+ 167
+ ],
+ [
+ 247,
+ 167
+ ],
+ [
+ 246,
+ 167
+ ],
+ [
+ 245,
+ 167
+ ],
+ [
+ 244,
+ 167
+ ],
+ [
+ 243,
+ 167
+ ],
+ [
+ 242,
+ 167
+ ],
+ [
+ 241,
+ 168
+ ],
+ [
+ 240,
+ 169
+ ],
+ [
+ 239,
+ 170
+ ],
+ [
+ 239,
+ 171
+ ],
+ [
+ 238,
+ 172
+ ],
+ [
+ 237,
+ 173
+ ],
+ [
+ 236,
+ 174
+ ],
+ [
+ 235,
+ 175
+ ],
+ [
+ 234,
+ 176
+ ],
+ [
+ 233,
+ 176
+ ],
+ [
+ 232,
+ 177
+ ],
+ [
+ 231,
+ 177
+ ],
+ [
+ 230,
+ 178
+ ],
+ [
+ 229,
+ 178
+ ],
+ [
+ 228,
+ 178
+ ],
+ [
+ 227,
+ 179
+ ],
+ [
+ 226,
+ 179
+ ],
+ [
+ 225,
+ 180
+ ],
+ [
+ 224,
+ 180
+ ],
+ [
+ 223,
+ 181
+ ],
+ [
+ 222,
+ 181
+ ],
+ [
+ 221,
+ 182
+ ],
+ [
+ 220,
+ 182
+ ],
+ [
+ 219,
+ 183
+ ],
+ [
+ 218,
+ 184
+ ],
+ [
+ 217,
+ 184
+ ],
+ [
+ 216,
+ 185
+ ],
+ [
+ 215,
+ 185
+ ],
+ [
+ 214,
+ 186
+ ],
+ [
+ 213,
+ 186
+ ],
+ [
+ 212,
+ 187
+ ],
+ [
+ 211,
+ 187
+ ],
+ [
+ 210,
+ 187
+ ],
+ [
+ 209,
+ 187
+ ],
+ [
+ 208,
+ 187
+ ],
+ [
+ 207,
+ 188
+ ],
+ [
+ 206,
+ 188
+ ],
+ [
+ 205,
+ 188
+ ],
+ [
+ 204,
+ 188
+ ],
+ [
+ 203,
+ 188
+ ],
+ [
+ 202,
+ 189
+ ],
+ [
+ 201,
+ 189
+ ],
+ [
+ 200,
+ 189
+ ],
+ [
+ 199,
+ 189
+ ],
+ [
+ 198,
+ 189
+ ],
+ [
+ 197,
+ 189
+ ],
+ [
+ 196,
+ 189
+ ],
+ [
+ 195,
+ 189
+ ],
+ [
+ 194,
+ 189
+ ],
+ [
+ 193,
+ 189
+ ],
+ [
+ 192,
+ 190
+ ],
+ [
+ 191,
+ 190
+ ],
+ [
+ 190,
+ 190
+ ],
+ [
+ 189,
+ 190
+ ],
+ [
+ 188,
+ 190
+ ],
+ [
+ 187,
+ 191
+ ],
+ [
+ 186,
+ 191
+ ],
+ [
+ 185,
+ 191
+ ],
+ [
+ 184,
+ 191
+ ],
+ [
+ 183,
+ 192
+ ],
+ [
+ 182,
+ 192
+ ],
+ [
+ 181,
+ 192
+ ],
+ [
+ 180,
+ 193
+ ],
+ [
+ 179,
+ 193
+ ],
+ [
+ 178,
+ 194
+ ],
+ [
+ 177,
+ 195
+ ],
+ [
+ 176,
+ 196
+ ],
+ [
+ 176,
+ 197
+ ],
+ [
+ 176,
+ 198
+ ],
+ [
+ 176,
+ 199
+ ],
+ [
+ 176,
+ 200
+ ],
+ [
+ 177,
+ 201
+ ],
+ [
+ 178,
+ 202
+ ],
+ [
+ 178,
+ 203
+ ],
+ [
+ 179,
+ 204
+ ],
+ [
+ 180,
+ 205
+ ],
+ [
+ 181,
+ 206
+ ],
+ [
+ 182,
+ 207
+ ],
+ [
+ 182,
+ 208
+ ],
+ [
+ 182,
+ 209
+ ],
+ [
+ 182,
+ 210
+ ],
+ [
+ 182,
+ 211
+ ],
+ [
+ 181,
+ 212
+ ],
+ [
+ 181,
+ 213
+ ],
+ [
+ 180,
+ 214
+ ],
+ [
+ 179,
+ 215
+ ],
+ [
+ 179,
+ 216
+ ],
+ [
+ 178,
+ 217
+ ],
+ [
+ 179,
+ 218
+ ],
+ [
+ 179,
+ 219
+ ],
+ [
+ 179,
+ 220
+ ],
+ [
+ 179,
+ 221
+ ],
+ [
+ 180,
+ 222
+ ],
+ [
+ 181,
+ 223
+ ],
+ [
+ 182,
+ 223
+ ],
+ [
+ 183,
+ 224
+ ],
+ [
+ 184,
+ 225
+ ],
+ [
+ 185,
+ 226
+ ],
+ [
+ 186,
+ 226
+ ],
+ [
+ 187,
+ 226
+ ],
+ [
+ 188,
+ 227
+ ],
+ [
+ 189,
+ 227
+ ],
+ [
+ 190,
+ 228
+ ],
+ [
+ 191,
+ 228
+ ],
+ [
+ 192,
+ 229
+ ],
+ [
+ 193,
+ 230
+ ],
+ [
+ 194,
+ 231
+ ],
+ [
+ 195,
+ 232
+ ],
+ [
+ 196,
+ 233
+ ],
+ [
+ 196,
+ 234
+ ],
+ [
+ 197,
+ 235
+ ],
+ [
+ 197,
+ 236
+ ],
+ [
+ 198,
+ 237
+ ],
+ [
+ 199,
+ 238
+ ],
+ [
+ 200,
+ 239
+ ],
+ [
+ 201,
+ 240
+ ],
+ [
+ 202,
+ 241
+ ],
+ [
+ 202,
+ 242
+ ],
+ [
+ 203,
+ 243
+ ],
+ [
+ 203,
+ 244
+ ],
+ [
+ 204,
+ 245
+ ],
+ [
+ 204,
+ 246
+ ],
+ [
+ 205,
+ 247
+ ],
+ [
+ 206,
+ 248
+ ],
+ [
+ 207,
+ 249
+ ],
+ [
+ 208,
+ 250
+ ],
+ [
+ 209,
+ 251
+ ],
+ [
+ 209,
+ 252
+ ],
+ [
+ 210,
+ 253
+ ],
+ [
+ 211,
+ 254
+ ],
+ [
+ 212,
+ 254
+ ],
+ [
+ 213,
+ 255
+ ],
+ [
+ 214,
+ 255
+ ],
+ [
+ 215,
+ 256
+ ],
+ [
+ 216,
+ 257
+ ],
+ [
+ 217,
+ 258
+ ],
+ [
+ 218,
+ 259
+ ],
+ [
+ 219,
+ 259
+ ],
+ [
+ 220,
+ 260
+ ],
+ [
+ 221,
+ 261
+ ],
+ [
+ 222,
+ 261
+ ],
+ [
+ 223,
+ 262
+ ],
+ [
+ 224,
+ 263
+ ],
+ [
+ 225,
+ 263
+ ],
+ [
+ 226,
+ 264
+ ],
+ [
+ 227,
+ 264
+ ],
+ [
+ 228,
+ 264
+ ],
+ [
+ 229,
+ 265
+ ],
+ [
+ 230,
+ 265
+ ],
+ [
+ 231,
+ 265
+ ],
+ [
+ 232,
+ 265
+ ],
+ [
+ 233,
+ 265
+ ],
+ [
+ 234,
+ 265
+ ],
+ [
+ 235,
+ 265
+ ],
+ [
+ 236,
+ 266
+ ],
+ [
+ 237,
+ 266
+ ],
+ [
+ 238,
+ 266
+ ],
+ [
+ 239,
+ 266
+ ],
+ [
+ 240,
+ 267
+ ],
+ [
+ 241,
+ 267
+ ],
+ [
+ 242,
+ 267
+ ],
+ [
+ 243,
+ 268
+ ],
+ [
+ 244,
+ 268
+ ],
+ [
+ 245,
+ 268
+ ],
+ [
+ 246,
+ 269
+ ],
+ [
+ 247,
+ 269
+ ],
+ [
+ 248,
+ 270
+ ],
+ [
+ 249,
+ 271
+ ],
+ [
+ 250,
+ 271
+ ],
+ [
+ 251,
+ 272
+ ],
+ [
+ 252,
+ 272
+ ],
+ [
+ 253,
+ 273
+ ],
+ [
+ 254,
+ 273
+ ],
+ [
+ 255,
+ 274
+ ],
+ [
+ 256,
+ 275
+ ],
+ [
+ 257,
+ 275
+ ],
+ [
+ 258,
+ 276
+ ],
+ [
+ 259,
+ 276
+ ],
+ [
+ 260,
+ 277
+ ],
+ [
+ 261,
+ 277
+ ],
+ [
+ 262,
+ 278
+ ],
+ [
+ 263,
+ 278
+ ],
+ [
+ 264,
+ 278
+ ],
+ [
+ 265,
+ 278
+ ],
+ [
+ 266,
+ 278
+ ],
+ [
+ 267,
+ 278
+ ],
+ [
+ 268,
+ 278
+ ],
+ [
+ 269,
+ 278
+ ],
+ [
+ 270,
+ 277
+ ],
+ [
+ 271,
+ 276
+ ],
+ [
+ 272,
+ 275
+ ],
+ [
+ 272,
+ 274
+ ],
+ [
+ 272,
+ 273
+ ],
+ [
+ 273,
+ 272
+ ],
+ [
+ 273,
+ 271
+ ],
+ [
+ 273,
+ 270
+ ],
+ [
+ 273,
+ 269
+ ],
+ [
+ 273,
+ 268
+ ],
+ [
+ 273,
+ 267
+ ],
+ [
+ 273,
+ 266
+ ],
+ [
+ 274,
+ 265
+ ],
+ [
+ 275,
+ 264
+ ],
+ [
+ 276,
+ 263
+ ],
+ [
+ 277,
+ 262
+ ],
+ [
+ 278,
+ 261
+ ],
+ [
+ 279,
+ 261
+ ],
+ [
+ 280,
+ 260
+ ],
+ [
+ 281,
+ 259
+ ],
+ [
+ 282,
+ 258
+ ],
+ [
+ 283,
+ 258
+ ],
+ [
+ 284,
+ 257
+ ],
+ [
+ 285,
+ 257
+ ],
+ [
+ 286,
+ 256
+ ],
+ [
+ 287,
+ 256
+ ],
+ [
+ 288,
+ 255
+ ],
+ [
+ 289,
+ 255
+ ],
+ [
+ 290,
+ 254
+ ],
+ [
+ 291,
+ 254
+ ],
+ [
+ 292,
+ 254
+ ],
+ [
+ 293,
+ 253
+ ],
+ [
+ 294,
+ 252
+ ],
+ [
+ 295,
+ 251
+ ],
+ [
+ 296,
+ 250
+ ],
+ [
+ 297,
+ 249
+ ],
+ [
+ 298,
+ 248
+ ],
+ [
+ 299,
+ 247
+ ],
+ [
+ 300,
+ 247
+ ],
+ [
+ 301,
+ 247
+ ],
+ [
+ 302,
+ 246
+ ],
+ [
+ 303,
+ 246
+ ],
+ [
+ 304,
+ 246
+ ],
+ [
+ 305,
+ 245
+ ],
+ [
+ 306,
+ 245
+ ],
+ [
+ 307,
+ 245
+ ],
+ [
+ 308,
+ 244
+ ],
+ [
+ 309,
+ 244
+ ],
+ [
+ 310,
+ 244
+ ],
+ [
+ 311,
+ 244
+ ],
+ [
+ 312,
+ 245
+ ],
+ [
+ 313,
+ 245
+ ],
+ [
+ 314,
+ 245
+ ],
+ [
+ 315,
+ 246
+ ],
+ [
+ 316,
+ 246
+ ],
+ [
+ 317,
+ 246
+ ],
+ [
+ 318,
+ 246
+ ],
+ [
+ 319,
+ 246
+ ],
+ [
+ 320,
+ 246
+ ],
+ [
+ 321,
+ 246
+ ],
+ [
+ 322,
+ 246
+ ],
+ [
+ 323,
+ 245
+ ],
+ [
+ 324,
+ 245
+ ],
+ [
+ 325,
+ 244
+ ],
+ [
+ 326,
+ 243
+ ],
+ [
+ 326,
+ 242
+ ],
+ [
+ 327,
+ 241
+ ],
+ [
+ 327,
+ 240
+ ],
+ [
+ 327,
+ 239
+ ],
+ [
+ 327,
+ 238
+ ],
+ [
+ 327,
+ 237
+ ],
+ [
+ 327,
+ 236
+ ],
+ [
+ 327,
+ 235
+ ],
+ [
+ 327,
+ 234
+ ],
+ [
+ 327,
+ 233
+ ],
+ [
+ 327,
+ 232
+ ],
+ [
+ 326,
+ 231
+ ],
+ [
+ 326,
+ 230
+ ],
+ [
+ 326,
+ 229
+ ],
+ [
+ 325,
+ 228
+ ],
+ [
+ 325,
+ 227
+ ],
+ [
+ 325,
+ 226
+ ],
+ [
+ 324,
+ 225
+ ],
+ [
+ 324,
+ 224
+ ],
+ [
+ 324,
+ 223
+ ],
+ [
+ 324,
+ 222
+ ],
+ [
+ 324,
+ 221
+ ],
+ [
+ 324,
+ 220
+ ],
+ [
+ 324,
+ 219
+ ],
+ [
+ 323,
+ 218
+ ],
+ [
+ 323,
+ 217
+ ],
+ [
+ 323,
+ 216
+ ],
+ [
+ 323,
+ 215
+ ],
+ [
+ 323,
+ 214
+ ],
+ [
+ 323,
+ 213
+ ],
+ [
+ 323,
+ 212
+ ],
+ [
+ 323,
+ 211
+ ],
+ [
+ 323,
+ 210
+ ],
+ [
+ 323,
+ 209
+ ],
+ [
+ 323,
+ 208
+ ],
+ [
+ 323,
+ 207
+ ],
+ [
+ 323,
+ 206
+ ],
+ [
+ 323,
+ 205
+ ],
+ [
+ 323,
+ 204
+ ],
+ [
+ 323,
+ 203
+ ],
+ [
+ 323,
+ 202
+ ],
+ [
+ 323,
+ 201
+ ],
+ [
+ 323,
+ 200
+ ],
+ [
+ 323,
+ 199
+ ],
+ [
+ 323,
+ 198
+ ],
+ [
+ 323,
+ 197
+ ],
+ [
+ 323,
+ 196
+ ],
+ [
+ 323,
+ 195
+ ],
+ [
+ 323,
+ 194
+ ],
+ [
+ 323,
+ 193
+ ],
+ [
+ 323,
+ 192
+ ],
+ [
+ 323,
+ 191
+ ],
+ [
+ 323,
+ 190
+ ],
+ [
+ 322,
+ 189
+ ],
+ [
+ 322,
+ 188
+ ],
+ [
+ 321,
+ 187
+ ],
+ [
+ 321,
+ 186
+ ],
+ [
+ 320,
+ 186
+ ],
+ [
+ 319,
+ 185
+ ],
+ [
+ 318,
+ 184
+ ],
+ [
+ 317,
+ 184
+ ],
+ [
+ 316,
+ 183
+ ],
+ [
+ 315,
+ 182
+ ],
+ [
+ 314,
+ 182
+ ],
+ [
+ 313,
+ 181
+ ],
+ [
+ 312,
+ 181
+ ],
+ [
+ 311,
+ 181
+ ],
+ [
+ 310,
+ 180
+ ],
+ [
+ 309,
+ 179
+ ],
+ [
+ 308,
+ 178
+ ],
+ [
+ 307,
+ 177
+ ],
+ [
+ 306,
+ 176
+ ],
+ [
+ 305,
+ 175
+ ],
+ [
+ 304,
+ 175
+ ],
+ [
+ 303,
+ 175
+ ],
+ [
+ 302,
+ 175
+ ],
+ [
+ 301,
+ 175
+ ],
+ [
+ 300,
+ 176
+ ],
+ [
+ 299,
+ 176
+ ],
+ [
+ 298,
+ 176
+ ],
+ [
+ 297,
+ 175
+ ],
+ [
+ 296,
+ 175
+ ],
+ [
+ 295,
+ 174
+ ],
+ [
+ 294,
+ 174
+ ],
+ [
+ 293,
+ 174
+ ],
+ [
+ 292,
+ 173
+ ],
+ [
+ 291,
+ 172
+ ],
+ [
+ 290,
+ 172
+ ],
+ [
+ 289,
+ 171
+ ],
+ [
+ 288,
+ 171
+ ],
+ [
+ 287,
+ 170
+ ],
+ [
+ 286,
+ 169
+ ],
+ [
+ 285,
+ 169
+ ],
+ [
+ 284,
+ 168
+ ],
+ [
+ 283,
+ 168
+ ],
+ [
+ 282,
+ 167
+ ],
+ [
+ 281,
+ 167
+ ],
+ [
+ 280,
+ 167
+ ],
+ [
+ 279,
+ 167
+ ],
+ [
+ 278,
+ 167
+ ],
+ [
+ 277,
+ 167
+ ],
+ [
+ 276,
+ 167
+ ],
+ [
+ 275,
+ 167
+ ],
+ [
+ 274,
+ 167
+ ],
+ [
+ 273,
+ 167
+ ],
+ [
+ 272,
+ 167
+ ],
+ [
+ 271,
+ 167
+ ],
+ [
+ 270,
+ 167
+ ],
+ [
+ 269,
+ 167
+ ],
+ [
+ 268,
+ 167
+ ],
+ [
+ 267,
+ 167
+ ],
+ [
+ 266,
+ 167
+ ],
+ [
+ 265,
+ 167
+ ],
+ [
+ 264,
+ 167
+ ],
+ [
+ 263,
+ 167
+ ],
+ [
+ 262,
+ 167
+ ],
+ [
+ 261,
+ 166
+ ],
+ [
+ 260,
+ 166
+ ],
+ [
+ 259,
+ 166
+ ],
+ [
+ 258,
+ 166
+ ],
+ [
+ 257,
+ 166
+ ],
+ [
+ 256,
+ 166
+ ],
+ [
+ 255,
+ 166
+ ],
+ [
+ 254,
+ 166
+ ],
+ [
+ 253,
+ 166
+ ],
+ [
+ 252,
+ 166
+ ],
+ [
+ 251,
+ 166
+ ],
+ [
+ 250,
+ 166
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "aircraft",
+ "detectionScore": 0.9863030314445496
+ }
+ ],
+ "coordinates": []
+ },
+ "inferenceMetadata": {
+ "jobId": "0eb8655d-b5b2-4c69-8c4f-5e4fb7a9cd7b",
+ "filePath": "s3://test-images-123456789123/tile.png",
+ "receiveTime": "2023-11-09T01:16:01.824443",
+ "inferenceTime": "2023-11-09T01:16:02.575025+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ }
+ ]
+}
diff --git a/src/data/aircraft.tile.tif.geojson b/src/data/aircraft.tile.tif.geojson
new file mode 100644
index 0000000..2df22e3
--- /dev/null
+++ b/src/data/aircraft.tile.tif.geojson
@@ -0,0 +1,10239 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "bbox": [
+ -87.8883135736966,
+ 42.94170477216326,
+ -87.88782201557314,
+ 42.94206697288582
+ ],
+ "id": "98ebf4f6-3e52-4bc8-9f29-4c62d3a778b4",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.888074,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888077,
+ 42.942064,
+ 0
+ ],
+ [
+ -87.888081,
+ 42.942064,
+ 0
+ ],
+ [
+ -87.888084,
+ 42.942064,
+ 0
+ ],
+ [
+ -87.888087,
+ 42.942064,
+ 0
+ ],
+ [
+ -87.88809,
+ 42.942064,
+ 0
+ ],
+ [
+ -87.88809,
+ 42.942061,
+ 0
+ ],
+ [
+ -87.888094,
+ 42.942057,
+ 0
+ ],
+ [
+ -87.888097,
+ 42.942054,
+ 0
+ ],
+ [
+ -87.8881,
+ 42.942051,
+ 0
+ ],
+ [
+ -87.888103,
+ 42.942048,
+ 0
+ ],
+ [
+ -87.888107,
+ 42.942044,
+ 0
+ ],
+ [
+ -87.88811,
+ 42.942041,
+ 0
+ ],
+ [
+ -87.888113,
+ 42.942038,
+ 0
+ ],
+ [
+ -87.888116,
+ 42.942035,
+ 0
+ ],
+ [
+ -87.88812,
+ 42.942031,
+ 0
+ ],
+ [
+ -87.888123,
+ 42.942031,
+ 0
+ ],
+ [
+ -87.888126,
+ 42.942031,
+ 0
+ ],
+ [
+ -87.888129,
+ 42.942028,
+ 0
+ ],
+ [
+ -87.888132,
+ 42.942028,
+ 0
+ ],
+ [
+ -87.888136,
+ 42.942025,
+ 0
+ ],
+ [
+ -87.888139,
+ 42.942025,
+ 0
+ ],
+ [
+ -87.888142,
+ 42.942022,
+ 0
+ ],
+ [
+ -87.888145,
+ 42.942022,
+ 0
+ ],
+ [
+ -87.888149,
+ 42.942018,
+ 0
+ ],
+ [
+ -87.888152,
+ 42.942018,
+ 0
+ ],
+ [
+ -87.888155,
+ 42.942015,
+ 0
+ ],
+ [
+ -87.888158,
+ 42.942015,
+ 0
+ ],
+ [
+ -87.888162,
+ 42.942012,
+ 0
+ ],
+ [
+ -87.888165,
+ 42.942012,
+ 0
+ ],
+ [
+ -87.888168,
+ 42.942009,
+ 0
+ ],
+ [
+ -87.888171,
+ 42.942009,
+ 0
+ ],
+ [
+ -87.888175,
+ 42.942006,
+ 0
+ ],
+ [
+ -87.888178,
+ 42.942006,
+ 0
+ ],
+ [
+ -87.888181,
+ 42.942002,
+ 0
+ ],
+ [
+ -87.888184,
+ 42.942002,
+ 0
+ ],
+ [
+ -87.888187,
+ 42.941999,
+ 0
+ ],
+ [
+ -87.888191,
+ 42.941999,
+ 0
+ ],
+ [
+ -87.888194,
+ 42.941996,
+ 0
+ ],
+ [
+ -87.888197,
+ 42.941996,
+ 0
+ ],
+ [
+ -87.8882,
+ 42.941996,
+ 0
+ ],
+ [
+ -87.888204,
+ 42.941996,
+ 0
+ ],
+ [
+ -87.888207,
+ 42.941996,
+ 0
+ ],
+ [
+ -87.88821,
+ 42.941996,
+ 0
+ ],
+ [
+ -87.888213,
+ 42.941993,
+ 0
+ ],
+ [
+ -87.888217,
+ 42.941993,
+ 0
+ ],
+ [
+ -87.88822,
+ 42.941993,
+ 0
+ ],
+ [
+ -87.888223,
+ 42.941993,
+ 0
+ ],
+ [
+ -87.888226,
+ 42.941993,
+ 0
+ ],
+ [
+ -87.888229,
+ 42.941993,
+ 0
+ ],
+ [
+ -87.888233,
+ 42.941989,
+ 0
+ ],
+ [
+ -87.888236,
+ 42.941989,
+ 0
+ ],
+ [
+ -87.888239,
+ 42.941989,
+ 0
+ ],
+ [
+ -87.888242,
+ 42.941989,
+ 0
+ ],
+ [
+ -87.888246,
+ 42.941989,
+ 0
+ ],
+ [
+ -87.888249,
+ 42.941989,
+ 0
+ ],
+ [
+ -87.888252,
+ 42.941989,
+ 0
+ ],
+ [
+ -87.888255,
+ 42.941989,
+ 0
+ ],
+ [
+ -87.888259,
+ 42.941989,
+ 0
+ ],
+ [
+ -87.888262,
+ 42.941986,
+ 0
+ ],
+ [
+ -87.888265,
+ 42.941986,
+ 0
+ ],
+ [
+ -87.888268,
+ 42.941986,
+ 0
+ ],
+ [
+ -87.888272,
+ 42.941986,
+ 0
+ ],
+ [
+ -87.888275,
+ 42.941983,
+ 0
+ ],
+ [
+ -87.888278,
+ 42.941983,
+ 0
+ ],
+ [
+ -87.888281,
+ 42.941983,
+ 0
+ ],
+ [
+ -87.888284,
+ 42.94198,
+ 0
+ ],
+ [
+ -87.888288,
+ 42.94198,
+ 0
+ ],
+ [
+ -87.888291,
+ 42.94198,
+ 0
+ ],
+ [
+ -87.888294,
+ 42.941976,
+ 0
+ ],
+ [
+ -87.888297,
+ 42.941976,
+ 0
+ ],
+ [
+ -87.888301,
+ 42.941973,
+ 0
+ ],
+ [
+ -87.888304,
+ 42.941973,
+ 0
+ ],
+ [
+ -87.888307,
+ 42.94197,
+ 0
+ ],
+ [
+ -87.88831,
+ 42.941967,
+ 0
+ ],
+ [
+ -87.88831,
+ 42.941963,
+ 0
+ ],
+ [
+ -87.888314,
+ 42.94196,
+ 0
+ ],
+ [
+ -87.888314,
+ 42.941957,
+ 0
+ ],
+ [
+ -87.888314,
+ 42.941954,
+ 0
+ ],
+ [
+ -87.88831,
+ 42.941951,
+ 0
+ ],
+ [
+ -87.88831,
+ 42.941947,
+ 0
+ ],
+ [
+ -87.88831,
+ 42.941944,
+ 0
+ ],
+ [
+ -87.888307,
+ 42.941941,
+ 0
+ ],
+ [
+ -87.888304,
+ 42.941938,
+ 0
+ ],
+ [
+ -87.888301,
+ 42.941934,
+ 0
+ ],
+ [
+ -87.888297,
+ 42.941934,
+ 0
+ ],
+ [
+ -87.888294,
+ 42.941931,
+ 0
+ ],
+ [
+ -87.888294,
+ 42.941928,
+ 0
+ ],
+ [
+ -87.888294,
+ 42.941925,
+ 0
+ ],
+ [
+ -87.888294,
+ 42.941921,
+ 0
+ ],
+ [
+ -87.888294,
+ 42.941918,
+ 0
+ ],
+ [
+ -87.888297,
+ 42.941915,
+ 0
+ ],
+ [
+ -87.888301,
+ 42.941912,
+ 0
+ ],
+ [
+ -87.888301,
+ 42.941909,
+ 0
+ ],
+ [
+ -87.888304,
+ 42.941905,
+ 0
+ ],
+ [
+ -87.888304,
+ 42.941902,
+ 0
+ ],
+ [
+ -87.888304,
+ 42.941899,
+ 0
+ ],
+ [
+ -87.888304,
+ 42.941896,
+ 0
+ ],
+ [
+ -87.888304,
+ 42.941892,
+ 0
+ ],
+ [
+ -87.888304,
+ 42.941889,
+ 0
+ ],
+ [
+ -87.888301,
+ 42.941889,
+ 0
+ ],
+ [
+ -87.888297,
+ 42.941886,
+ 0
+ ],
+ [
+ -87.888294,
+ 42.941883,
+ 0
+ ],
+ [
+ -87.888291,
+ 42.941879,
+ 0
+ ],
+ [
+ -87.888288,
+ 42.941876,
+ 0
+ ],
+ [
+ -87.888284,
+ 42.941876,
+ 0
+ ],
+ [
+ -87.888281,
+ 42.941873,
+ 0
+ ],
+ [
+ -87.888278,
+ 42.941873,
+ 0
+ ],
+ [
+ -87.888275,
+ 42.941873,
+ 0
+ ],
+ [
+ -87.888272,
+ 42.94187,
+ 0
+ ],
+ [
+ -87.888268,
+ 42.94187,
+ 0
+ ],
+ [
+ -87.888265,
+ 42.941866,
+ 0
+ ],
+ [
+ -87.888262,
+ 42.941866,
+ 0
+ ],
+ [
+ -87.888259,
+ 42.941863,
+ 0
+ ],
+ [
+ -87.888259,
+ 42.94186,
+ 0
+ ],
+ [
+ -87.888255,
+ 42.941857,
+ 0
+ ],
+ [
+ -87.888252,
+ 42.941854,
+ 0
+ ],
+ [
+ -87.888249,
+ 42.94185,
+ 0
+ ],
+ [
+ -87.888246,
+ 42.941847,
+ 0
+ ],
+ [
+ -87.888242,
+ 42.941844,
+ 0
+ ],
+ [
+ -87.888242,
+ 42.941841,
+ 0
+ ],
+ [
+ -87.888239,
+ 42.941837,
+ 0
+ ],
+ [
+ -87.888236,
+ 42.941834,
+ 0
+ ],
+ [
+ -87.888233,
+ 42.941831,
+ 0
+ ],
+ [
+ -87.888229,
+ 42.941828,
+ 0
+ ],
+ [
+ -87.888226,
+ 42.941824,
+ 0
+ ],
+ [
+ -87.888223,
+ 42.941821,
+ 0
+ ],
+ [
+ -87.888223,
+ 42.941818,
+ 0
+ ],
+ [
+ -87.88822,
+ 42.941815,
+ 0
+ ],
+ [
+ -87.88822,
+ 42.941811,
+ 0
+ ],
+ [
+ -87.888217,
+ 42.941808,
+ 0
+ ],
+ [
+ -87.888213,
+ 42.941805,
+ 0
+ ],
+ [
+ -87.88821,
+ 42.941802,
+ 0
+ ],
+ [
+ -87.888207,
+ 42.941799,
+ 0
+ ],
+ [
+ -87.888204,
+ 42.941795,
+ 0
+ ],
+ [
+ -87.8882,
+ 42.941792,
+ 0
+ ],
+ [
+ -87.888197,
+ 42.941792,
+ 0
+ ],
+ [
+ -87.888194,
+ 42.941789,
+ 0
+ ],
+ [
+ -87.888191,
+ 42.941786,
+ 0
+ ],
+ [
+ -87.888187,
+ 42.941782,
+ 0
+ ],
+ [
+ -87.888184,
+ 42.941782,
+ 0
+ ],
+ [
+ -87.888181,
+ 42.941779,
+ 0
+ ],
+ [
+ -87.888178,
+ 42.941779,
+ 0
+ ],
+ [
+ -87.888175,
+ 42.941776,
+ 0
+ ],
+ [
+ -87.888171,
+ 42.941773,
+ 0
+ ],
+ [
+ -87.888168,
+ 42.941769,
+ 0
+ ],
+ [
+ -87.888165,
+ 42.941766,
+ 0
+ ],
+ [
+ -87.888162,
+ 42.941763,
+ 0
+ ],
+ [
+ -87.888158,
+ 42.94176,
+ 0
+ ],
+ [
+ -87.888155,
+ 42.941757,
+ 0
+ ],
+ [
+ -87.888152,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.888149,
+ 42.94175,
+ 0
+ ],
+ [
+ -87.888145,
+ 42.94175,
+ 0
+ ],
+ [
+ -87.888142,
+ 42.941747,
+ 0
+ ],
+ [
+ -87.888139,
+ 42.941747,
+ 0
+ ],
+ [
+ -87.888136,
+ 42.941744,
+ 0
+ ],
+ [
+ -87.888132,
+ 42.941744,
+ 0
+ ],
+ [
+ -87.888129,
+ 42.941744,
+ 0
+ ],
+ [
+ -87.888126,
+ 42.941744,
+ 0
+ ],
+ [
+ -87.888123,
+ 42.94174,
+ 0
+ ],
+ [
+ -87.88812,
+ 42.94174,
+ 0
+ ],
+ [
+ -87.888116,
+ 42.94174,
+ 0
+ ],
+ [
+ -87.888113,
+ 42.94174,
+ 0
+ ],
+ [
+ -87.88811,
+ 42.94174,
+ 0
+ ],
+ [
+ -87.888107,
+ 42.941737,
+ 0
+ ],
+ [
+ -87.888103,
+ 42.941737,
+ 0
+ ],
+ [
+ -87.8881,
+ 42.941737,
+ 0
+ ],
+ [
+ -87.888097,
+ 42.941737,
+ 0
+ ],
+ [
+ -87.888094,
+ 42.941734,
+ 0
+ ],
+ [
+ -87.88809,
+ 42.941734,
+ 0
+ ],
+ [
+ -87.888087,
+ 42.941731,
+ 0
+ ],
+ [
+ -87.888084,
+ 42.941731,
+ 0
+ ],
+ [
+ -87.888081,
+ 42.941727,
+ 0
+ ],
+ [
+ -87.888077,
+ 42.941727,
+ 0
+ ],
+ [
+ -87.888074,
+ 42.941724,
+ 0
+ ],
+ [
+ -87.888071,
+ 42.941724,
+ 0
+ ],
+ [
+ -87.888068,
+ 42.941721,
+ 0
+ ],
+ [
+ -87.888065,
+ 42.941721,
+ 0
+ ],
+ [
+ -87.888061,
+ 42.941718,
+ 0
+ ],
+ [
+ -87.888058,
+ 42.941714,
+ 0
+ ],
+ [
+ -87.888055,
+ 42.941714,
+ 0
+ ],
+ [
+ -87.888052,
+ 42.941711,
+ 0
+ ],
+ [
+ -87.888048,
+ 42.941711,
+ 0
+ ],
+ [
+ -87.888045,
+ 42.941708,
+ 0
+ ],
+ [
+ -87.888042,
+ 42.941708,
+ 0
+ ],
+ [
+ -87.888039,
+ 42.941705,
+ 0
+ ],
+ [
+ -87.888035,
+ 42.941705,
+ 0
+ ],
+ [
+ -87.888032,
+ 42.941705,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.941705,
+ 0
+ ],
+ [
+ -87.888026,
+ 42.941705,
+ 0
+ ],
+ [
+ -87.888023,
+ 42.941705,
+ 0
+ ],
+ [
+ -87.888019,
+ 42.941705,
+ 0
+ ],
+ [
+ -87.888016,
+ 42.941708,
+ 0
+ ],
+ [
+ -87.888013,
+ 42.941711,
+ 0
+ ],
+ [
+ -87.88801,
+ 42.941714,
+ 0
+ ],
+ [
+ -87.888006,
+ 42.941718,
+ 0
+ ],
+ [
+ -87.888006,
+ 42.941721,
+ 0
+ ],
+ [
+ -87.888006,
+ 42.941724,
+ 0
+ ],
+ [
+ -87.888006,
+ 42.941727,
+ 0
+ ],
+ [
+ -87.888006,
+ 42.941731,
+ 0
+ ],
+ [
+ -87.888003,
+ 42.941734,
+ 0
+ ],
+ [
+ -87.888003,
+ 42.941737,
+ 0
+ ],
+ [
+ -87.888003,
+ 42.94174,
+ 0
+ ],
+ [
+ -87.888,
+ 42.941744,
+ 0
+ ],
+ [
+ -87.887997,
+ 42.941747,
+ 0
+ ],
+ [
+ -87.887993,
+ 42.94175,
+ 0
+ ],
+ [
+ -87.88799,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.887987,
+ 42.941753,
+ 0
+ ],
+ [
+ -87.887984,
+ 42.941757,
+ 0
+ ],
+ [
+ -87.88798,
+ 42.941757,
+ 0
+ ],
+ [
+ -87.887977,
+ 42.941757,
+ 0
+ ],
+ [
+ -87.887974,
+ 42.94176,
+ 0
+ ],
+ [
+ -87.887971,
+ 42.94176,
+ 0
+ ],
+ [
+ -87.887968,
+ 42.941763,
+ 0
+ ],
+ [
+ -87.887964,
+ 42.941763,
+ 0
+ ],
+ [
+ -87.887961,
+ 42.941763,
+ 0
+ ],
+ [
+ -87.887958,
+ 42.941766,
+ 0
+ ],
+ [
+ -87.887955,
+ 42.941766,
+ 0
+ ],
+ [
+ -87.887951,
+ 42.941769,
+ 0
+ ],
+ [
+ -87.887948,
+ 42.941773,
+ 0
+ ],
+ [
+ -87.887945,
+ 42.941776,
+ 0
+ ],
+ [
+ -87.887942,
+ 42.941776,
+ 0
+ ],
+ [
+ -87.887938,
+ 42.941779,
+ 0
+ ],
+ [
+ -87.887935,
+ 42.941779,
+ 0
+ ],
+ [
+ -87.887932,
+ 42.941782,
+ 0
+ ],
+ [
+ -87.887929,
+ 42.941782,
+ 0
+ ],
+ [
+ -87.887926,
+ 42.941786,
+ 0
+ ],
+ [
+ -87.887922,
+ 42.941789,
+ 0
+ ],
+ [
+ -87.887919,
+ 42.941792,
+ 0
+ ],
+ [
+ -87.887919,
+ 42.941795,
+ 0
+ ],
+ [
+ -87.887916,
+ 42.941799,
+ 0
+ ],
+ [
+ -87.887913,
+ 42.941799,
+ 0
+ ],
+ [
+ -87.887909,
+ 42.941799,
+ 0
+ ],
+ [
+ -87.887906,
+ 42.941799,
+ 0
+ ],
+ [
+ -87.887903,
+ 42.941802,
+ 0
+ ],
+ [
+ -87.8879,
+ 42.941802,
+ 0
+ ],
+ [
+ -87.887896,
+ 42.941802,
+ 0
+ ],
+ [
+ -87.887893,
+ 42.941802,
+ 0
+ ],
+ [
+ -87.88789,
+ 42.941802,
+ 0
+ ],
+ [
+ -87.887887,
+ 42.941805,
+ 0
+ ],
+ [
+ -87.887883,
+ 42.941805,
+ 0
+ ],
+ [
+ -87.88788,
+ 42.941805,
+ 0
+ ],
+ [
+ -87.887877,
+ 42.941805,
+ 0
+ ],
+ [
+ -87.887874,
+ 42.941802,
+ 0
+ ],
+ [
+ -87.887871,
+ 42.941802,
+ 0
+ ],
+ [
+ -87.887867,
+ 42.941802,
+ 0
+ ],
+ [
+ -87.887864,
+ 42.941802,
+ 0
+ ],
+ [
+ -87.887861,
+ 42.941799,
+ 0
+ ],
+ [
+ -87.887858,
+ 42.941799,
+ 0
+ ],
+ [
+ -87.887854,
+ 42.941799,
+ 0
+ ],
+ [
+ -87.887851,
+ 42.941799,
+ 0
+ ],
+ [
+ -87.887848,
+ 42.941799,
+ 0
+ ],
+ [
+ -87.887845,
+ 42.941799,
+ 0
+ ],
+ [
+ -87.887841,
+ 42.941802,
+ 0
+ ],
+ [
+ -87.887838,
+ 42.941802,
+ 0
+ ],
+ [
+ -87.887835,
+ 42.941805,
+ 0
+ ],
+ [
+ -87.887832,
+ 42.941808,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.941811,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941815,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941818,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941821,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941824,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941828,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941831,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941834,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941837,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941841,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941844,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941847,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.94185,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941854,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941857,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.94186,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941863,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941866,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.94187,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941873,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941876,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941879,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941883,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941886,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941889,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941892,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.941896,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941899,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941902,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941905,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941909,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941912,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941915,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941918,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941921,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941925,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.941928,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.941931,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.941934,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.941938,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.941941,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.941944,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.941947,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.941951,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.941954,
+ 0
+ ],
+ [
+ -87.887832,
+ 42.941957,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.94196,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.941963,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.941967,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.94197,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.941973,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.941976,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.94198,
+ 0
+ ],
+ [
+ -87.887832,
+ 42.941983,
+ 0
+ ],
+ [
+ -87.887832,
+ 42.941986,
+ 0
+ ],
+ [
+ -87.887835,
+ 42.941989,
+ 0
+ ],
+ [
+ -87.887838,
+ 42.941993,
+ 0
+ ],
+ [
+ -87.887841,
+ 42.941993,
+ 0
+ ],
+ [
+ -87.887845,
+ 42.941996,
+ 0
+ ],
+ [
+ -87.887848,
+ 42.941999,
+ 0
+ ],
+ [
+ -87.887851,
+ 42.941999,
+ 0
+ ],
+ [
+ -87.887854,
+ 42.942002,
+ 0
+ ],
+ [
+ -87.887858,
+ 42.942006,
+ 0
+ ],
+ [
+ -87.887861,
+ 42.942009,
+ 0
+ ],
+ [
+ -87.887864,
+ 42.942009,
+ 0
+ ],
+ [
+ -87.887867,
+ 42.942012,
+ 0
+ ],
+ [
+ -87.887871,
+ 42.942015,
+ 0
+ ],
+ [
+ -87.887871,
+ 42.942018,
+ 0
+ ],
+ [
+ -87.887874,
+ 42.942022,
+ 0
+ ],
+ [
+ -87.887874,
+ 42.942025,
+ 0
+ ],
+ [
+ -87.887877,
+ 42.942028,
+ 0
+ ],
+ [
+ -87.88788,
+ 42.942031,
+ 0
+ ],
+ [
+ -87.88788,
+ 42.942035,
+ 0
+ ],
+ [
+ -87.887883,
+ 42.942038,
+ 0
+ ],
+ [
+ -87.887887,
+ 42.942038,
+ 0
+ ],
+ [
+ -87.88789,
+ 42.942038,
+ 0
+ ],
+ [
+ -87.887893,
+ 42.942041,
+ 0
+ ],
+ [
+ -87.887896,
+ 42.942041,
+ 0
+ ],
+ [
+ -87.8879,
+ 42.942041,
+ 0
+ ],
+ [
+ -87.887903,
+ 42.942041,
+ 0
+ ],
+ [
+ -87.887906,
+ 42.942041,
+ 0
+ ],
+ [
+ -87.887909,
+ 42.942041,
+ 0
+ ],
+ [
+ -87.887913,
+ 42.942041,
+ 0
+ ],
+ [
+ -87.887916,
+ 42.942041,
+ 0
+ ],
+ [
+ -87.887919,
+ 42.942041,
+ 0
+ ],
+ [
+ -87.887922,
+ 42.942044,
+ 0
+ ],
+ [
+ -87.887926,
+ 42.942044,
+ 0
+ ],
+ [
+ -87.887929,
+ 42.942044,
+ 0
+ ],
+ [
+ -87.887932,
+ 42.942044,
+ 0
+ ],
+ [
+ -87.887935,
+ 42.942048,
+ 0
+ ],
+ [
+ -87.887938,
+ 42.942048,
+ 0
+ ],
+ [
+ -87.887942,
+ 42.942048,
+ 0
+ ],
+ [
+ -87.887945,
+ 42.942051,
+ 0
+ ],
+ [
+ -87.887948,
+ 42.942051,
+ 0
+ ],
+ [
+ -87.887951,
+ 42.942051,
+ 0
+ ],
+ [
+ -87.887955,
+ 42.942054,
+ 0
+ ],
+ [
+ -87.887958,
+ 42.942054,
+ 0
+ ],
+ [
+ -87.887961,
+ 42.942057,
+ 0
+ ],
+ [
+ -87.887964,
+ 42.942061,
+ 0
+ ],
+ [
+ -87.887968,
+ 42.942061,
+ 0
+ ],
+ [
+ -87.887971,
+ 42.942064,
+ 0
+ ],
+ [
+ -87.887974,
+ 42.942064,
+ 0
+ ],
+ [
+ -87.887977,
+ 42.942064,
+ 0
+ ],
+ [
+ -87.88798,
+ 42.942064,
+ 0
+ ],
+ [
+ -87.887984,
+ 42.942064,
+ 0
+ ],
+ [
+ -87.887987,
+ 42.942064,
+ 0
+ ],
+ [
+ -87.88799,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.887993,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.887997,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888003,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888006,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.88801,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888013,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888016,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888019,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888023,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888026,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888032,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888035,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888039,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888042,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888045,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888048,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888052,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888055,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888058,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888061,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888065,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888068,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888071,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888074,
+ 42.942067,
+ 0
+ ],
+ [
+ -87.888074,
+ 42.942067,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "geom_imcoords": [
+ [
+ 226,
+ 317
+ ],
+ [
+ 225,
+ 318
+ ],
+ [
+ 224,
+ 318
+ ],
+ [
+ 223,
+ 318
+ ],
+ [
+ 222,
+ 318
+ ],
+ [
+ 221,
+ 318
+ ],
+ [
+ 221,
+ 319
+ ],
+ [
+ 220,
+ 320
+ ],
+ [
+ 219,
+ 321
+ ],
+ [
+ 218,
+ 322
+ ],
+ [
+ 217,
+ 323
+ ],
+ [
+ 216,
+ 324
+ ],
+ [
+ 215,
+ 325
+ ],
+ [
+ 214,
+ 326
+ ],
+ [
+ 213,
+ 327
+ ],
+ [
+ 212,
+ 328
+ ],
+ [
+ 211,
+ 328
+ ],
+ [
+ 210,
+ 328
+ ],
+ [
+ 209,
+ 329
+ ],
+ [
+ 208,
+ 329
+ ],
+ [
+ 207,
+ 330
+ ],
+ [
+ 206,
+ 330
+ ],
+ [
+ 205,
+ 331
+ ],
+ [
+ 204,
+ 331
+ ],
+ [
+ 203,
+ 332
+ ],
+ [
+ 202,
+ 332
+ ],
+ [
+ 201,
+ 333
+ ],
+ [
+ 200,
+ 333
+ ],
+ [
+ 199,
+ 334
+ ],
+ [
+ 198,
+ 334
+ ],
+ [
+ 197,
+ 335
+ ],
+ [
+ 196,
+ 335
+ ],
+ [
+ 195,
+ 336
+ ],
+ [
+ 194,
+ 336
+ ],
+ [
+ 193,
+ 337
+ ],
+ [
+ 192,
+ 337
+ ],
+ [
+ 191,
+ 338
+ ],
+ [
+ 190,
+ 338
+ ],
+ [
+ 189,
+ 339
+ ],
+ [
+ 188,
+ 339
+ ],
+ [
+ 187,
+ 339
+ ],
+ [
+ 186,
+ 339
+ ],
+ [
+ 185,
+ 339
+ ],
+ [
+ 184,
+ 339
+ ],
+ [
+ 183,
+ 340
+ ],
+ [
+ 182,
+ 340
+ ],
+ [
+ 181,
+ 340
+ ],
+ [
+ 180,
+ 340
+ ],
+ [
+ 179,
+ 340
+ ],
+ [
+ 178,
+ 340
+ ],
+ [
+ 177,
+ 341
+ ],
+ [
+ 176,
+ 341
+ ],
+ [
+ 175,
+ 341
+ ],
+ [
+ 174,
+ 341
+ ],
+ [
+ 173,
+ 341
+ ],
+ [
+ 172,
+ 341
+ ],
+ [
+ 171,
+ 341
+ ],
+ [
+ 170,
+ 341
+ ],
+ [
+ 169,
+ 341
+ ],
+ [
+ 168,
+ 342
+ ],
+ [
+ 167,
+ 342
+ ],
+ [
+ 166,
+ 342
+ ],
+ [
+ 165,
+ 342
+ ],
+ [
+ 164,
+ 343
+ ],
+ [
+ 163,
+ 343
+ ],
+ [
+ 162,
+ 343
+ ],
+ [
+ 161,
+ 344
+ ],
+ [
+ 160,
+ 344
+ ],
+ [
+ 159,
+ 344
+ ],
+ [
+ 158,
+ 345
+ ],
+ [
+ 157,
+ 345
+ ],
+ [
+ 156,
+ 346
+ ],
+ [
+ 155,
+ 346
+ ],
+ [
+ 154,
+ 347
+ ],
+ [
+ 153,
+ 348
+ ],
+ [
+ 153,
+ 349
+ ],
+ [
+ 152,
+ 350
+ ],
+ [
+ 152,
+ 351
+ ],
+ [
+ 152,
+ 352
+ ],
+ [
+ 153,
+ 353
+ ],
+ [
+ 153,
+ 354
+ ],
+ [
+ 153,
+ 355
+ ],
+ [
+ 154,
+ 356
+ ],
+ [
+ 155,
+ 357
+ ],
+ [
+ 156,
+ 358
+ ],
+ [
+ 157,
+ 358
+ ],
+ [
+ 158,
+ 359
+ ],
+ [
+ 158,
+ 360
+ ],
+ [
+ 158,
+ 361
+ ],
+ [
+ 158,
+ 362
+ ],
+ [
+ 158,
+ 363
+ ],
+ [
+ 157,
+ 364
+ ],
+ [
+ 156,
+ 365
+ ],
+ [
+ 156,
+ 366
+ ],
+ [
+ 155,
+ 367
+ ],
+ [
+ 155,
+ 368
+ ],
+ [
+ 155,
+ 369
+ ],
+ [
+ 155,
+ 370
+ ],
+ [
+ 155,
+ 371
+ ],
+ [
+ 155,
+ 372
+ ],
+ [
+ 156,
+ 372
+ ],
+ [
+ 157,
+ 373
+ ],
+ [
+ 158,
+ 374
+ ],
+ [
+ 159,
+ 375
+ ],
+ [
+ 160,
+ 376
+ ],
+ [
+ 161,
+ 376
+ ],
+ [
+ 162,
+ 377
+ ],
+ [
+ 163,
+ 377
+ ],
+ [
+ 164,
+ 377
+ ],
+ [
+ 165,
+ 378
+ ],
+ [
+ 166,
+ 378
+ ],
+ [
+ 167,
+ 379
+ ],
+ [
+ 168,
+ 379
+ ],
+ [
+ 169,
+ 380
+ ],
+ [
+ 169,
+ 381
+ ],
+ [
+ 170,
+ 382
+ ],
+ [
+ 171,
+ 383
+ ],
+ [
+ 172,
+ 384
+ ],
+ [
+ 173,
+ 385
+ ],
+ [
+ 174,
+ 386
+ ],
+ [
+ 174,
+ 387
+ ],
+ [
+ 175,
+ 388
+ ],
+ [
+ 176,
+ 389
+ ],
+ [
+ 177,
+ 390
+ ],
+ [
+ 178,
+ 391
+ ],
+ [
+ 179,
+ 392
+ ],
+ [
+ 180,
+ 393
+ ],
+ [
+ 180,
+ 394
+ ],
+ [
+ 181,
+ 395
+ ],
+ [
+ 181,
+ 396
+ ],
+ [
+ 182,
+ 397
+ ],
+ [
+ 183,
+ 398
+ ],
+ [
+ 184,
+ 399
+ ],
+ [
+ 185,
+ 400
+ ],
+ [
+ 186,
+ 401
+ ],
+ [
+ 187,
+ 402
+ ],
+ [
+ 188,
+ 402
+ ],
+ [
+ 189,
+ 403
+ ],
+ [
+ 190,
+ 404
+ ],
+ [
+ 191,
+ 405
+ ],
+ [
+ 192,
+ 405
+ ],
+ [
+ 193,
+ 406
+ ],
+ [
+ 194,
+ 406
+ ],
+ [
+ 195,
+ 407
+ ],
+ [
+ 196,
+ 408
+ ],
+ [
+ 197,
+ 409
+ ],
+ [
+ 198,
+ 410
+ ],
+ [
+ 199,
+ 411
+ ],
+ [
+ 200,
+ 412
+ ],
+ [
+ 201,
+ 413
+ ],
+ [
+ 202,
+ 414
+ ],
+ [
+ 203,
+ 415
+ ],
+ [
+ 204,
+ 415
+ ],
+ [
+ 205,
+ 416
+ ],
+ [
+ 206,
+ 416
+ ],
+ [
+ 207,
+ 417
+ ],
+ [
+ 208,
+ 417
+ ],
+ [
+ 209,
+ 417
+ ],
+ [
+ 210,
+ 417
+ ],
+ [
+ 211,
+ 418
+ ],
+ [
+ 212,
+ 418
+ ],
+ [
+ 213,
+ 418
+ ],
+ [
+ 214,
+ 418
+ ],
+ [
+ 215,
+ 418
+ ],
+ [
+ 216,
+ 419
+ ],
+ [
+ 217,
+ 419
+ ],
+ [
+ 218,
+ 419
+ ],
+ [
+ 219,
+ 419
+ ],
+ [
+ 220,
+ 420
+ ],
+ [
+ 221,
+ 420
+ ],
+ [
+ 222,
+ 421
+ ],
+ [
+ 223,
+ 421
+ ],
+ [
+ 224,
+ 422
+ ],
+ [
+ 225,
+ 422
+ ],
+ [
+ 226,
+ 423
+ ],
+ [
+ 227,
+ 423
+ ],
+ [
+ 228,
+ 424
+ ],
+ [
+ 229,
+ 424
+ ],
+ [
+ 230,
+ 425
+ ],
+ [
+ 231,
+ 426
+ ],
+ [
+ 232,
+ 426
+ ],
+ [
+ 233,
+ 427
+ ],
+ [
+ 234,
+ 427
+ ],
+ [
+ 235,
+ 428
+ ],
+ [
+ 236,
+ 428
+ ],
+ [
+ 237,
+ 429
+ ],
+ [
+ 238,
+ 429
+ ],
+ [
+ 239,
+ 429
+ ],
+ [
+ 240,
+ 429
+ ],
+ [
+ 241,
+ 429
+ ],
+ [
+ 242,
+ 429
+ ],
+ [
+ 243,
+ 429
+ ],
+ [
+ 244,
+ 428
+ ],
+ [
+ 245,
+ 427
+ ],
+ [
+ 246,
+ 426
+ ],
+ [
+ 247,
+ 425
+ ],
+ [
+ 247,
+ 424
+ ],
+ [
+ 247,
+ 423
+ ],
+ [
+ 247,
+ 422
+ ],
+ [
+ 247,
+ 421
+ ],
+ [
+ 248,
+ 420
+ ],
+ [
+ 248,
+ 419
+ ],
+ [
+ 248,
+ 418
+ ],
+ [
+ 249,
+ 417
+ ],
+ [
+ 250,
+ 416
+ ],
+ [
+ 251,
+ 415
+ ],
+ [
+ 252,
+ 414
+ ],
+ [
+ 253,
+ 414
+ ],
+ [
+ 254,
+ 413
+ ],
+ [
+ 255,
+ 413
+ ],
+ [
+ 256,
+ 413
+ ],
+ [
+ 257,
+ 412
+ ],
+ [
+ 258,
+ 412
+ ],
+ [
+ 259,
+ 411
+ ],
+ [
+ 260,
+ 411
+ ],
+ [
+ 261,
+ 411
+ ],
+ [
+ 262,
+ 410
+ ],
+ [
+ 263,
+ 410
+ ],
+ [
+ 264,
+ 409
+ ],
+ [
+ 265,
+ 408
+ ],
+ [
+ 266,
+ 407
+ ],
+ [
+ 267,
+ 407
+ ],
+ [
+ 268,
+ 406
+ ],
+ [
+ 269,
+ 406
+ ],
+ [
+ 270,
+ 405
+ ],
+ [
+ 271,
+ 405
+ ],
+ [
+ 272,
+ 404
+ ],
+ [
+ 273,
+ 403
+ ],
+ [
+ 274,
+ 402
+ ],
+ [
+ 274,
+ 401
+ ],
+ [
+ 275,
+ 400
+ ],
+ [
+ 276,
+ 400
+ ],
+ [
+ 277,
+ 400
+ ],
+ [
+ 278,
+ 400
+ ],
+ [
+ 279,
+ 399
+ ],
+ [
+ 280,
+ 399
+ ],
+ [
+ 281,
+ 399
+ ],
+ [
+ 282,
+ 399
+ ],
+ [
+ 283,
+ 399
+ ],
+ [
+ 284,
+ 398
+ ],
+ [
+ 285,
+ 398
+ ],
+ [
+ 286,
+ 398
+ ],
+ [
+ 287,
+ 398
+ ],
+ [
+ 288,
+ 399
+ ],
+ [
+ 289,
+ 399
+ ],
+ [
+ 290,
+ 399
+ ],
+ [
+ 291,
+ 399
+ ],
+ [
+ 292,
+ 400
+ ],
+ [
+ 293,
+ 400
+ ],
+ [
+ 294,
+ 400
+ ],
+ [
+ 295,
+ 400
+ ],
+ [
+ 296,
+ 400
+ ],
+ [
+ 297,
+ 400
+ ],
+ [
+ 298,
+ 399
+ ],
+ [
+ 299,
+ 399
+ ],
+ [
+ 300,
+ 398
+ ],
+ [
+ 301,
+ 397
+ ],
+ [
+ 302,
+ 396
+ ],
+ [
+ 303,
+ 395
+ ],
+ [
+ 303,
+ 394
+ ],
+ [
+ 303,
+ 393
+ ],
+ [
+ 304,
+ 392
+ ],
+ [
+ 304,
+ 391
+ ],
+ [
+ 304,
+ 390
+ ],
+ [
+ 304,
+ 389
+ ],
+ [
+ 304,
+ 388
+ ],
+ [
+ 304,
+ 387
+ ],
+ [
+ 304,
+ 386
+ ],
+ [
+ 304,
+ 385
+ ],
+ [
+ 304,
+ 384
+ ],
+ [
+ 304,
+ 383
+ ],
+ [
+ 304,
+ 382
+ ],
+ [
+ 304,
+ 381
+ ],
+ [
+ 304,
+ 380
+ ],
+ [
+ 303,
+ 379
+ ],
+ [
+ 303,
+ 378
+ ],
+ [
+ 303,
+ 377
+ ],
+ [
+ 303,
+ 376
+ ],
+ [
+ 303,
+ 375
+ ],
+ [
+ 303,
+ 374
+ ],
+ [
+ 303,
+ 373
+ ],
+ [
+ 304,
+ 372
+ ],
+ [
+ 304,
+ 371
+ ],
+ [
+ 304,
+ 370
+ ],
+ [
+ 303,
+ 369
+ ],
+ [
+ 303,
+ 368
+ ],
+ [
+ 303,
+ 367
+ ],
+ [
+ 303,
+ 366
+ ],
+ [
+ 303,
+ 365
+ ],
+ [
+ 303,
+ 364
+ ],
+ [
+ 303,
+ 363
+ ],
+ [
+ 303,
+ 362
+ ],
+ [
+ 303,
+ 361
+ ],
+ [
+ 303,
+ 360
+ ],
+ [
+ 302,
+ 359
+ ],
+ [
+ 302,
+ 358
+ ],
+ [
+ 302,
+ 357
+ ],
+ [
+ 302,
+ 356
+ ],
+ [
+ 302,
+ 355
+ ],
+ [
+ 302,
+ 354
+ ],
+ [
+ 302,
+ 353
+ ],
+ [
+ 302,
+ 352
+ ],
+ [
+ 301,
+ 351
+ ],
+ [
+ 302,
+ 350
+ ],
+ [
+ 302,
+ 349
+ ],
+ [
+ 302,
+ 348
+ ],
+ [
+ 302,
+ 347
+ ],
+ [
+ 302,
+ 346
+ ],
+ [
+ 302,
+ 345
+ ],
+ [
+ 302,
+ 344
+ ],
+ [
+ 301,
+ 343
+ ],
+ [
+ 301,
+ 342
+ ],
+ [
+ 300,
+ 341
+ ],
+ [
+ 299,
+ 340
+ ],
+ [
+ 298,
+ 340
+ ],
+ [
+ 297,
+ 339
+ ],
+ [
+ 296,
+ 338
+ ],
+ [
+ 295,
+ 338
+ ],
+ [
+ 294,
+ 337
+ ],
+ [
+ 293,
+ 336
+ ],
+ [
+ 292,
+ 335
+ ],
+ [
+ 291,
+ 335
+ ],
+ [
+ 290,
+ 334
+ ],
+ [
+ 289,
+ 333
+ ],
+ [
+ 289,
+ 332
+ ],
+ [
+ 288,
+ 331
+ ],
+ [
+ 288,
+ 330
+ ],
+ [
+ 287,
+ 329
+ ],
+ [
+ 286,
+ 328
+ ],
+ [
+ 286,
+ 327
+ ],
+ [
+ 285,
+ 326
+ ],
+ [
+ 284,
+ 326
+ ],
+ [
+ 283,
+ 326
+ ],
+ [
+ 282,
+ 325
+ ],
+ [
+ 281,
+ 325
+ ],
+ [
+ 280,
+ 325
+ ],
+ [
+ 279,
+ 325
+ ],
+ [
+ 278,
+ 325
+ ],
+ [
+ 277,
+ 325
+ ],
+ [
+ 276,
+ 325
+ ],
+ [
+ 275,
+ 325
+ ],
+ [
+ 274,
+ 325
+ ],
+ [
+ 273,
+ 324
+ ],
+ [
+ 272,
+ 324
+ ],
+ [
+ 271,
+ 324
+ ],
+ [
+ 270,
+ 324
+ ],
+ [
+ 269,
+ 323
+ ],
+ [
+ 268,
+ 323
+ ],
+ [
+ 267,
+ 323
+ ],
+ [
+ 266,
+ 322
+ ],
+ [
+ 265,
+ 322
+ ],
+ [
+ 264,
+ 322
+ ],
+ [
+ 263,
+ 321
+ ],
+ [
+ 262,
+ 321
+ ],
+ [
+ 261,
+ 320
+ ],
+ [
+ 260,
+ 319
+ ],
+ [
+ 259,
+ 319
+ ],
+ [
+ 258,
+ 318
+ ],
+ [
+ 257,
+ 318
+ ],
+ [
+ 256,
+ 318
+ ],
+ [
+ 255,
+ 318
+ ],
+ [
+ 254,
+ 318
+ ],
+ [
+ 253,
+ 318
+ ],
+ [
+ 252,
+ 317
+ ],
+ [
+ 251,
+ 317
+ ],
+ [
+ 250,
+ 317
+ ],
+ [
+ 249,
+ 317
+ ],
+ [
+ 248,
+ 317
+ ],
+ [
+ 247,
+ 317
+ ],
+ [
+ 246,
+ 317
+ ],
+ [
+ 245,
+ 317
+ ],
+ [
+ 244,
+ 317
+ ],
+ [
+ 243,
+ 317
+ ],
+ [
+ 242,
+ 317
+ ],
+ [
+ 241,
+ 317
+ ],
+ [
+ 240,
+ 317
+ ],
+ [
+ 239,
+ 317
+ ],
+ [
+ 238,
+ 317
+ ],
+ [
+ 237,
+ 317
+ ],
+ [
+ 236,
+ 317
+ ],
+ [
+ 235,
+ 317
+ ],
+ [
+ 234,
+ 317
+ ],
+ [
+ 233,
+ 317
+ ],
+ [
+ 232,
+ 317
+ ],
+ [
+ 231,
+ 317
+ ],
+ [
+ 230,
+ 317
+ ],
+ [
+ 229,
+ 317
+ ],
+ [
+ 228,
+ 317
+ ],
+ [
+ 227,
+ 317
+ ],
+ [
+ 226,
+ 317
+ ]
+ ],
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 226,
+ 317
+ ],
+ [
+ 225,
+ 318
+ ],
+ [
+ 224,
+ 318
+ ],
+ [
+ 223,
+ 318
+ ],
+ [
+ 222,
+ 318
+ ],
+ [
+ 221,
+ 318
+ ],
+ [
+ 221,
+ 319
+ ],
+ [
+ 220,
+ 320
+ ],
+ [
+ 219,
+ 321
+ ],
+ [
+ 218,
+ 322
+ ],
+ [
+ 217,
+ 323
+ ],
+ [
+ 216,
+ 324
+ ],
+ [
+ 215,
+ 325
+ ],
+ [
+ 214,
+ 326
+ ],
+ [
+ 213,
+ 327
+ ],
+ [
+ 212,
+ 328
+ ],
+ [
+ 211,
+ 328
+ ],
+ [
+ 210,
+ 328
+ ],
+ [
+ 209,
+ 329
+ ],
+ [
+ 208,
+ 329
+ ],
+ [
+ 207,
+ 330
+ ],
+ [
+ 206,
+ 330
+ ],
+ [
+ 205,
+ 331
+ ],
+ [
+ 204,
+ 331
+ ],
+ [
+ 203,
+ 332
+ ],
+ [
+ 202,
+ 332
+ ],
+ [
+ 201,
+ 333
+ ],
+ [
+ 200,
+ 333
+ ],
+ [
+ 199,
+ 334
+ ],
+ [
+ 198,
+ 334
+ ],
+ [
+ 197,
+ 335
+ ],
+ [
+ 196,
+ 335
+ ],
+ [
+ 195,
+ 336
+ ],
+ [
+ 194,
+ 336
+ ],
+ [
+ 193,
+ 337
+ ],
+ [
+ 192,
+ 337
+ ],
+ [
+ 191,
+ 338
+ ],
+ [
+ 190,
+ 338
+ ],
+ [
+ 189,
+ 339
+ ],
+ [
+ 188,
+ 339
+ ],
+ [
+ 187,
+ 339
+ ],
+ [
+ 186,
+ 339
+ ],
+ [
+ 185,
+ 339
+ ],
+ [
+ 184,
+ 339
+ ],
+ [
+ 183,
+ 340
+ ],
+ [
+ 182,
+ 340
+ ],
+ [
+ 181,
+ 340
+ ],
+ [
+ 180,
+ 340
+ ],
+ [
+ 179,
+ 340
+ ],
+ [
+ 178,
+ 340
+ ],
+ [
+ 177,
+ 341
+ ],
+ [
+ 176,
+ 341
+ ],
+ [
+ 175,
+ 341
+ ],
+ [
+ 174,
+ 341
+ ],
+ [
+ 173,
+ 341
+ ],
+ [
+ 172,
+ 341
+ ],
+ [
+ 171,
+ 341
+ ],
+ [
+ 170,
+ 341
+ ],
+ [
+ 169,
+ 341
+ ],
+ [
+ 168,
+ 342
+ ],
+ [
+ 167,
+ 342
+ ],
+ [
+ 166,
+ 342
+ ],
+ [
+ 165,
+ 342
+ ],
+ [
+ 164,
+ 343
+ ],
+ [
+ 163,
+ 343
+ ],
+ [
+ 162,
+ 343
+ ],
+ [
+ 161,
+ 344
+ ],
+ [
+ 160,
+ 344
+ ],
+ [
+ 159,
+ 344
+ ],
+ [
+ 158,
+ 345
+ ],
+ [
+ 157,
+ 345
+ ],
+ [
+ 156,
+ 346
+ ],
+ [
+ 155,
+ 346
+ ],
+ [
+ 154,
+ 347
+ ],
+ [
+ 153,
+ 348
+ ],
+ [
+ 153,
+ 349
+ ],
+ [
+ 152,
+ 350
+ ],
+ [
+ 152,
+ 351
+ ],
+ [
+ 152,
+ 352
+ ],
+ [
+ 153,
+ 353
+ ],
+ [
+ 153,
+ 354
+ ],
+ [
+ 153,
+ 355
+ ],
+ [
+ 154,
+ 356
+ ],
+ [
+ 155,
+ 357
+ ],
+ [
+ 156,
+ 358
+ ],
+ [
+ 157,
+ 358
+ ],
+ [
+ 158,
+ 359
+ ],
+ [
+ 158,
+ 360
+ ],
+ [
+ 158,
+ 361
+ ],
+ [
+ 158,
+ 362
+ ],
+ [
+ 158,
+ 363
+ ],
+ [
+ 157,
+ 364
+ ],
+ [
+ 156,
+ 365
+ ],
+ [
+ 156,
+ 366
+ ],
+ [
+ 155,
+ 367
+ ],
+ [
+ 155,
+ 368
+ ],
+ [
+ 155,
+ 369
+ ],
+ [
+ 155,
+ 370
+ ],
+ [
+ 155,
+ 371
+ ],
+ [
+ 155,
+ 372
+ ],
+ [
+ 156,
+ 372
+ ],
+ [
+ 157,
+ 373
+ ],
+ [
+ 158,
+ 374
+ ],
+ [
+ 159,
+ 375
+ ],
+ [
+ 160,
+ 376
+ ],
+ [
+ 161,
+ 376
+ ],
+ [
+ 162,
+ 377
+ ],
+ [
+ 163,
+ 377
+ ],
+ [
+ 164,
+ 377
+ ],
+ [
+ 165,
+ 378
+ ],
+ [
+ 166,
+ 378
+ ],
+ [
+ 167,
+ 379
+ ],
+ [
+ 168,
+ 379
+ ],
+ [
+ 169,
+ 380
+ ],
+ [
+ 169,
+ 381
+ ],
+ [
+ 170,
+ 382
+ ],
+ [
+ 171,
+ 383
+ ],
+ [
+ 172,
+ 384
+ ],
+ [
+ 173,
+ 385
+ ],
+ [
+ 174,
+ 386
+ ],
+ [
+ 174,
+ 387
+ ],
+ [
+ 175,
+ 388
+ ],
+ [
+ 176,
+ 389
+ ],
+ [
+ 177,
+ 390
+ ],
+ [
+ 178,
+ 391
+ ],
+ [
+ 179,
+ 392
+ ],
+ [
+ 180,
+ 393
+ ],
+ [
+ 180,
+ 394
+ ],
+ [
+ 181,
+ 395
+ ],
+ [
+ 181,
+ 396
+ ],
+ [
+ 182,
+ 397
+ ],
+ [
+ 183,
+ 398
+ ],
+ [
+ 184,
+ 399
+ ],
+ [
+ 185,
+ 400
+ ],
+ [
+ 186,
+ 401
+ ],
+ [
+ 187,
+ 402
+ ],
+ [
+ 188,
+ 402
+ ],
+ [
+ 189,
+ 403
+ ],
+ [
+ 190,
+ 404
+ ],
+ [
+ 191,
+ 405
+ ],
+ [
+ 192,
+ 405
+ ],
+ [
+ 193,
+ 406
+ ],
+ [
+ 194,
+ 406
+ ],
+ [
+ 195,
+ 407
+ ],
+ [
+ 196,
+ 408
+ ],
+ [
+ 197,
+ 409
+ ],
+ [
+ 198,
+ 410
+ ],
+ [
+ 199,
+ 411
+ ],
+ [
+ 200,
+ 412
+ ],
+ [
+ 201,
+ 413
+ ],
+ [
+ 202,
+ 414
+ ],
+ [
+ 203,
+ 415
+ ],
+ [
+ 204,
+ 415
+ ],
+ [
+ 205,
+ 416
+ ],
+ [
+ 206,
+ 416
+ ],
+ [
+ 207,
+ 417
+ ],
+ [
+ 208,
+ 417
+ ],
+ [
+ 209,
+ 417
+ ],
+ [
+ 210,
+ 417
+ ],
+ [
+ 211,
+ 418
+ ],
+ [
+ 212,
+ 418
+ ],
+ [
+ 213,
+ 418
+ ],
+ [
+ 214,
+ 418
+ ],
+ [
+ 215,
+ 418
+ ],
+ [
+ 216,
+ 419
+ ],
+ [
+ 217,
+ 419
+ ],
+ [
+ 218,
+ 419
+ ],
+ [
+ 219,
+ 419
+ ],
+ [
+ 220,
+ 420
+ ],
+ [
+ 221,
+ 420
+ ],
+ [
+ 222,
+ 421
+ ],
+ [
+ 223,
+ 421
+ ],
+ [
+ 224,
+ 422
+ ],
+ [
+ 225,
+ 422
+ ],
+ [
+ 226,
+ 423
+ ],
+ [
+ 227,
+ 423
+ ],
+ [
+ 228,
+ 424
+ ],
+ [
+ 229,
+ 424
+ ],
+ [
+ 230,
+ 425
+ ],
+ [
+ 231,
+ 426
+ ],
+ [
+ 232,
+ 426
+ ],
+ [
+ 233,
+ 427
+ ],
+ [
+ 234,
+ 427
+ ],
+ [
+ 235,
+ 428
+ ],
+ [
+ 236,
+ 428
+ ],
+ [
+ 237,
+ 429
+ ],
+ [
+ 238,
+ 429
+ ],
+ [
+ 239,
+ 429
+ ],
+ [
+ 240,
+ 429
+ ],
+ [
+ 241,
+ 429
+ ],
+ [
+ 242,
+ 429
+ ],
+ [
+ 243,
+ 429
+ ],
+ [
+ 244,
+ 428
+ ],
+ [
+ 245,
+ 427
+ ],
+ [
+ 246,
+ 426
+ ],
+ [
+ 247,
+ 425
+ ],
+ [
+ 247,
+ 424
+ ],
+ [
+ 247,
+ 423
+ ],
+ [
+ 247,
+ 422
+ ],
+ [
+ 247,
+ 421
+ ],
+ [
+ 248,
+ 420
+ ],
+ [
+ 248,
+ 419
+ ],
+ [
+ 248,
+ 418
+ ],
+ [
+ 249,
+ 417
+ ],
+ [
+ 250,
+ 416
+ ],
+ [
+ 251,
+ 415
+ ],
+ [
+ 252,
+ 414
+ ],
+ [
+ 253,
+ 414
+ ],
+ [
+ 254,
+ 413
+ ],
+ [
+ 255,
+ 413
+ ],
+ [
+ 256,
+ 413
+ ],
+ [
+ 257,
+ 412
+ ],
+ [
+ 258,
+ 412
+ ],
+ [
+ 259,
+ 411
+ ],
+ [
+ 260,
+ 411
+ ],
+ [
+ 261,
+ 411
+ ],
+ [
+ 262,
+ 410
+ ],
+ [
+ 263,
+ 410
+ ],
+ [
+ 264,
+ 409
+ ],
+ [
+ 265,
+ 408
+ ],
+ [
+ 266,
+ 407
+ ],
+ [
+ 267,
+ 407
+ ],
+ [
+ 268,
+ 406
+ ],
+ [
+ 269,
+ 406
+ ],
+ [
+ 270,
+ 405
+ ],
+ [
+ 271,
+ 405
+ ],
+ [
+ 272,
+ 404
+ ],
+ [
+ 273,
+ 403
+ ],
+ [
+ 274,
+ 402
+ ],
+ [
+ 274,
+ 401
+ ],
+ [
+ 275,
+ 400
+ ],
+ [
+ 276,
+ 400
+ ],
+ [
+ 277,
+ 400
+ ],
+ [
+ 278,
+ 400
+ ],
+ [
+ 279,
+ 399
+ ],
+ [
+ 280,
+ 399
+ ],
+ [
+ 281,
+ 399
+ ],
+ [
+ 282,
+ 399
+ ],
+ [
+ 283,
+ 399
+ ],
+ [
+ 284,
+ 398
+ ],
+ [
+ 285,
+ 398
+ ],
+ [
+ 286,
+ 398
+ ],
+ [
+ 287,
+ 398
+ ],
+ [
+ 288,
+ 399
+ ],
+ [
+ 289,
+ 399
+ ],
+ [
+ 290,
+ 399
+ ],
+ [
+ 291,
+ 399
+ ],
+ [
+ 292,
+ 400
+ ],
+ [
+ 293,
+ 400
+ ],
+ [
+ 294,
+ 400
+ ],
+ [
+ 295,
+ 400
+ ],
+ [
+ 296,
+ 400
+ ],
+ [
+ 297,
+ 400
+ ],
+ [
+ 298,
+ 399
+ ],
+ [
+ 299,
+ 399
+ ],
+ [
+ 300,
+ 398
+ ],
+ [
+ 301,
+ 397
+ ],
+ [
+ 302,
+ 396
+ ],
+ [
+ 303,
+ 395
+ ],
+ [
+ 303,
+ 394
+ ],
+ [
+ 303,
+ 393
+ ],
+ [
+ 304,
+ 392
+ ],
+ [
+ 304,
+ 391
+ ],
+ [
+ 304,
+ 390
+ ],
+ [
+ 304,
+ 389
+ ],
+ [
+ 304,
+ 388
+ ],
+ [
+ 304,
+ 387
+ ],
+ [
+ 304,
+ 386
+ ],
+ [
+ 304,
+ 385
+ ],
+ [
+ 304,
+ 384
+ ],
+ [
+ 304,
+ 383
+ ],
+ [
+ 304,
+ 382
+ ],
+ [
+ 304,
+ 381
+ ],
+ [
+ 304,
+ 380
+ ],
+ [
+ 303,
+ 379
+ ],
+ [
+ 303,
+ 378
+ ],
+ [
+ 303,
+ 377
+ ],
+ [
+ 303,
+ 376
+ ],
+ [
+ 303,
+ 375
+ ],
+ [
+ 303,
+ 374
+ ],
+ [
+ 303,
+ 373
+ ],
+ [
+ 304,
+ 372
+ ],
+ [
+ 304,
+ 371
+ ],
+ [
+ 304,
+ 370
+ ],
+ [
+ 303,
+ 369
+ ],
+ [
+ 303,
+ 368
+ ],
+ [
+ 303,
+ 367
+ ],
+ [
+ 303,
+ 366
+ ],
+ [
+ 303,
+ 365
+ ],
+ [
+ 303,
+ 364
+ ],
+ [
+ 303,
+ 363
+ ],
+ [
+ 303,
+ 362
+ ],
+ [
+ 303,
+ 361
+ ],
+ [
+ 303,
+ 360
+ ],
+ [
+ 302,
+ 359
+ ],
+ [
+ 302,
+ 358
+ ],
+ [
+ 302,
+ 357
+ ],
+ [
+ 302,
+ 356
+ ],
+ [
+ 302,
+ 355
+ ],
+ [
+ 302,
+ 354
+ ],
+ [
+ 302,
+ 353
+ ],
+ [
+ 302,
+ 352
+ ],
+ [
+ 301,
+ 351
+ ],
+ [
+ 302,
+ 350
+ ],
+ [
+ 302,
+ 349
+ ],
+ [
+ 302,
+ 348
+ ],
+ [
+ 302,
+ 347
+ ],
+ [
+ 302,
+ 346
+ ],
+ [
+ 302,
+ 345
+ ],
+ [
+ 302,
+ 344
+ ],
+ [
+ 301,
+ 343
+ ],
+ [
+ 301,
+ 342
+ ],
+ [
+ 300,
+ 341
+ ],
+ [
+ 299,
+ 340
+ ],
+ [
+ 298,
+ 340
+ ],
+ [
+ 297,
+ 339
+ ],
+ [
+ 296,
+ 338
+ ],
+ [
+ 295,
+ 338
+ ],
+ [
+ 294,
+ 337
+ ],
+ [
+ 293,
+ 336
+ ],
+ [
+ 292,
+ 335
+ ],
+ [
+ 291,
+ 335
+ ],
+ [
+ 290,
+ 334
+ ],
+ [
+ 289,
+ 333
+ ],
+ [
+ 289,
+ 332
+ ],
+ [
+ 288,
+ 331
+ ],
+ [
+ 288,
+ 330
+ ],
+ [
+ 287,
+ 329
+ ],
+ [
+ 286,
+ 328
+ ],
+ [
+ 286,
+ 327
+ ],
+ [
+ 285,
+ 326
+ ],
+ [
+ 284,
+ 326
+ ],
+ [
+ 283,
+ 326
+ ],
+ [
+ 282,
+ 325
+ ],
+ [
+ 281,
+ 325
+ ],
+ [
+ 280,
+ 325
+ ],
+ [
+ 279,
+ 325
+ ],
+ [
+ 278,
+ 325
+ ],
+ [
+ 277,
+ 325
+ ],
+ [
+ 276,
+ 325
+ ],
+ [
+ 275,
+ 325
+ ],
+ [
+ 274,
+ 325
+ ],
+ [
+ 273,
+ 324
+ ],
+ [
+ 272,
+ 324
+ ],
+ [
+ 271,
+ 324
+ ],
+ [
+ 270,
+ 324
+ ],
+ [
+ 269,
+ 323
+ ],
+ [
+ 268,
+ 323
+ ],
+ [
+ 267,
+ 323
+ ],
+ [
+ 266,
+ 322
+ ],
+ [
+ 265,
+ 322
+ ],
+ [
+ 264,
+ 322
+ ],
+ [
+ 263,
+ 321
+ ],
+ [
+ 262,
+ 321
+ ],
+ [
+ 261,
+ 320
+ ],
+ [
+ 260,
+ 319
+ ],
+ [
+ 259,
+ 319
+ ],
+ [
+ 258,
+ 318
+ ],
+ [
+ 257,
+ 318
+ ],
+ [
+ 256,
+ 318
+ ],
+ [
+ 255,
+ 318
+ ],
+ [
+ 254,
+ 318
+ ],
+ [
+ 253,
+ 318
+ ],
+ [
+ 252,
+ 317
+ ],
+ [
+ 251,
+ 317
+ ],
+ [
+ 250,
+ 317
+ ],
+ [
+ 249,
+ 317
+ ],
+ [
+ 248,
+ 317
+ ],
+ [
+ 247,
+ 317
+ ],
+ [
+ 246,
+ 317
+ ],
+ [
+ 245,
+ 317
+ ],
+ [
+ 244,
+ 317
+ ],
+ [
+ 243,
+ 317
+ ],
+ [
+ 242,
+ 317
+ ],
+ [
+ 241,
+ 317
+ ],
+ [
+ 240,
+ 317
+ ],
+ [
+ 239,
+ 317
+ ],
+ [
+ 238,
+ 317
+ ],
+ [
+ 237,
+ 317
+ ],
+ [
+ 236,
+ 317
+ ],
+ [
+ 235,
+ 317
+ ],
+ [
+ 234,
+ 317
+ ],
+ [
+ 233,
+ 317
+ ],
+ [
+ 232,
+ 317
+ ],
+ [
+ 231,
+ 317
+ ],
+ [
+ 230,
+ 317
+ ],
+ [
+ 229,
+ 317
+ ],
+ [
+ 228,
+ 317
+ ],
+ [
+ 227,
+ 317
+ ],
+ [
+ 226,
+ 317
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "aircraft",
+ "detectionScore": 0.9915148019790649
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -87.8880473570165,
+ "center_latitude": 42.94190080805163,
+ "inferenceMetadata": {
+ "jobId": "d3c4a568-9ec7-4125-9787-2c8bfb529274",
+ "filePath": "s3://test-images-123456789123/tile.tif",
+ "receiveTime": "2023-11-09T00:11:51.948739",
+ "inferenceTime": "2023-11-09T00:11:52.480337+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -87.88823595925606,
+ 42.94219309635171,
+ -87.88774763506761,
+ 42.94255529707427
+ ],
+ "id": "1cc36910-6913-4251-88b2-a8dc238ac4f7",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.887997,
+ 42.942555,
+ 0
+ ],
+ [
+ -87.888,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.888003,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.888006,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.88801,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.888013,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.888016,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.888019,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.888023,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.888026,
+ 42.942549,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.942546,
+ 0
+ ],
+ [
+ -87.888032,
+ 42.942542,
+ 0
+ ],
+ [
+ -87.888032,
+ 42.942539,
+ 0
+ ],
+ [
+ -87.888035,
+ 42.942536,
+ 0
+ ],
+ [
+ -87.888039,
+ 42.942533,
+ 0
+ ],
+ [
+ -87.888042,
+ 42.942529,
+ 0
+ ],
+ [
+ -87.888045,
+ 42.942526,
+ 0
+ ],
+ [
+ -87.888048,
+ 42.942523,
+ 0
+ ],
+ [
+ -87.888052,
+ 42.942523,
+ 0
+ ],
+ [
+ -87.888055,
+ 42.94252,
+ 0
+ ],
+ [
+ -87.888058,
+ 42.94252,
+ 0
+ ],
+ [
+ -87.888061,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.888065,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.888068,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.888071,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.888074,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.888077,
+ 42.94251,
+ 0
+ ],
+ [
+ -87.888081,
+ 42.94251,
+ 0
+ ],
+ [
+ -87.888084,
+ 42.942507,
+ 0
+ ],
+ [
+ -87.888087,
+ 42.942507,
+ 0
+ ],
+ [
+ -87.88809,
+ 42.942504,
+ 0
+ ],
+ [
+ -87.888094,
+ 42.942504,
+ 0
+ ],
+ [
+ -87.888097,
+ 42.9425,
+ 0
+ ],
+ [
+ -87.8881,
+ 42.942497,
+ 0
+ ],
+ [
+ -87.888103,
+ 42.942497,
+ 0
+ ],
+ [
+ -87.888107,
+ 42.942494,
+ 0
+ ],
+ [
+ -87.88811,
+ 42.942494,
+ 0
+ ],
+ [
+ -87.888113,
+ 42.942491,
+ 0
+ ],
+ [
+ -87.888116,
+ 42.942491,
+ 0
+ ],
+ [
+ -87.88812,
+ 42.942487,
+ 0
+ ],
+ [
+ -87.888123,
+ 42.942487,
+ 0
+ ],
+ [
+ -87.888126,
+ 42.942487,
+ 0
+ ],
+ [
+ -87.888129,
+ 42.942487,
+ 0
+ ],
+ [
+ -87.888132,
+ 42.942487,
+ 0
+ ],
+ [
+ -87.888136,
+ 42.942484,
+ 0
+ ],
+ [
+ -87.888139,
+ 42.942484,
+ 0
+ ],
+ [
+ -87.888142,
+ 42.942484,
+ 0
+ ],
+ [
+ -87.888145,
+ 42.942484,
+ 0
+ ],
+ [
+ -87.888149,
+ 42.942484,
+ 0
+ ],
+ [
+ -87.888152,
+ 42.942481,
+ 0
+ ],
+ [
+ -87.888155,
+ 42.942481,
+ 0
+ ],
+ [
+ -87.888158,
+ 42.942481,
+ 0
+ ],
+ [
+ -87.888162,
+ 42.942481,
+ 0
+ ],
+ [
+ -87.888165,
+ 42.942481,
+ 0
+ ],
+ [
+ -87.888168,
+ 42.942481,
+ 0
+ ],
+ [
+ -87.888171,
+ 42.942481,
+ 0
+ ],
+ [
+ -87.888175,
+ 42.942481,
+ 0
+ ],
+ [
+ -87.888178,
+ 42.942481,
+ 0
+ ],
+ [
+ -87.888181,
+ 42.942481,
+ 0
+ ],
+ [
+ -87.888184,
+ 42.942478,
+ 0
+ ],
+ [
+ -87.888187,
+ 42.942478,
+ 0
+ ],
+ [
+ -87.888191,
+ 42.942478,
+ 0
+ ],
+ [
+ -87.888194,
+ 42.942478,
+ 0
+ ],
+ [
+ -87.888197,
+ 42.942478,
+ 0
+ ],
+ [
+ -87.8882,
+ 42.942474,
+ 0
+ ],
+ [
+ -87.888204,
+ 42.942474,
+ 0
+ ],
+ [
+ -87.888207,
+ 42.942474,
+ 0
+ ],
+ [
+ -87.88821,
+ 42.942474,
+ 0
+ ],
+ [
+ -87.888213,
+ 42.942471,
+ 0
+ ],
+ [
+ -87.888217,
+ 42.942471,
+ 0
+ ],
+ [
+ -87.88822,
+ 42.942471,
+ 0
+ ],
+ [
+ -87.888223,
+ 42.942468,
+ 0
+ ],
+ [
+ -87.888226,
+ 42.942468,
+ 0
+ ],
+ [
+ -87.888229,
+ 42.942465,
+ 0
+ ],
+ [
+ -87.888233,
+ 42.942462,
+ 0
+ ],
+ [
+ -87.888236,
+ 42.942458,
+ 0
+ ],
+ [
+ -87.888236,
+ 42.942455,
+ 0
+ ],
+ [
+ -87.888236,
+ 42.942452,
+ 0
+ ],
+ [
+ -87.888236,
+ 42.942449,
+ 0
+ ],
+ [
+ -87.888236,
+ 42.942445,
+ 0
+ ],
+ [
+ -87.888233,
+ 42.942442,
+ 0
+ ],
+ [
+ -87.888229,
+ 42.942439,
+ 0
+ ],
+ [
+ -87.888229,
+ 42.942436,
+ 0
+ ],
+ [
+ -87.888226,
+ 42.942432,
+ 0
+ ],
+ [
+ -87.888223,
+ 42.942429,
+ 0
+ ],
+ [
+ -87.88822,
+ 42.942426,
+ 0
+ ],
+ [
+ -87.888217,
+ 42.942423,
+ 0
+ ],
+ [
+ -87.888217,
+ 42.942419,
+ 0
+ ],
+ [
+ -87.888217,
+ 42.942416,
+ 0
+ ],
+ [
+ -87.888217,
+ 42.942413,
+ 0
+ ],
+ [
+ -87.888217,
+ 42.94241,
+ 0
+ ],
+ [
+ -87.88822,
+ 42.942407,
+ 0
+ ],
+ [
+ -87.88822,
+ 42.942403,
+ 0
+ ],
+ [
+ -87.888223,
+ 42.9424,
+ 0
+ ],
+ [
+ -87.888226,
+ 42.942397,
+ 0
+ ],
+ [
+ -87.888226,
+ 42.942394,
+ 0
+ ],
+ [
+ -87.888229,
+ 42.94239,
+ 0
+ ],
+ [
+ -87.888226,
+ 42.942387,
+ 0
+ ],
+ [
+ -87.888226,
+ 42.942384,
+ 0
+ ],
+ [
+ -87.888226,
+ 42.942381,
+ 0
+ ],
+ [
+ -87.888226,
+ 42.942377,
+ 0
+ ],
+ [
+ -87.888223,
+ 42.942374,
+ 0
+ ],
+ [
+ -87.88822,
+ 42.942371,
+ 0
+ ],
+ [
+ -87.888217,
+ 42.942371,
+ 0
+ ],
+ [
+ -87.888213,
+ 42.942368,
+ 0
+ ],
+ [
+ -87.88821,
+ 42.942364,
+ 0
+ ],
+ [
+ -87.888207,
+ 42.942361,
+ 0
+ ],
+ [
+ -87.888204,
+ 42.942361,
+ 0
+ ],
+ [
+ -87.8882,
+ 42.942361,
+ 0
+ ],
+ [
+ -87.888197,
+ 42.942358,
+ 0
+ ],
+ [
+ -87.888194,
+ 42.942358,
+ 0
+ ],
+ [
+ -87.888191,
+ 42.942355,
+ 0
+ ],
+ [
+ -87.888187,
+ 42.942355,
+ 0
+ ],
+ [
+ -87.888184,
+ 42.942352,
+ 0
+ ],
+ [
+ -87.888181,
+ 42.942348,
+ 0
+ ],
+ [
+ -87.888178,
+ 42.942345,
+ 0
+ ],
+ [
+ -87.888175,
+ 42.942342,
+ 0
+ ],
+ [
+ -87.888171,
+ 42.942339,
+ 0
+ ],
+ [
+ -87.888171,
+ 42.942335,
+ 0
+ ],
+ [
+ -87.888168,
+ 42.942332,
+ 0
+ ],
+ [
+ -87.888168,
+ 42.942329,
+ 0
+ ],
+ [
+ -87.888165,
+ 42.942326,
+ 0
+ ],
+ [
+ -87.888162,
+ 42.942322,
+ 0
+ ],
+ [
+ -87.888158,
+ 42.942319,
+ 0
+ ],
+ [
+ -87.888155,
+ 42.942316,
+ 0
+ ],
+ [
+ -87.888152,
+ 42.942313,
+ 0
+ ],
+ [
+ -87.888152,
+ 42.94231,
+ 0
+ ],
+ [
+ -87.888149,
+ 42.942306,
+ 0
+ ],
+ [
+ -87.888149,
+ 42.942303,
+ 0
+ ],
+ [
+ -87.888145,
+ 42.9423,
+ 0
+ ],
+ [
+ -87.888145,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.888142,
+ 42.942293,
+ 0
+ ],
+ [
+ -87.888139,
+ 42.94229,
+ 0
+ ],
+ [
+ -87.888136,
+ 42.942287,
+ 0
+ ],
+ [
+ -87.888132,
+ 42.942284,
+ 0
+ ],
+ [
+ -87.888129,
+ 42.94228,
+ 0
+ ],
+ [
+ -87.888129,
+ 42.942277,
+ 0
+ ],
+ [
+ -87.888126,
+ 42.942274,
+ 0
+ ],
+ [
+ -87.888123,
+ 42.942271,
+ 0
+ ],
+ [
+ -87.88812,
+ 42.942271,
+ 0
+ ],
+ [
+ -87.888116,
+ 42.942267,
+ 0
+ ],
+ [
+ -87.888113,
+ 42.942267,
+ 0
+ ],
+ [
+ -87.88811,
+ 42.942264,
+ 0
+ ],
+ [
+ -87.888107,
+ 42.942261,
+ 0
+ ],
+ [
+ -87.888103,
+ 42.942258,
+ 0
+ ],
+ [
+ -87.8881,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.888097,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.888094,
+ 42.942251,
+ 0
+ ],
+ [
+ -87.88809,
+ 42.942248,
+ 0
+ ],
+ [
+ -87.888087,
+ 42.942248,
+ 0
+ ],
+ [
+ -87.888084,
+ 42.942245,
+ 0
+ ],
+ [
+ -87.888081,
+ 42.942242,
+ 0
+ ],
+ [
+ -87.888077,
+ 42.942242,
+ 0
+ ],
+ [
+ -87.888074,
+ 42.942238,
+ 0
+ ],
+ [
+ -87.888071,
+ 42.942238,
+ 0
+ ],
+ [
+ -87.888068,
+ 42.942238,
+ 0
+ ],
+ [
+ -87.888065,
+ 42.942235,
+ 0
+ ],
+ [
+ -87.888061,
+ 42.942235,
+ 0
+ ],
+ [
+ -87.888058,
+ 42.942235,
+ 0
+ ],
+ [
+ -87.888055,
+ 42.942235,
+ 0
+ ],
+ [
+ -87.888052,
+ 42.942235,
+ 0
+ ],
+ [
+ -87.888048,
+ 42.942235,
+ 0
+ ],
+ [
+ -87.888045,
+ 42.942235,
+ 0
+ ],
+ [
+ -87.888042,
+ 42.942232,
+ 0
+ ],
+ [
+ -87.888039,
+ 42.942232,
+ 0
+ ],
+ [
+ -87.888035,
+ 42.942232,
+ 0
+ ],
+ [
+ -87.888032,
+ 42.942232,
+ 0
+ ],
+ [
+ -87.888029,
+ 42.942229,
+ 0
+ ],
+ [
+ -87.888026,
+ 42.942229,
+ 0
+ ],
+ [
+ -87.888023,
+ 42.942229,
+ 0
+ ],
+ [
+ -87.888019,
+ 42.942225,
+ 0
+ ],
+ [
+ -87.888016,
+ 42.942225,
+ 0
+ ],
+ [
+ -87.888013,
+ 42.942225,
+ 0
+ ],
+ [
+ -87.88801,
+ 42.942222,
+ 0
+ ],
+ [
+ -87.888006,
+ 42.942222,
+ 0
+ ],
+ [
+ -87.888003,
+ 42.942219,
+ 0
+ ],
+ [
+ -87.888,
+ 42.942216,
+ 0
+ ],
+ [
+ -87.887997,
+ 42.942216,
+ 0
+ ],
+ [
+ -87.887993,
+ 42.942212,
+ 0
+ ],
+ [
+ -87.88799,
+ 42.942212,
+ 0
+ ],
+ [
+ -87.887987,
+ 42.942209,
+ 0
+ ],
+ [
+ -87.887984,
+ 42.942209,
+ 0
+ ],
+ [
+ -87.88798,
+ 42.942206,
+ 0
+ ],
+ [
+ -87.887977,
+ 42.942203,
+ 0
+ ],
+ [
+ -87.887974,
+ 42.942203,
+ 0
+ ],
+ [
+ -87.887971,
+ 42.9422,
+ 0
+ ],
+ [
+ -87.887968,
+ 42.9422,
+ 0
+ ],
+ [
+ -87.887964,
+ 42.942196,
+ 0
+ ],
+ [
+ -87.887961,
+ 42.942196,
+ 0
+ ],
+ [
+ -87.887958,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887955,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887951,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887948,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887945,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887942,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887938,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887935,
+ 42.942193,
+ 0
+ ],
+ [
+ -87.887932,
+ 42.942196,
+ 0
+ ],
+ [
+ -87.887929,
+ 42.9422,
+ 0
+ ],
+ [
+ -87.887926,
+ 42.942203,
+ 0
+ ],
+ [
+ -87.887926,
+ 42.942206,
+ 0
+ ],
+ [
+ -87.887926,
+ 42.942209,
+ 0
+ ],
+ [
+ -87.887922,
+ 42.942212,
+ 0
+ ],
+ [
+ -87.887922,
+ 42.942216,
+ 0
+ ],
+ [
+ -87.887922,
+ 42.942219,
+ 0
+ ],
+ [
+ -87.887922,
+ 42.942222,
+ 0
+ ],
+ [
+ -87.887922,
+ 42.942225,
+ 0
+ ],
+ [
+ -87.887922,
+ 42.942229,
+ 0
+ ],
+ [
+ -87.887922,
+ 42.942232,
+ 0
+ ],
+ [
+ -87.887919,
+ 42.942235,
+ 0
+ ],
+ [
+ -87.887916,
+ 42.942238,
+ 0
+ ],
+ [
+ -87.887913,
+ 42.942242,
+ 0
+ ],
+ [
+ -87.887909,
+ 42.942245,
+ 0
+ ],
+ [
+ -87.887906,
+ 42.942248,
+ 0
+ ],
+ [
+ -87.887903,
+ 42.942248,
+ 0
+ ],
+ [
+ -87.8879,
+ 42.942251,
+ 0
+ ],
+ [
+ -87.887896,
+ 42.942255,
+ 0
+ ],
+ [
+ -87.887893,
+ 42.942258,
+ 0
+ ],
+ [
+ -87.88789,
+ 42.942258,
+ 0
+ ],
+ [
+ -87.887887,
+ 42.942261,
+ 0
+ ],
+ [
+ -87.887883,
+ 42.942261,
+ 0
+ ],
+ [
+ -87.88788,
+ 42.942264,
+ 0
+ ],
+ [
+ -87.887877,
+ 42.942264,
+ 0
+ ],
+ [
+ -87.887874,
+ 42.942267,
+ 0
+ ],
+ [
+ -87.887871,
+ 42.942267,
+ 0
+ ],
+ [
+ -87.887867,
+ 42.942271,
+ 0
+ ],
+ [
+ -87.887864,
+ 42.942271,
+ 0
+ ],
+ [
+ -87.887861,
+ 42.942271,
+ 0
+ ],
+ [
+ -87.887858,
+ 42.942274,
+ 0
+ ],
+ [
+ -87.887854,
+ 42.942277,
+ 0
+ ],
+ [
+ -87.887851,
+ 42.94228,
+ 0
+ ],
+ [
+ -87.887848,
+ 42.942284,
+ 0
+ ],
+ [
+ -87.887845,
+ 42.942287,
+ 0
+ ],
+ [
+ -87.887841,
+ 42.94229,
+ 0
+ ],
+ [
+ -87.887838,
+ 42.942293,
+ 0
+ ],
+ [
+ -87.887835,
+ 42.942293,
+ 0
+ ],
+ [
+ -87.887832,
+ 42.942293,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.887819,
+ 42.9423,
+ 0
+ ],
+ [
+ -87.887816,
+ 42.9423,
+ 0
+ ],
+ [
+ -87.887812,
+ 42.9423,
+ 0
+ ],
+ [
+ -87.887809,
+ 42.942303,
+ 0
+ ],
+ [
+ -87.887806,
+ 42.942303,
+ 0
+ ],
+ [
+ -87.887803,
+ 42.942303,
+ 0
+ ],
+ [
+ -87.887799,
+ 42.942303,
+ 0
+ ],
+ [
+ -87.887796,
+ 42.9423,
+ 0
+ ],
+ [
+ -87.887793,
+ 42.9423,
+ 0
+ ],
+ [
+ -87.88779,
+ 42.9423,
+ 0
+ ],
+ [
+ -87.887786,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.887783,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.88778,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.887777,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.887774,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.88777,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.887767,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.887764,
+ 42.942297,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.9423,
+ 0
+ ],
+ [
+ -87.887757,
+ 42.9423,
+ 0
+ ],
+ [
+ -87.887754,
+ 42.942303,
+ 0
+ ],
+ [
+ -87.887751,
+ 42.942306,
+ 0
+ ],
+ [
+ -87.887751,
+ 42.94231,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.942313,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.942316,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.942319,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.942322,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.942326,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.942329,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.942332,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.942335,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.942339,
+ 0
+ ],
+ [
+ -87.887748,
+ 42.942342,
+ 0
+ ],
+ [
+ -87.887751,
+ 42.942345,
+ 0
+ ],
+ [
+ -87.887751,
+ 42.942348,
+ 0
+ ],
+ [
+ -87.887751,
+ 42.942352,
+ 0
+ ],
+ [
+ -87.887754,
+ 42.942355,
+ 0
+ ],
+ [
+ -87.887754,
+ 42.942358,
+ 0
+ ],
+ [
+ -87.887754,
+ 42.942361,
+ 0
+ ],
+ [
+ -87.887757,
+ 42.942364,
+ 0
+ ],
+ [
+ -87.887757,
+ 42.942368,
+ 0
+ ],
+ [
+ -87.887757,
+ 42.942371,
+ 0
+ ],
+ [
+ -87.887757,
+ 42.942374,
+ 0
+ ],
+ [
+ -87.887757,
+ 42.942377,
+ 0
+ ],
+ [
+ -87.887757,
+ 42.942381,
+ 0
+ ],
+ [
+ -87.887757,
+ 42.942384,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942387,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.94239,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942394,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942397,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.9424,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942403,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942407,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.94241,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942413,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942416,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942419,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942423,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942426,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942429,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942432,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942436,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942439,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942442,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942445,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942449,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942452,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942455,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942458,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942462,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942465,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942468,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942471,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942474,
+ 0
+ ],
+ [
+ -87.887761,
+ 42.942478,
+ 0
+ ],
+ [
+ -87.887764,
+ 42.942481,
+ 0
+ ],
+ [
+ -87.887764,
+ 42.942484,
+ 0
+ ],
+ [
+ -87.887767,
+ 42.942487,
+ 0
+ ],
+ [
+ -87.887767,
+ 42.942491,
+ 0
+ ],
+ [
+ -87.88777,
+ 42.942491,
+ 0
+ ],
+ [
+ -87.887774,
+ 42.942494,
+ 0
+ ],
+ [
+ -87.887777,
+ 42.942497,
+ 0
+ ],
+ [
+ -87.88778,
+ 42.942497,
+ 0
+ ],
+ [
+ -87.887783,
+ 42.9425,
+ 0
+ ],
+ [
+ -87.887786,
+ 42.942504,
+ 0
+ ],
+ [
+ -87.88779,
+ 42.942504,
+ 0
+ ],
+ [
+ -87.887793,
+ 42.942507,
+ 0
+ ],
+ [
+ -87.887796,
+ 42.942507,
+ 0
+ ],
+ [
+ -87.887799,
+ 42.942507,
+ 0
+ ],
+ [
+ -87.887803,
+ 42.94251,
+ 0
+ ],
+ [
+ -87.887806,
+ 42.942513,
+ 0
+ ],
+ [
+ -87.887809,
+ 42.942516,
+ 0
+ ],
+ [
+ -87.887812,
+ 42.94252,
+ 0
+ ],
+ [
+ -87.887816,
+ 42.942523,
+ 0
+ ],
+ [
+ -87.887819,
+ 42.942526,
+ 0
+ ],
+ [
+ -87.887822,
+ 42.942526,
+ 0
+ ],
+ [
+ -87.887825,
+ 42.942526,
+ 0
+ ],
+ [
+ -87.887828,
+ 42.942526,
+ 0
+ ],
+ [
+ -87.887832,
+ 42.942526,
+ 0
+ ],
+ [
+ -87.887835,
+ 42.942523,
+ 0
+ ],
+ [
+ -87.887838,
+ 42.942523,
+ 0
+ ],
+ [
+ -87.887841,
+ 42.942523,
+ 0
+ ],
+ [
+ -87.887845,
+ 42.942526,
+ 0
+ ],
+ [
+ -87.887848,
+ 42.942526,
+ 0
+ ],
+ [
+ -87.887851,
+ 42.942529,
+ 0
+ ],
+ [
+ -87.887854,
+ 42.942529,
+ 0
+ ],
+ [
+ -87.887858,
+ 42.942529,
+ 0
+ ],
+ [
+ -87.887861,
+ 42.942533,
+ 0
+ ],
+ [
+ -87.887864,
+ 42.942536,
+ 0
+ ],
+ [
+ -87.887867,
+ 42.942536,
+ 0
+ ],
+ [
+ -87.887871,
+ 42.942539,
+ 0
+ ],
+ [
+ -87.887874,
+ 42.942539,
+ 0
+ ],
+ [
+ -87.887877,
+ 42.942542,
+ 0
+ ],
+ [
+ -87.88788,
+ 42.942546,
+ 0
+ ],
+ [
+ -87.887883,
+ 42.942546,
+ 0
+ ],
+ [
+ -87.887887,
+ 42.942549,
+ 0
+ ],
+ [
+ -87.88789,
+ 42.942549,
+ 0
+ ],
+ [
+ -87.887893,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887896,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.8879,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887903,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887906,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887909,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887913,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887916,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887919,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887922,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887926,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887929,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887932,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887935,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887938,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887942,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887945,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887948,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887951,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887955,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887958,
+ 42.942552,
+ 0
+ ],
+ [
+ -87.887961,
+ 42.942555,
+ 0
+ ],
+ [
+ -87.887964,
+ 42.942555,
+ 0
+ ],
+ [
+ -87.887968,
+ 42.942555,
+ 0
+ ],
+ [
+ -87.887971,
+ 42.942555,
+ 0
+ ],
+ [
+ -87.887974,
+ 42.942555,
+ 0
+ ],
+ [
+ -87.887977,
+ 42.942555,
+ 0
+ ],
+ [
+ -87.88798,
+ 42.942555,
+ 0
+ ],
+ [
+ -87.887984,
+ 42.942555,
+ 0
+ ],
+ [
+ -87.887987,
+ 42.942555,
+ 0
+ ],
+ [
+ -87.88799,
+ 42.942555,
+ 0
+ ],
+ [
+ -87.887993,
+ 42.942555,
+ 0
+ ],
+ [
+ -87.887997,
+ 42.942555,
+ 0
+ ],
+ [
+ -87.887997,
+ 42.942555,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "geom_imcoords": [
+ [
+ 250,
+ 166
+ ],
+ [
+ 249,
+ 167
+ ],
+ [
+ 248,
+ 167
+ ],
+ [
+ 247,
+ 167
+ ],
+ [
+ 246,
+ 167
+ ],
+ [
+ 245,
+ 167
+ ],
+ [
+ 244,
+ 167
+ ],
+ [
+ 243,
+ 167
+ ],
+ [
+ 242,
+ 167
+ ],
+ [
+ 241,
+ 168
+ ],
+ [
+ 240,
+ 169
+ ],
+ [
+ 239,
+ 170
+ ],
+ [
+ 239,
+ 171
+ ],
+ [
+ 238,
+ 172
+ ],
+ [
+ 237,
+ 173
+ ],
+ [
+ 236,
+ 174
+ ],
+ [
+ 235,
+ 175
+ ],
+ [
+ 234,
+ 176
+ ],
+ [
+ 233,
+ 176
+ ],
+ [
+ 232,
+ 177
+ ],
+ [
+ 231,
+ 177
+ ],
+ [
+ 230,
+ 178
+ ],
+ [
+ 229,
+ 178
+ ],
+ [
+ 228,
+ 178
+ ],
+ [
+ 227,
+ 179
+ ],
+ [
+ 226,
+ 179
+ ],
+ [
+ 225,
+ 180
+ ],
+ [
+ 224,
+ 180
+ ],
+ [
+ 223,
+ 181
+ ],
+ [
+ 222,
+ 181
+ ],
+ [
+ 221,
+ 182
+ ],
+ [
+ 220,
+ 182
+ ],
+ [
+ 219,
+ 183
+ ],
+ [
+ 218,
+ 184
+ ],
+ [
+ 217,
+ 184
+ ],
+ [
+ 216,
+ 185
+ ],
+ [
+ 215,
+ 185
+ ],
+ [
+ 214,
+ 186
+ ],
+ [
+ 213,
+ 186
+ ],
+ [
+ 212,
+ 187
+ ],
+ [
+ 211,
+ 187
+ ],
+ [
+ 210,
+ 187
+ ],
+ [
+ 209,
+ 187
+ ],
+ [
+ 208,
+ 187
+ ],
+ [
+ 207,
+ 188
+ ],
+ [
+ 206,
+ 188
+ ],
+ [
+ 205,
+ 188
+ ],
+ [
+ 204,
+ 188
+ ],
+ [
+ 203,
+ 188
+ ],
+ [
+ 202,
+ 189
+ ],
+ [
+ 201,
+ 189
+ ],
+ [
+ 200,
+ 189
+ ],
+ [
+ 199,
+ 189
+ ],
+ [
+ 198,
+ 189
+ ],
+ [
+ 197,
+ 189
+ ],
+ [
+ 196,
+ 189
+ ],
+ [
+ 195,
+ 189
+ ],
+ [
+ 194,
+ 189
+ ],
+ [
+ 193,
+ 189
+ ],
+ [
+ 192,
+ 190
+ ],
+ [
+ 191,
+ 190
+ ],
+ [
+ 190,
+ 190
+ ],
+ [
+ 189,
+ 190
+ ],
+ [
+ 188,
+ 190
+ ],
+ [
+ 187,
+ 191
+ ],
+ [
+ 186,
+ 191
+ ],
+ [
+ 185,
+ 191
+ ],
+ [
+ 184,
+ 191
+ ],
+ [
+ 183,
+ 192
+ ],
+ [
+ 182,
+ 192
+ ],
+ [
+ 181,
+ 192
+ ],
+ [
+ 180,
+ 193
+ ],
+ [
+ 179,
+ 193
+ ],
+ [
+ 178,
+ 194
+ ],
+ [
+ 177,
+ 195
+ ],
+ [
+ 176,
+ 196
+ ],
+ [
+ 176,
+ 197
+ ],
+ [
+ 176,
+ 198
+ ],
+ [
+ 176,
+ 199
+ ],
+ [
+ 176,
+ 200
+ ],
+ [
+ 177,
+ 201
+ ],
+ [
+ 178,
+ 202
+ ],
+ [
+ 178,
+ 203
+ ],
+ [
+ 179,
+ 204
+ ],
+ [
+ 180,
+ 205
+ ],
+ [
+ 181,
+ 206
+ ],
+ [
+ 182,
+ 207
+ ],
+ [
+ 182,
+ 208
+ ],
+ [
+ 182,
+ 209
+ ],
+ [
+ 182,
+ 210
+ ],
+ [
+ 182,
+ 211
+ ],
+ [
+ 181,
+ 212
+ ],
+ [
+ 181,
+ 213
+ ],
+ [
+ 180,
+ 214
+ ],
+ [
+ 179,
+ 215
+ ],
+ [
+ 179,
+ 216
+ ],
+ [
+ 178,
+ 217
+ ],
+ [
+ 179,
+ 218
+ ],
+ [
+ 179,
+ 219
+ ],
+ [
+ 179,
+ 220
+ ],
+ [
+ 179,
+ 221
+ ],
+ [
+ 180,
+ 222
+ ],
+ [
+ 181,
+ 223
+ ],
+ [
+ 182,
+ 223
+ ],
+ [
+ 183,
+ 224
+ ],
+ [
+ 184,
+ 225
+ ],
+ [
+ 185,
+ 226
+ ],
+ [
+ 186,
+ 226
+ ],
+ [
+ 187,
+ 226
+ ],
+ [
+ 188,
+ 227
+ ],
+ [
+ 189,
+ 227
+ ],
+ [
+ 190,
+ 228
+ ],
+ [
+ 191,
+ 228
+ ],
+ [
+ 192,
+ 229
+ ],
+ [
+ 193,
+ 230
+ ],
+ [
+ 194,
+ 231
+ ],
+ [
+ 195,
+ 232
+ ],
+ [
+ 196,
+ 233
+ ],
+ [
+ 196,
+ 234
+ ],
+ [
+ 197,
+ 235
+ ],
+ [
+ 197,
+ 236
+ ],
+ [
+ 198,
+ 237
+ ],
+ [
+ 199,
+ 238
+ ],
+ [
+ 200,
+ 239
+ ],
+ [
+ 201,
+ 240
+ ],
+ [
+ 202,
+ 241
+ ],
+ [
+ 202,
+ 242
+ ],
+ [
+ 203,
+ 243
+ ],
+ [
+ 203,
+ 244
+ ],
+ [
+ 204,
+ 245
+ ],
+ [
+ 204,
+ 246
+ ],
+ [
+ 205,
+ 247
+ ],
+ [
+ 206,
+ 248
+ ],
+ [
+ 207,
+ 249
+ ],
+ [
+ 208,
+ 250
+ ],
+ [
+ 209,
+ 251
+ ],
+ [
+ 209,
+ 252
+ ],
+ [
+ 210,
+ 253
+ ],
+ [
+ 211,
+ 254
+ ],
+ [
+ 212,
+ 254
+ ],
+ [
+ 213,
+ 255
+ ],
+ [
+ 214,
+ 255
+ ],
+ [
+ 215,
+ 256
+ ],
+ [
+ 216,
+ 257
+ ],
+ [
+ 217,
+ 258
+ ],
+ [
+ 218,
+ 259
+ ],
+ [
+ 219,
+ 259
+ ],
+ [
+ 220,
+ 260
+ ],
+ [
+ 221,
+ 261
+ ],
+ [
+ 222,
+ 261
+ ],
+ [
+ 223,
+ 262
+ ],
+ [
+ 224,
+ 263
+ ],
+ [
+ 225,
+ 263
+ ],
+ [
+ 226,
+ 264
+ ],
+ [
+ 227,
+ 264
+ ],
+ [
+ 228,
+ 264
+ ],
+ [
+ 229,
+ 265
+ ],
+ [
+ 230,
+ 265
+ ],
+ [
+ 231,
+ 265
+ ],
+ [
+ 232,
+ 265
+ ],
+ [
+ 233,
+ 265
+ ],
+ [
+ 234,
+ 265
+ ],
+ [
+ 235,
+ 265
+ ],
+ [
+ 236,
+ 266
+ ],
+ [
+ 237,
+ 266
+ ],
+ [
+ 238,
+ 266
+ ],
+ [
+ 239,
+ 266
+ ],
+ [
+ 240,
+ 267
+ ],
+ [
+ 241,
+ 267
+ ],
+ [
+ 242,
+ 267
+ ],
+ [
+ 243,
+ 268
+ ],
+ [
+ 244,
+ 268
+ ],
+ [
+ 245,
+ 268
+ ],
+ [
+ 246,
+ 269
+ ],
+ [
+ 247,
+ 269
+ ],
+ [
+ 248,
+ 270
+ ],
+ [
+ 249,
+ 271
+ ],
+ [
+ 250,
+ 271
+ ],
+ [
+ 251,
+ 272
+ ],
+ [
+ 252,
+ 272
+ ],
+ [
+ 253,
+ 273
+ ],
+ [
+ 254,
+ 273
+ ],
+ [
+ 255,
+ 274
+ ],
+ [
+ 256,
+ 275
+ ],
+ [
+ 257,
+ 275
+ ],
+ [
+ 258,
+ 276
+ ],
+ [
+ 259,
+ 276
+ ],
+ [
+ 260,
+ 277
+ ],
+ [
+ 261,
+ 277
+ ],
+ [
+ 262,
+ 278
+ ],
+ [
+ 263,
+ 278
+ ],
+ [
+ 264,
+ 278
+ ],
+ [
+ 265,
+ 278
+ ],
+ [
+ 266,
+ 278
+ ],
+ [
+ 267,
+ 278
+ ],
+ [
+ 268,
+ 278
+ ],
+ [
+ 269,
+ 278
+ ],
+ [
+ 270,
+ 277
+ ],
+ [
+ 271,
+ 276
+ ],
+ [
+ 272,
+ 275
+ ],
+ [
+ 272,
+ 274
+ ],
+ [
+ 272,
+ 273
+ ],
+ [
+ 273,
+ 272
+ ],
+ [
+ 273,
+ 271
+ ],
+ [
+ 273,
+ 270
+ ],
+ [
+ 273,
+ 269
+ ],
+ [
+ 273,
+ 268
+ ],
+ [
+ 273,
+ 267
+ ],
+ [
+ 273,
+ 266
+ ],
+ [
+ 274,
+ 265
+ ],
+ [
+ 275,
+ 264
+ ],
+ [
+ 276,
+ 263
+ ],
+ [
+ 277,
+ 262
+ ],
+ [
+ 278,
+ 261
+ ],
+ [
+ 279,
+ 261
+ ],
+ [
+ 280,
+ 260
+ ],
+ [
+ 281,
+ 259
+ ],
+ [
+ 282,
+ 258
+ ],
+ [
+ 283,
+ 258
+ ],
+ [
+ 284,
+ 257
+ ],
+ [
+ 285,
+ 257
+ ],
+ [
+ 286,
+ 256
+ ],
+ [
+ 287,
+ 256
+ ],
+ [
+ 288,
+ 255
+ ],
+ [
+ 289,
+ 255
+ ],
+ [
+ 290,
+ 254
+ ],
+ [
+ 291,
+ 254
+ ],
+ [
+ 292,
+ 254
+ ],
+ [
+ 293,
+ 253
+ ],
+ [
+ 294,
+ 252
+ ],
+ [
+ 295,
+ 251
+ ],
+ [
+ 296,
+ 250
+ ],
+ [
+ 297,
+ 249
+ ],
+ [
+ 298,
+ 248
+ ],
+ [
+ 299,
+ 247
+ ],
+ [
+ 300,
+ 247
+ ],
+ [
+ 301,
+ 247
+ ],
+ [
+ 302,
+ 246
+ ],
+ [
+ 303,
+ 246
+ ],
+ [
+ 304,
+ 246
+ ],
+ [
+ 305,
+ 245
+ ],
+ [
+ 306,
+ 245
+ ],
+ [
+ 307,
+ 245
+ ],
+ [
+ 308,
+ 244
+ ],
+ [
+ 309,
+ 244
+ ],
+ [
+ 310,
+ 244
+ ],
+ [
+ 311,
+ 244
+ ],
+ [
+ 312,
+ 245
+ ],
+ [
+ 313,
+ 245
+ ],
+ [
+ 314,
+ 245
+ ],
+ [
+ 315,
+ 246
+ ],
+ [
+ 316,
+ 246
+ ],
+ [
+ 317,
+ 246
+ ],
+ [
+ 318,
+ 246
+ ],
+ [
+ 319,
+ 246
+ ],
+ [
+ 320,
+ 246
+ ],
+ [
+ 321,
+ 246
+ ],
+ [
+ 322,
+ 246
+ ],
+ [
+ 323,
+ 245
+ ],
+ [
+ 324,
+ 245
+ ],
+ [
+ 325,
+ 244
+ ],
+ [
+ 326,
+ 243
+ ],
+ [
+ 326,
+ 242
+ ],
+ [
+ 327,
+ 241
+ ],
+ [
+ 327,
+ 240
+ ],
+ [
+ 327,
+ 239
+ ],
+ [
+ 327,
+ 238
+ ],
+ [
+ 327,
+ 237
+ ],
+ [
+ 327,
+ 236
+ ],
+ [
+ 327,
+ 235
+ ],
+ [
+ 327,
+ 234
+ ],
+ [
+ 327,
+ 233
+ ],
+ [
+ 327,
+ 232
+ ],
+ [
+ 326,
+ 231
+ ],
+ [
+ 326,
+ 230
+ ],
+ [
+ 326,
+ 229
+ ],
+ [
+ 325,
+ 228
+ ],
+ [
+ 325,
+ 227
+ ],
+ [
+ 325,
+ 226
+ ],
+ [
+ 324,
+ 225
+ ],
+ [
+ 324,
+ 224
+ ],
+ [
+ 324,
+ 223
+ ],
+ [
+ 324,
+ 222
+ ],
+ [
+ 324,
+ 221
+ ],
+ [
+ 324,
+ 220
+ ],
+ [
+ 324,
+ 219
+ ],
+ [
+ 323,
+ 218
+ ],
+ [
+ 323,
+ 217
+ ],
+ [
+ 323,
+ 216
+ ],
+ [
+ 323,
+ 215
+ ],
+ [
+ 323,
+ 214
+ ],
+ [
+ 323,
+ 213
+ ],
+ [
+ 323,
+ 212
+ ],
+ [
+ 323,
+ 211
+ ],
+ [
+ 323,
+ 210
+ ],
+ [
+ 323,
+ 209
+ ],
+ [
+ 323,
+ 208
+ ],
+ [
+ 323,
+ 207
+ ],
+ [
+ 323,
+ 206
+ ],
+ [
+ 323,
+ 205
+ ],
+ [
+ 323,
+ 204
+ ],
+ [
+ 323,
+ 203
+ ],
+ [
+ 323,
+ 202
+ ],
+ [
+ 323,
+ 201
+ ],
+ [
+ 323,
+ 200
+ ],
+ [
+ 323,
+ 199
+ ],
+ [
+ 323,
+ 198
+ ],
+ [
+ 323,
+ 197
+ ],
+ [
+ 323,
+ 196
+ ],
+ [
+ 323,
+ 195
+ ],
+ [
+ 323,
+ 194
+ ],
+ [
+ 323,
+ 193
+ ],
+ [
+ 323,
+ 192
+ ],
+ [
+ 323,
+ 191
+ ],
+ [
+ 323,
+ 190
+ ],
+ [
+ 322,
+ 189
+ ],
+ [
+ 322,
+ 188
+ ],
+ [
+ 321,
+ 187
+ ],
+ [
+ 321,
+ 186
+ ],
+ [
+ 320,
+ 186
+ ],
+ [
+ 319,
+ 185
+ ],
+ [
+ 318,
+ 184
+ ],
+ [
+ 317,
+ 184
+ ],
+ [
+ 316,
+ 183
+ ],
+ [
+ 315,
+ 182
+ ],
+ [
+ 314,
+ 182
+ ],
+ [
+ 313,
+ 181
+ ],
+ [
+ 312,
+ 181
+ ],
+ [
+ 311,
+ 181
+ ],
+ [
+ 310,
+ 180
+ ],
+ [
+ 309,
+ 179
+ ],
+ [
+ 308,
+ 178
+ ],
+ [
+ 307,
+ 177
+ ],
+ [
+ 306,
+ 176
+ ],
+ [
+ 305,
+ 175
+ ],
+ [
+ 304,
+ 175
+ ],
+ [
+ 303,
+ 175
+ ],
+ [
+ 302,
+ 175
+ ],
+ [
+ 301,
+ 175
+ ],
+ [
+ 300,
+ 176
+ ],
+ [
+ 299,
+ 176
+ ],
+ [
+ 298,
+ 176
+ ],
+ [
+ 297,
+ 175
+ ],
+ [
+ 296,
+ 175
+ ],
+ [
+ 295,
+ 174
+ ],
+ [
+ 294,
+ 174
+ ],
+ [
+ 293,
+ 174
+ ],
+ [
+ 292,
+ 173
+ ],
+ [
+ 291,
+ 172
+ ],
+ [
+ 290,
+ 172
+ ],
+ [
+ 289,
+ 171
+ ],
+ [
+ 288,
+ 171
+ ],
+ [
+ 287,
+ 170
+ ],
+ [
+ 286,
+ 169
+ ],
+ [
+ 285,
+ 169
+ ],
+ [
+ 284,
+ 168
+ ],
+ [
+ 283,
+ 168
+ ],
+ [
+ 282,
+ 167
+ ],
+ [
+ 281,
+ 167
+ ],
+ [
+ 280,
+ 167
+ ],
+ [
+ 279,
+ 167
+ ],
+ [
+ 278,
+ 167
+ ],
+ [
+ 277,
+ 167
+ ],
+ [
+ 276,
+ 167
+ ],
+ [
+ 275,
+ 167
+ ],
+ [
+ 274,
+ 167
+ ],
+ [
+ 273,
+ 167
+ ],
+ [
+ 272,
+ 167
+ ],
+ [
+ 271,
+ 167
+ ],
+ [
+ 270,
+ 167
+ ],
+ [
+ 269,
+ 167
+ ],
+ [
+ 268,
+ 167
+ ],
+ [
+ 267,
+ 167
+ ],
+ [
+ 266,
+ 167
+ ],
+ [
+ 265,
+ 167
+ ],
+ [
+ 264,
+ 167
+ ],
+ [
+ 263,
+ 167
+ ],
+ [
+ 262,
+ 167
+ ],
+ [
+ 261,
+ 166
+ ],
+ [
+ 260,
+ 166
+ ],
+ [
+ 259,
+ 166
+ ],
+ [
+ 258,
+ 166
+ ],
+ [
+ 257,
+ 166
+ ],
+ [
+ 256,
+ 166
+ ],
+ [
+ 255,
+ 166
+ ],
+ [
+ 254,
+ 166
+ ],
+ [
+ 253,
+ 166
+ ],
+ [
+ 252,
+ 166
+ ],
+ [
+ 251,
+ 166
+ ],
+ [
+ 250,
+ 166
+ ]
+ ],
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 250,
+ 166
+ ],
+ [
+ 249,
+ 167
+ ],
+ [
+ 248,
+ 167
+ ],
+ [
+ 247,
+ 167
+ ],
+ [
+ 246,
+ 167
+ ],
+ [
+ 245,
+ 167
+ ],
+ [
+ 244,
+ 167
+ ],
+ [
+ 243,
+ 167
+ ],
+ [
+ 242,
+ 167
+ ],
+ [
+ 241,
+ 168
+ ],
+ [
+ 240,
+ 169
+ ],
+ [
+ 239,
+ 170
+ ],
+ [
+ 239,
+ 171
+ ],
+ [
+ 238,
+ 172
+ ],
+ [
+ 237,
+ 173
+ ],
+ [
+ 236,
+ 174
+ ],
+ [
+ 235,
+ 175
+ ],
+ [
+ 234,
+ 176
+ ],
+ [
+ 233,
+ 176
+ ],
+ [
+ 232,
+ 177
+ ],
+ [
+ 231,
+ 177
+ ],
+ [
+ 230,
+ 178
+ ],
+ [
+ 229,
+ 178
+ ],
+ [
+ 228,
+ 178
+ ],
+ [
+ 227,
+ 179
+ ],
+ [
+ 226,
+ 179
+ ],
+ [
+ 225,
+ 180
+ ],
+ [
+ 224,
+ 180
+ ],
+ [
+ 223,
+ 181
+ ],
+ [
+ 222,
+ 181
+ ],
+ [
+ 221,
+ 182
+ ],
+ [
+ 220,
+ 182
+ ],
+ [
+ 219,
+ 183
+ ],
+ [
+ 218,
+ 184
+ ],
+ [
+ 217,
+ 184
+ ],
+ [
+ 216,
+ 185
+ ],
+ [
+ 215,
+ 185
+ ],
+ [
+ 214,
+ 186
+ ],
+ [
+ 213,
+ 186
+ ],
+ [
+ 212,
+ 187
+ ],
+ [
+ 211,
+ 187
+ ],
+ [
+ 210,
+ 187
+ ],
+ [
+ 209,
+ 187
+ ],
+ [
+ 208,
+ 187
+ ],
+ [
+ 207,
+ 188
+ ],
+ [
+ 206,
+ 188
+ ],
+ [
+ 205,
+ 188
+ ],
+ [
+ 204,
+ 188
+ ],
+ [
+ 203,
+ 188
+ ],
+ [
+ 202,
+ 189
+ ],
+ [
+ 201,
+ 189
+ ],
+ [
+ 200,
+ 189
+ ],
+ [
+ 199,
+ 189
+ ],
+ [
+ 198,
+ 189
+ ],
+ [
+ 197,
+ 189
+ ],
+ [
+ 196,
+ 189
+ ],
+ [
+ 195,
+ 189
+ ],
+ [
+ 194,
+ 189
+ ],
+ [
+ 193,
+ 189
+ ],
+ [
+ 192,
+ 190
+ ],
+ [
+ 191,
+ 190
+ ],
+ [
+ 190,
+ 190
+ ],
+ [
+ 189,
+ 190
+ ],
+ [
+ 188,
+ 190
+ ],
+ [
+ 187,
+ 191
+ ],
+ [
+ 186,
+ 191
+ ],
+ [
+ 185,
+ 191
+ ],
+ [
+ 184,
+ 191
+ ],
+ [
+ 183,
+ 192
+ ],
+ [
+ 182,
+ 192
+ ],
+ [
+ 181,
+ 192
+ ],
+ [
+ 180,
+ 193
+ ],
+ [
+ 179,
+ 193
+ ],
+ [
+ 178,
+ 194
+ ],
+ [
+ 177,
+ 195
+ ],
+ [
+ 176,
+ 196
+ ],
+ [
+ 176,
+ 197
+ ],
+ [
+ 176,
+ 198
+ ],
+ [
+ 176,
+ 199
+ ],
+ [
+ 176,
+ 200
+ ],
+ [
+ 177,
+ 201
+ ],
+ [
+ 178,
+ 202
+ ],
+ [
+ 178,
+ 203
+ ],
+ [
+ 179,
+ 204
+ ],
+ [
+ 180,
+ 205
+ ],
+ [
+ 181,
+ 206
+ ],
+ [
+ 182,
+ 207
+ ],
+ [
+ 182,
+ 208
+ ],
+ [
+ 182,
+ 209
+ ],
+ [
+ 182,
+ 210
+ ],
+ [
+ 182,
+ 211
+ ],
+ [
+ 181,
+ 212
+ ],
+ [
+ 181,
+ 213
+ ],
+ [
+ 180,
+ 214
+ ],
+ [
+ 179,
+ 215
+ ],
+ [
+ 179,
+ 216
+ ],
+ [
+ 178,
+ 217
+ ],
+ [
+ 179,
+ 218
+ ],
+ [
+ 179,
+ 219
+ ],
+ [
+ 179,
+ 220
+ ],
+ [
+ 179,
+ 221
+ ],
+ [
+ 180,
+ 222
+ ],
+ [
+ 181,
+ 223
+ ],
+ [
+ 182,
+ 223
+ ],
+ [
+ 183,
+ 224
+ ],
+ [
+ 184,
+ 225
+ ],
+ [
+ 185,
+ 226
+ ],
+ [
+ 186,
+ 226
+ ],
+ [
+ 187,
+ 226
+ ],
+ [
+ 188,
+ 227
+ ],
+ [
+ 189,
+ 227
+ ],
+ [
+ 190,
+ 228
+ ],
+ [
+ 191,
+ 228
+ ],
+ [
+ 192,
+ 229
+ ],
+ [
+ 193,
+ 230
+ ],
+ [
+ 194,
+ 231
+ ],
+ [
+ 195,
+ 232
+ ],
+ [
+ 196,
+ 233
+ ],
+ [
+ 196,
+ 234
+ ],
+ [
+ 197,
+ 235
+ ],
+ [
+ 197,
+ 236
+ ],
+ [
+ 198,
+ 237
+ ],
+ [
+ 199,
+ 238
+ ],
+ [
+ 200,
+ 239
+ ],
+ [
+ 201,
+ 240
+ ],
+ [
+ 202,
+ 241
+ ],
+ [
+ 202,
+ 242
+ ],
+ [
+ 203,
+ 243
+ ],
+ [
+ 203,
+ 244
+ ],
+ [
+ 204,
+ 245
+ ],
+ [
+ 204,
+ 246
+ ],
+ [
+ 205,
+ 247
+ ],
+ [
+ 206,
+ 248
+ ],
+ [
+ 207,
+ 249
+ ],
+ [
+ 208,
+ 250
+ ],
+ [
+ 209,
+ 251
+ ],
+ [
+ 209,
+ 252
+ ],
+ [
+ 210,
+ 253
+ ],
+ [
+ 211,
+ 254
+ ],
+ [
+ 212,
+ 254
+ ],
+ [
+ 213,
+ 255
+ ],
+ [
+ 214,
+ 255
+ ],
+ [
+ 215,
+ 256
+ ],
+ [
+ 216,
+ 257
+ ],
+ [
+ 217,
+ 258
+ ],
+ [
+ 218,
+ 259
+ ],
+ [
+ 219,
+ 259
+ ],
+ [
+ 220,
+ 260
+ ],
+ [
+ 221,
+ 261
+ ],
+ [
+ 222,
+ 261
+ ],
+ [
+ 223,
+ 262
+ ],
+ [
+ 224,
+ 263
+ ],
+ [
+ 225,
+ 263
+ ],
+ [
+ 226,
+ 264
+ ],
+ [
+ 227,
+ 264
+ ],
+ [
+ 228,
+ 264
+ ],
+ [
+ 229,
+ 265
+ ],
+ [
+ 230,
+ 265
+ ],
+ [
+ 231,
+ 265
+ ],
+ [
+ 232,
+ 265
+ ],
+ [
+ 233,
+ 265
+ ],
+ [
+ 234,
+ 265
+ ],
+ [
+ 235,
+ 265
+ ],
+ [
+ 236,
+ 266
+ ],
+ [
+ 237,
+ 266
+ ],
+ [
+ 238,
+ 266
+ ],
+ [
+ 239,
+ 266
+ ],
+ [
+ 240,
+ 267
+ ],
+ [
+ 241,
+ 267
+ ],
+ [
+ 242,
+ 267
+ ],
+ [
+ 243,
+ 268
+ ],
+ [
+ 244,
+ 268
+ ],
+ [
+ 245,
+ 268
+ ],
+ [
+ 246,
+ 269
+ ],
+ [
+ 247,
+ 269
+ ],
+ [
+ 248,
+ 270
+ ],
+ [
+ 249,
+ 271
+ ],
+ [
+ 250,
+ 271
+ ],
+ [
+ 251,
+ 272
+ ],
+ [
+ 252,
+ 272
+ ],
+ [
+ 253,
+ 273
+ ],
+ [
+ 254,
+ 273
+ ],
+ [
+ 255,
+ 274
+ ],
+ [
+ 256,
+ 275
+ ],
+ [
+ 257,
+ 275
+ ],
+ [
+ 258,
+ 276
+ ],
+ [
+ 259,
+ 276
+ ],
+ [
+ 260,
+ 277
+ ],
+ [
+ 261,
+ 277
+ ],
+ [
+ 262,
+ 278
+ ],
+ [
+ 263,
+ 278
+ ],
+ [
+ 264,
+ 278
+ ],
+ [
+ 265,
+ 278
+ ],
+ [
+ 266,
+ 278
+ ],
+ [
+ 267,
+ 278
+ ],
+ [
+ 268,
+ 278
+ ],
+ [
+ 269,
+ 278
+ ],
+ [
+ 270,
+ 277
+ ],
+ [
+ 271,
+ 276
+ ],
+ [
+ 272,
+ 275
+ ],
+ [
+ 272,
+ 274
+ ],
+ [
+ 272,
+ 273
+ ],
+ [
+ 273,
+ 272
+ ],
+ [
+ 273,
+ 271
+ ],
+ [
+ 273,
+ 270
+ ],
+ [
+ 273,
+ 269
+ ],
+ [
+ 273,
+ 268
+ ],
+ [
+ 273,
+ 267
+ ],
+ [
+ 273,
+ 266
+ ],
+ [
+ 274,
+ 265
+ ],
+ [
+ 275,
+ 264
+ ],
+ [
+ 276,
+ 263
+ ],
+ [
+ 277,
+ 262
+ ],
+ [
+ 278,
+ 261
+ ],
+ [
+ 279,
+ 261
+ ],
+ [
+ 280,
+ 260
+ ],
+ [
+ 281,
+ 259
+ ],
+ [
+ 282,
+ 258
+ ],
+ [
+ 283,
+ 258
+ ],
+ [
+ 284,
+ 257
+ ],
+ [
+ 285,
+ 257
+ ],
+ [
+ 286,
+ 256
+ ],
+ [
+ 287,
+ 256
+ ],
+ [
+ 288,
+ 255
+ ],
+ [
+ 289,
+ 255
+ ],
+ [
+ 290,
+ 254
+ ],
+ [
+ 291,
+ 254
+ ],
+ [
+ 292,
+ 254
+ ],
+ [
+ 293,
+ 253
+ ],
+ [
+ 294,
+ 252
+ ],
+ [
+ 295,
+ 251
+ ],
+ [
+ 296,
+ 250
+ ],
+ [
+ 297,
+ 249
+ ],
+ [
+ 298,
+ 248
+ ],
+ [
+ 299,
+ 247
+ ],
+ [
+ 300,
+ 247
+ ],
+ [
+ 301,
+ 247
+ ],
+ [
+ 302,
+ 246
+ ],
+ [
+ 303,
+ 246
+ ],
+ [
+ 304,
+ 246
+ ],
+ [
+ 305,
+ 245
+ ],
+ [
+ 306,
+ 245
+ ],
+ [
+ 307,
+ 245
+ ],
+ [
+ 308,
+ 244
+ ],
+ [
+ 309,
+ 244
+ ],
+ [
+ 310,
+ 244
+ ],
+ [
+ 311,
+ 244
+ ],
+ [
+ 312,
+ 245
+ ],
+ [
+ 313,
+ 245
+ ],
+ [
+ 314,
+ 245
+ ],
+ [
+ 315,
+ 246
+ ],
+ [
+ 316,
+ 246
+ ],
+ [
+ 317,
+ 246
+ ],
+ [
+ 318,
+ 246
+ ],
+ [
+ 319,
+ 246
+ ],
+ [
+ 320,
+ 246
+ ],
+ [
+ 321,
+ 246
+ ],
+ [
+ 322,
+ 246
+ ],
+ [
+ 323,
+ 245
+ ],
+ [
+ 324,
+ 245
+ ],
+ [
+ 325,
+ 244
+ ],
+ [
+ 326,
+ 243
+ ],
+ [
+ 326,
+ 242
+ ],
+ [
+ 327,
+ 241
+ ],
+ [
+ 327,
+ 240
+ ],
+ [
+ 327,
+ 239
+ ],
+ [
+ 327,
+ 238
+ ],
+ [
+ 327,
+ 237
+ ],
+ [
+ 327,
+ 236
+ ],
+ [
+ 327,
+ 235
+ ],
+ [
+ 327,
+ 234
+ ],
+ [
+ 327,
+ 233
+ ],
+ [
+ 327,
+ 232
+ ],
+ [
+ 326,
+ 231
+ ],
+ [
+ 326,
+ 230
+ ],
+ [
+ 326,
+ 229
+ ],
+ [
+ 325,
+ 228
+ ],
+ [
+ 325,
+ 227
+ ],
+ [
+ 325,
+ 226
+ ],
+ [
+ 324,
+ 225
+ ],
+ [
+ 324,
+ 224
+ ],
+ [
+ 324,
+ 223
+ ],
+ [
+ 324,
+ 222
+ ],
+ [
+ 324,
+ 221
+ ],
+ [
+ 324,
+ 220
+ ],
+ [
+ 324,
+ 219
+ ],
+ [
+ 323,
+ 218
+ ],
+ [
+ 323,
+ 217
+ ],
+ [
+ 323,
+ 216
+ ],
+ [
+ 323,
+ 215
+ ],
+ [
+ 323,
+ 214
+ ],
+ [
+ 323,
+ 213
+ ],
+ [
+ 323,
+ 212
+ ],
+ [
+ 323,
+ 211
+ ],
+ [
+ 323,
+ 210
+ ],
+ [
+ 323,
+ 209
+ ],
+ [
+ 323,
+ 208
+ ],
+ [
+ 323,
+ 207
+ ],
+ [
+ 323,
+ 206
+ ],
+ [
+ 323,
+ 205
+ ],
+ [
+ 323,
+ 204
+ ],
+ [
+ 323,
+ 203
+ ],
+ [
+ 323,
+ 202
+ ],
+ [
+ 323,
+ 201
+ ],
+ [
+ 323,
+ 200
+ ],
+ [
+ 323,
+ 199
+ ],
+ [
+ 323,
+ 198
+ ],
+ [
+ 323,
+ 197
+ ],
+ [
+ 323,
+ 196
+ ],
+ [
+ 323,
+ 195
+ ],
+ [
+ 323,
+ 194
+ ],
+ [
+ 323,
+ 193
+ ],
+ [
+ 323,
+ 192
+ ],
+ [
+ 323,
+ 191
+ ],
+ [
+ 323,
+ 190
+ ],
+ [
+ 322,
+ 189
+ ],
+ [
+ 322,
+ 188
+ ],
+ [
+ 321,
+ 187
+ ],
+ [
+ 321,
+ 186
+ ],
+ [
+ 320,
+ 186
+ ],
+ [
+ 319,
+ 185
+ ],
+ [
+ 318,
+ 184
+ ],
+ [
+ 317,
+ 184
+ ],
+ [
+ 316,
+ 183
+ ],
+ [
+ 315,
+ 182
+ ],
+ [
+ 314,
+ 182
+ ],
+ [
+ 313,
+ 181
+ ],
+ [
+ 312,
+ 181
+ ],
+ [
+ 311,
+ 181
+ ],
+ [
+ 310,
+ 180
+ ],
+ [
+ 309,
+ 179
+ ],
+ [
+ 308,
+ 178
+ ],
+ [
+ 307,
+ 177
+ ],
+ [
+ 306,
+ 176
+ ],
+ [
+ 305,
+ 175
+ ],
+ [
+ 304,
+ 175
+ ],
+ [
+ 303,
+ 175
+ ],
+ [
+ 302,
+ 175
+ ],
+ [
+ 301,
+ 175
+ ],
+ [
+ 300,
+ 176
+ ],
+ [
+ 299,
+ 176
+ ],
+ [
+ 298,
+ 176
+ ],
+ [
+ 297,
+ 175
+ ],
+ [
+ 296,
+ 175
+ ],
+ [
+ 295,
+ 174
+ ],
+ [
+ 294,
+ 174
+ ],
+ [
+ 293,
+ 174
+ ],
+ [
+ 292,
+ 173
+ ],
+ [
+ 291,
+ 172
+ ],
+ [
+ 290,
+ 172
+ ],
+ [
+ 289,
+ 171
+ ],
+ [
+ 288,
+ 171
+ ],
+ [
+ 287,
+ 170
+ ],
+ [
+ 286,
+ 169
+ ],
+ [
+ 285,
+ 169
+ ],
+ [
+ 284,
+ 168
+ ],
+ [
+ 283,
+ 168
+ ],
+ [
+ 282,
+ 167
+ ],
+ [
+ 281,
+ 167
+ ],
+ [
+ 280,
+ 167
+ ],
+ [
+ 279,
+ 167
+ ],
+ [
+ 278,
+ 167
+ ],
+ [
+ 277,
+ 167
+ ],
+ [
+ 276,
+ 167
+ ],
+ [
+ 275,
+ 167
+ ],
+ [
+ 274,
+ 167
+ ],
+ [
+ 273,
+ 167
+ ],
+ [
+ 272,
+ 167
+ ],
+ [
+ 271,
+ 167
+ ],
+ [
+ 270,
+ 167
+ ],
+ [
+ 269,
+ 167
+ ],
+ [
+ 268,
+ 167
+ ],
+ [
+ 267,
+ 167
+ ],
+ [
+ 266,
+ 167
+ ],
+ [
+ 265,
+ 167
+ ],
+ [
+ 264,
+ 167
+ ],
+ [
+ 263,
+ 167
+ ],
+ [
+ 262,
+ 167
+ ],
+ [
+ 261,
+ 166
+ ],
+ [
+ 260,
+ 166
+ ],
+ [
+ 259,
+ 166
+ ],
+ [
+ 258,
+ 166
+ ],
+ [
+ 257,
+ 166
+ ],
+ [
+ 256,
+ 166
+ ],
+ [
+ 255,
+ 166
+ ],
+ [
+ 254,
+ 166
+ ],
+ [
+ 253,
+ 166
+ ],
+ [
+ 252,
+ 166
+ ],
+ [
+ 251,
+ 166
+ ],
+ [
+ 250,
+ 166
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "aircraft",
+ "detectionScore": 0.9863030314445496
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -87.8879764952231,
+ "center_latitude": 42.94239008475542,
+ "inferenceMetadata": {
+ "jobId": "d3c4a568-9ec7-4125-9787-2c8bfb529274",
+ "filePath": "s3://test-images-123456789123/tile.tif",
+ "receiveTime": "2023-11-09T00:11:51.948739",
+ "inferenceTime": "2023-11-09T00:11:52.480674+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ }
+ ]
+}
diff --git a/src/data/centerpoint.sicd-capella-chip.ntf.geojson b/src/data/centerpoint.sicd-capella-chip.ntf.geojson
new file mode 100644
index 0000000..529ccb0
--- /dev/null
+++ b/src/data/centerpoint.sicd-capella-chip.ntf.geojson
@@ -0,0 +1,99 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "bbox": [
+ 109.68183257229833,
+ 40.26362434768428,
+ 109.68261187214613,
+ 40.26429231898239
+ ],
+ "id": "a3c358058d55761d0642a64055e5d80a",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 109.682612,
+ 40.263764,
+ 0
+ ],
+ [
+ 109.682278,
+ 40.264292,
+ 0
+ ],
+ [
+ 109.681833,
+ 40.264153,
+ 0
+ ],
+ [
+ 109.682167,
+ 40.263624,
+ 0
+ ],
+ [
+ 109.682612,
+ 40.263764,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 204.8
+ ],
+ [
+ 204.8,
+ 307.2
+ ],
+ [
+ 307.2,
+ 307.2
+ ],
+ [
+ 307.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 109.68222222222224,
+ "center_latitude": 40.263958333333335,
+ "inferenceMetadata": {
+ "jobId": "a007cb086b65219a72b5cd5a58e945e2",
+ "filePath": "s3://test-images-825536440648/capella-sicd121-chip1.ntf",
+ "receiveTime": "2023-09-07T23:31:24.937142",
+ "inferenceTime": "2023-09-07T23:31:25.683975+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "",
+ "sourceDt": "2002-12-16T15:16:29",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ }
+ ]
+}
diff --git a/src/data/centerpoint.sicd-interferometric-hh.nitf.geojson b/src/data/centerpoint.sicd-interferometric-hh.nitf.geojson
new file mode 100644
index 0000000..d802049
--- /dev/null
+++ b/src/data/centerpoint.sicd-interferometric-hh.nitf.geojson
@@ -0,0 +1,14387 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59273148633326,
+ 35.05492525461381,
+ -106.59269487050862,
+ 35.054967275868194
+ ],
+ "id": "680d6a33036f16acbe9aa2c4906e8650",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592706,
+ 35.054925,
+ 0
+ ],
+ [
+ -106.592695,
+ 35.054929,
+ 0
+ ],
+ [
+ -106.59272,
+ 35.054967,
+ 0
+ ],
+ [
+ -106.592731,
+ 35.054964,
+ 0
+ ],
+ [
+ -106.592706,
+ 35.054925,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4236.8,
+ 1971.2
+ ],
+ [
+ 4236.8,
+ 1996.8
+ ],
+ [
+ 4339.2,
+ 1996.8
+ ],
+ [
+ 4339.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59271317842095,
+ "center_latitude": 35.054946265241,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.915546+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59231315674707,
+ 35.053659087347,
+ -106.59224336311009,
+ 35.053712167872156
+ ],
+ "id": "53ac9f0deb2a85edfc7f2f3f03683e9b",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592288,
+ 35.053659,
+ 0
+ ],
+ [
+ -106.592243,
+ 35.053674,
+ 0
+ ],
+ [
+ -106.592269,
+ 35.053712,
+ 0
+ ],
+ [
+ -106.592313,
+ 35.053697,
+ 0
+ ],
+ [
+ -106.592288,
+ 35.053659,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 1164.8
+ ],
+ [
+ 1164.8,
+ 1267.2
+ ],
+ [
+ 1267.2,
+ 1267.2
+ ],
+ [
+ 1267.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59227825992858,
+ "center_latitude": 35.053685627609575,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.903496+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59329417517436,
+ 35.05553952854408,
+ -106.59324354895278,
+ 35.055563857946154
+ ],
+ "id": "03df7f25d1fbd4d73e9ad33cee761fdd",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593288,
+ 35.05554,
+ 0
+ ],
+ [
+ -106.593244,
+ 35.055554,
+ 0
+ ],
+ [
+ -106.59325,
+ 35.055564,
+ 0
+ ],
+ [
+ -106.593294,
+ 35.055549,
+ 0
+ ],
+ [
+ -106.593288,
+ 35.05554,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6003.2,
+ 1644.8
+ ],
+ [
+ 6003.2,
+ 1747.2
+ ],
+ [
+ 6028.8,
+ 1747.2
+ ],
+ [
+ 6028.8,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59326886206358,
+ "center_latitude": 35.05555169324512,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.825922+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59364660372857,
+ 35.055279095386204,
+ -106.59357681009159,
+ 35.05533217591137
+ ],
+ "id": "491563a2d06ccb349d1e65e867f0bbb3",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593621,
+ 35.055279,
+ 0
+ ],
+ [
+ -106.593577,
+ 35.055294,
+ 0
+ ],
+ [
+ -106.593602,
+ 35.055332,
+ 0
+ ],
+ [
+ -106.593647,
+ 35.055317,
+ 0
+ ],
+ [
+ -106.593621,
+ 35.055279,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5676.8,
+ 684.8
+ ],
+ [
+ 5676.8,
+ 787.2
+ ],
+ [
+ 5779.2,
+ 787.2
+ ],
+ [
+ 5779.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59361170691008,
+ "center_latitude": 35.055305635648786,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.511375+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59252051807418,
+ 35.053589966904624,
+ -106.5924507244372,
+ 35.053643047429794
+ ],
+ "id": "c99bb2eced785cc0ee3fa7b491af64a7",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592495,
+ 35.05359,
+ 0
+ ],
+ [
+ -106.592451,
+ 35.053605,
+ 0
+ ],
+ [
+ -106.592476,
+ 35.053643,
+ 0
+ ],
+ [
+ -106.592521,
+ 35.053628,
+ 0
+ ],
+ [
+ -106.592495,
+ 35.05359,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 684.8
+ ],
+ [
+ 1164.8,
+ 787.2
+ ],
+ [
+ 1267.2,
+ 787.2
+ ],
+ [
+ 1267.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59248562125569,
+ "center_latitude": 35.053616507167206,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.642165+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59141000780788,
+ 35.053520883723955,
+ -106.5913402141709,
+ 35.05357396424911
+ ],
+ "id": "90ad1d1be032b607c3e6cf614c9a1b36",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591384,
+ 35.053521,
+ 0
+ ],
+ [
+ -106.59134,
+ 35.053536,
+ 0
+ ],
+ [
+ -106.591366,
+ 35.053574,
+ 0
+ ],
+ [
+ -106.59141,
+ 35.053559,
+ 0
+ ],
+ [
+ -106.591384,
+ 35.053521,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 2700.8
+ ],
+ [
+ 204.8,
+ 2803.2
+ ],
+ [
+ 307.2,
+ 2803.2
+ ],
+ [
+ 307.2,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59137511098939,
+ "center_latitude": 35.05354742398653,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.645689+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59330036923234,
+ 35.05580560801303,
+ -106.59328177277477,
+ 35.0558206002168
+ ],
+ "id": "9b67ed18adcf1960a68524931cb0f593",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593293,
+ 35.055806,
+ 0
+ ],
+ [
+ -106.593282,
+ 35.055809,
+ 0
+ ],
+ [
+ -106.593289,
+ 35.055821,
+ 0
+ ],
+ [
+ -106.5933,
+ 35.055817,
+ 0
+ ],
+ [
+ -106.593293,
+ 35.055806,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6588.4,
+ 1971.2
+ ],
+ [
+ 6588.4,
+ 1996.8
+ ],
+ [
+ 6618.6,
+ 1996.8
+ ],
+ [
+ 6618.6,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59329107100356,
+ "center_latitude": 35.05581310411491,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.675316+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59319254134225,
+ 35.055841550643066,
+ -106.59314076707234,
+ 35.05586760211761
+ ],
+ "id": "88d6ee8ba8b3a012910ed1311cde5f91",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593185,
+ 35.055842,
+ 0
+ ],
+ [
+ -106.593141,
+ 35.055856,
+ 0
+ ],
+ [
+ -106.593148,
+ 35.055868,
+ 0
+ ],
+ [
+ -106.593193,
+ 35.055853,
+ 0
+ ],
+ [
+ -106.593185,
+ 35.055842,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6588.4,
+ 2220.8
+ ],
+ [
+ 6588.4,
+ 2323.2
+ ],
+ [
+ 6618.6,
+ 2323.2
+ ],
+ [
+ 6618.6,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5931666542073,
+ "center_latitude": 35.055854576380334,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.029246+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5926306189276,
+ 35.05576071395967,
+ -106.59257999270602,
+ 35.055785043361745
+ ],
+ "id": "2620b12e80d2dfed381e5b1b0aa4f6f4",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592624,
+ 35.055761,
+ 0
+ ],
+ [
+ -106.59258,
+ 35.055775,
+ 0
+ ],
+ [
+ -106.592586,
+ 35.055785,
+ 0
+ ],
+ [
+ -106.592631,
+ 35.05577,
+ 0
+ ],
+ [
+ -106.592624,
+ 35.055761,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6003.2,
+ 3180.8
+ ],
+ [
+ 6003.2,
+ 3283.2
+ ],
+ [
+ 6028.8,
+ 3283.2
+ ],
+ [
+ 6028.8,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59260530581682,
+ "center_latitude": 35.055772878660704,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.019506+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59262365844317,
+ 35.05496119724384,
+ -106.59255386480619,
+ 35.055014277769004
+ ],
+ "id": "f642e430219877c2ee09cbfe4396d992",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592598,
+ 35.054961,
+ 0
+ ],
+ [
+ -106.592554,
+ 35.054976,
+ 0
+ ],
+ [
+ -106.592579,
+ 35.055014,
+ 0
+ ],
+ [
+ -106.592624,
+ 35.055,
+ 0
+ ],
+ [
+ -106.592598,
+ 35.054961,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4236.8,
+ 2220.8
+ ],
+ [
+ 4236.8,
+ 2323.2
+ ],
+ [
+ 4339.2,
+ 2323.2
+ ],
+ [
+ 4339.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59258876162468,
+ "center_latitude": 35.05498773750642,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.111713+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5921527451544,
+ 35.05463498974372,
+ -106.59208295151741,
+ 35.054688070268874
+ ],
+ "id": "88c75f1b618aeba922a3e2b132d464e5",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592127,
+ 35.054635,
+ 0
+ ],
+ [
+ -106.592083,
+ 35.05465,
+ 0
+ ],
+ [
+ -106.592109,
+ 35.054688,
+ 0
+ ],
+ [
+ -106.592153,
+ 35.054673,
+ 0
+ ],
+ [
+ -106.592127,
+ 35.054635,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3180.8,
+ 2700.8
+ ],
+ [
+ 3180.8,
+ 2803.2
+ ],
+ [
+ 3283.2,
+ 2803.2
+ ],
+ [
+ 3283.2,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5921178483359,
+ "center_latitude": 35.0546615300063,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.562223+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59293609774737,
+ 35.054593498847446,
+ -106.59286630411039,
+ 35.05464657937261
+ ],
+ "id": "ba95d9856a021f5c6ba763ebfa871ae8",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592911,
+ 35.054593,
+ 0
+ ],
+ [
+ -106.592866,
+ 35.054608,
+ 0
+ ],
+ [
+ -106.592892,
+ 35.054647,
+ 0
+ ],
+ [
+ -106.592936,
+ 35.054632,
+ 0
+ ],
+ [
+ -106.592911,
+ 35.054593,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3660.8,
+ 1164.8
+ ],
+ [
+ 3660.8,
+ 1267.2
+ ],
+ [
+ 3763.2,
+ 1267.2
+ ],
+ [
+ 3763.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59290120092888,
+ "center_latitude": 35.05462003911003,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.981544+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59198599907374,
+ 35.05354851327005,
+ -106.59191620543676,
+ 35.053601593795214
+ ],
+ "id": "c15b5dcdc76c96b5327920b0dfa033d8",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.59196,
+ 35.053549,
+ 0
+ ],
+ [
+ -106.591916,
+ 35.053563,
+ 0
+ ],
+ [
+ -106.591942,
+ 35.053602,
+ 0
+ ],
+ [
+ -106.591986,
+ 35.053587,
+ 0
+ ],
+ [
+ -106.59196,
+ 35.053549,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 1644.8
+ ],
+ [
+ 684.8,
+ 1747.2
+ ],
+ [
+ 787.2,
+ 1747.2
+ ],
+ [
+ 787.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59195110225525,
+ "center_latitude": 35.05357505353263,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.115739+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59337563668981,
+ 35.05563296969413,
+ -106.59330584305282,
+ 35.055686050219286
+ ],
+ "id": "c5934e5bb5906be74dd5dd9af04004f7",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.59335,
+ 35.055633,
+ 0
+ ],
+ [
+ -106.593306,
+ 35.055648,
+ 0
+ ],
+ [
+ -106.593331,
+ 35.055686,
+ 0
+ ],
+ [
+ -106.593376,
+ 35.055671,
+ 0
+ ],
+ [
+ -106.59335,
+ 35.055633,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6252.8,
+ 1644.8
+ ],
+ [
+ 6252.8,
+ 1747.2
+ ],
+ [
+ 6355.2,
+ 1747.2
+ ],
+ [
+ 6355.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59334073987131,
+ "center_latitude": 35.05565950995671,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.509121+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5927278794013,
+ 35.053520846462256,
+ -106.59265808576431,
+ 35.05357392698742
+ ],
+ "id": "128271eac5bd78e98ba5c533c146f00a",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592702,
+ 35.053521,
+ 0
+ ],
+ [
+ -106.592658,
+ 35.053536,
+ 0
+ ],
+ [
+ -106.592684,
+ 35.053574,
+ 0
+ ],
+ [
+ -106.592728,
+ 35.053559,
+ 0
+ ],
+ [
+ -106.592702,
+ 35.053521,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 204.8
+ ],
+ [
+ 1164.8,
+ 307.2
+ ],
+ [
+ 1267.2,
+ 307.2
+ ],
+ [
+ 1267.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5926929825828,
+ "center_latitude": 35.05354738672484,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.401822+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59260808305508,
+ 35.05334115194294,
+ -106.5925382894181,
+ 35.0533942324681
+ ],
+ "id": "b2ce233bf53f12b1e3b5837072e6a4e9",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592583,
+ 35.053341,
+ 0
+ ],
+ [
+ -106.592538,
+ 35.053356,
+ 0
+ ],
+ [
+ -106.592564,
+ 35.053394,
+ 0
+ ],
+ [
+ -106.592608,
+ 35.053379,
+ 0
+ ],
+ [
+ -106.592583,
+ 35.053341,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 204.8
+ ],
+ [
+ 684.8,
+ 307.2
+ ],
+ [
+ 787.2,
+ 307.2
+ ],
+ [
+ 787.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59257318623659,
+ "center_latitude": 35.05336769220552,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.345062+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59196478971751,
+ 35.05377520969018,
+ -106.59192817389287,
+ 35.05381723094456
+ ],
+ "id": "be7f33bab6acaaea71825131e31a01b6",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591939,
+ 35.053775,
+ 0
+ ],
+ [
+ -106.591928,
+ 35.053779,
+ 0
+ ],
+ [
+ -106.591954,
+ 35.053817,
+ 0
+ ],
+ [
+ -106.591965,
+ 35.053814,
+ 0
+ ],
+ [
+ -106.591939,
+ 35.053775,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 1971.2
+ ],
+ [
+ 1164.8,
+ 1996.8
+ ],
+ [
+ 1267.2,
+ 1996.8
+ ],
+ [
+ 1267.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59194648180521,
+ "center_latitude": 35.05379622031737,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.514770+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59185696182742,
+ 35.053811152320215,
+ -106.59178716819044,
+ 35.05386423284538
+ ],
+ "id": "ae86ac8d7d38ad15ba4c4037c179bdad",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591831,
+ 35.053811,
+ 0
+ ],
+ [
+ -106.591787,
+ 35.053826,
+ 0
+ ],
+ [
+ -106.591813,
+ 35.053864,
+ 0
+ ],
+ [
+ -106.591857,
+ 35.053849,
+ 0
+ ],
+ [
+ -106.591831,
+ 35.053811,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 2220.8
+ ],
+ [
+ 1164.8,
+ 2323.2
+ ],
+ [
+ 1267.2,
+ 2323.2
+ ],
+ [
+ 1267.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59182206500893,
+ "center_latitude": 35.0538376925828,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.536507+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59248914372783,
+ 35.054303230251186,
+ -106.59241935009085,
+ 35.05435631077634
+ ],
+ "id": "cee4530219502b18583c4f3f758ac2b9",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592464,
+ 35.054303,
+ 0
+ ],
+ [
+ -106.592419,
+ 35.054318,
+ 0
+ ],
+ [
+ -106.592445,
+ 35.054356,
+ 0
+ ],
+ [
+ -106.592489,
+ 35.054342,
+ 0
+ ],
+ [
+ -106.592464,
+ 35.054303,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 1644.8
+ ],
+ [
+ 2700.8,
+ 1747.2
+ ],
+ [
+ 2803.2,
+ 1747.2
+ ],
+ [
+ 2803.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59245424690934,
+ "center_latitude": 35.05432977051376,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.120205+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59315316947193,
+ 35.0555865304449,
+ -106.59313572106271,
+ 35.05559980057619
+ ],
+ "id": "44c67c3a032fd3ab96ae7658cba93d03",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593147,
+ 35.055587,
+ 0
+ ],
+ [
+ -106.593136,
+ 35.05559,
+ 0
+ ],
+ [
+ -106.593142,
+ 35.0556,
+ 0
+ ],
+ [
+ -106.593153,
+ 35.055596,
+ 0
+ ],
+ [
+ -106.593147,
+ 35.055587,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6003.2,
+ 1971.2
+ ],
+ [
+ 6003.2,
+ 1996.8
+ ],
+ [
+ 6028.8,
+ 1996.8
+ ],
+ [
+ 6028.8,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59314444526731,
+ "center_latitude": 35.055593165510544,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.016040+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59304534158183,
+ 35.055622473074926,
+ -106.59299471536025,
+ 35.055646802477
+ ],
+ "id": "165aec27c39bcd8f202f48dc2ca5f41b",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593039,
+ 35.055622,
+ 0
+ ],
+ [
+ -106.592995,
+ 35.055637,
+ 0
+ ],
+ [
+ -106.593001,
+ 35.055647,
+ 0
+ ],
+ [
+ -106.593045,
+ 35.055632,
+ 0
+ ],
+ [
+ -106.593039,
+ 35.055622,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6003.2,
+ 2220.8
+ ],
+ [
+ 6003.2,
+ 2323.2
+ ],
+ [
+ 6028.8,
+ 2323.2
+ ],
+ [
+ 6028.8,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59302002847105,
+ "center_latitude": 35.05563463777597,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.306640+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59187665416692,
+ 35.05494664670759,
+ -106.59181627819022,
+ 35.05499658801266
+ ],
+ "id": "58cea56926c6bff91be51d59602fb08c",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591851,
+ 35.054947,
+ 0
+ ],
+ [
+ -106.591816,
+ 35.054958,
+ 0
+ ],
+ [
+ -106.591842,
+ 35.054997,
+ 0
+ ],
+ [
+ -106.591877,
+ 35.054985,
+ 0
+ ],
+ [
+ -106.591851,
+ 35.054947,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3660.8,
+ 3617.2
+ ],
+ [
+ 3660.8,
+ 3697.8
+ ],
+ [
+ 3763.2,
+ 3697.8
+ ],
+ [
+ 3763.2,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59184646617857,
+ "center_latitude": 35.05497161736013,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.141141+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59323463098735,
+ 35.05567997159494,
+ -106.59319801516271,
+ 35.05572199284932
+ ],
+ "id": "87ff3d4f7ab02ded80802c9b36f2646a",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593209,
+ 35.05568,
+ 0
+ ],
+ [
+ -106.593198,
+ 35.055684,
+ 0
+ ],
+ [
+ -106.593224,
+ 35.055722,
+ 0
+ ],
+ [
+ -106.593235,
+ 35.055718,
+ 0
+ ],
+ [
+ -106.593209,
+ 35.05568,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6252.8,
+ 1971.2
+ ],
+ [
+ 6252.8,
+ 1996.8
+ ],
+ [
+ 6355.2,
+ 1996.8
+ ],
+ [
+ 6355.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59321632307504,
+ "center_latitude": 35.055700982222135,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.656742+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59312680309726,
+ 35.055715914224976,
+ -106.59305700946028,
+ 35.05576899475013
+ ],
+ "id": "b1eda5d5088f6b66ebbe73046eb758d0",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593101,
+ 35.055716,
+ 0
+ ],
+ [
+ -106.593057,
+ 35.055731,
+ 0
+ ],
+ [
+ -106.593083,
+ 35.055769,
+ 0
+ ],
+ [
+ -106.593127,
+ 35.055754,
+ 0
+ ],
+ [
+ -106.593101,
+ 35.055716,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6252.8,
+ 2220.8
+ ],
+ [
+ 6252.8,
+ 2323.2
+ ],
+ [
+ 6355.2,
+ 2323.2
+ ],
+ [
+ 6355.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59309190627877,
+ "center_latitude": 35.05574245448756,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.996783+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59379035934403,
+ 35.055494728809386,
+ -106.59372056570705,
+ 35.05554780933455
+ ],
+ "id": "22858236277e3f0eed9474950431952b",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593765,
+ 35.055495,
+ 0
+ ],
+ [
+ -106.593721,
+ 35.055509,
+ 0
+ ],
+ [
+ -106.593746,
+ 35.055548,
+ 0
+ ],
+ [
+ -106.59379,
+ 35.055533,
+ 0
+ ],
+ [
+ -106.593765,
+ 35.055495,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6252.8,
+ 684.8
+ ],
+ [
+ 6252.8,
+ 787.2
+ ],
+ [
+ 6355.2,
+ 787.2
+ ],
+ [
+ 6355.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59375546252554,
+ "center_latitude": 35.05552126907197,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.245107+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59244852848137,
+ 35.05545882716722,
+ -106.59237873484439,
+ 35.05551190769238
+ ],
+ "id": "eb0bf616df0e4e7e7e2fefe680622fbd",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592423,
+ 35.055459,
+ 0
+ ],
+ [
+ -106.592379,
+ 35.055474,
+ 0
+ ],
+ [
+ -106.592404,
+ 35.055512,
+ 0
+ ],
+ [
+ -106.592449,
+ 35.055497,
+ 0
+ ],
+ [
+ -106.592423,
+ 35.055459,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5196.8,
+ 3180.8
+ ],
+ [
+ 5196.8,
+ 3283.2
+ ],
+ [
+ 5299.2,
+ 3283.2
+ ],
+ [
+ 5299.2,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59241363166288,
+ "center_latitude": 35.055485367429796,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.911870+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59260894007404,
+ 35.054482924770504,
+ -106.59253914643706,
+ 35.05453600529566
+ ],
+ "id": "d35d77c7882a082278cf26222fbc843a",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592583,
+ 35.054483,
+ 0
+ ],
+ [
+ -106.592539,
+ 35.054498,
+ 0
+ ],
+ [
+ -106.592565,
+ 35.054536,
+ 0
+ ],
+ [
+ -106.592609,
+ 35.054521,
+ 0
+ ],
+ [
+ -106.592583,
+ 35.054483,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3180.8,
+ 1644.8
+ ],
+ [
+ 3180.8,
+ 1747.2
+ ],
+ [
+ 3283.2,
+ 1747.2
+ ],
+ [
+ 3283.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59257404325555,
+ "center_latitude": 35.05450946503308,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.176358+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59319964970905,
+ 35.054988826789945,
+ -106.59312985607205,
+ 35.0550419073151
+ ],
+ "id": "46181adf38a2609c667f7e4a943a7449",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593174,
+ 35.054989,
+ 0
+ ],
+ [
+ -106.59313,
+ 35.055004,
+ 0
+ ],
+ [
+ -106.593155,
+ 35.055042,
+ 0
+ ],
+ [
+ -106.5932,
+ 35.055027,
+ 0
+ ],
+ [
+ -106.593174,
+ 35.054989,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4716.8,
+ 1164.8
+ ],
+ [
+ 4716.8,
+ 1267.2
+ ],
+ [
+ 4819.2,
+ 1267.2
+ ],
+ [
+ 4819.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59316475289054,
+ "center_latitude": 35.055015367052526,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.014528+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59258929268145,
+ 35.05604263353,
+ -106.59254693607183,
+ 35.05606554578445
+ ],
+ "id": "deeecbd0061a10d0b8dcaf40c7709000",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592582,
+ 35.056043,
+ 0
+ ],
+ [
+ -106.592547,
+ 35.056054,
+ 0
+ ],
+ [
+ -106.592554,
+ 35.056066,
+ 0
+ ],
+ [
+ -106.592589,
+ 35.056054,
+ 0
+ ],
+ [
+ -106.592582,
+ 35.056043,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6588.4,
+ 3617.2
+ ],
+ [
+ 6588.4,
+ 3697.8
+ ],
+ [
+ 6618.6,
+ 3697.8
+ ],
+ [
+ 6618.6,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59256811437663,
+ "center_latitude": 35.05605408965722,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.683938+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5923481380254,
+ 35.054350232152,
+ -106.59231152220075,
+ 35.05439225340638
+ ],
+ "id": "fdf6dcfe56dfb31310ea580c75ddaff5",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592323,
+ 35.05435,
+ 0
+ ],
+ [
+ -106.592312,
+ 35.054354,
+ 0
+ ],
+ [
+ -106.592337,
+ 35.054392,
+ 0
+ ],
+ [
+ -106.592348,
+ 35.054389,
+ 0
+ ],
+ [
+ -106.592323,
+ 35.05435,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 1971.2
+ ],
+ [
+ 2700.8,
+ 1996.8
+ ],
+ [
+ 2803.2,
+ 1996.8
+ ],
+ [
+ 2803.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59232983011307,
+ "center_latitude": 35.05437124277918,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.500621+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5922403101353,
+ 35.05438617478203,
+ -106.59217051649831,
+ 35.05443925530719
+ ],
+ "id": "f3ab7a75424705099d7911edde120091",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592215,
+ 35.054386,
+ 0
+ ],
+ [
+ -106.592171,
+ 35.054401,
+ 0
+ ],
+ [
+ -106.592196,
+ 35.054439,
+ 0
+ ],
+ [
+ -106.59224,
+ 35.054425,
+ 0
+ ],
+ [
+ -106.592215,
+ 35.054386,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 2220.8
+ ],
+ [
+ 2700.8,
+ 2323.2
+ ],
+ [
+ 2803.2,
+ 2323.2
+ ],
+ [
+ 2803.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5922054133168,
+ "center_latitude": 35.054412715044606,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:15.799259+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59176939684652,
+ 35.0540599672819,
+ -106.59169960320953,
+ 35.054113047807064
+ ],
+ "id": "47780878fb8a72efc0c1b75303bd1645",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591744,
+ 35.05406,
+ 0
+ ],
+ [
+ -106.5917,
+ 35.054075,
+ 0
+ ],
+ [
+ -106.591725,
+ 35.054113,
+ 0
+ ],
+ [
+ -106.591769,
+ 35.054098,
+ 0
+ ],
+ [
+ -106.591744,
+ 35.05406,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 2700.8
+ ],
+ [
+ 1644.8,
+ 2803.2
+ ],
+ [
+ 1747.2,
+ 2803.2
+ ],
+ [
+ 1747.2,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59173450002802,
+ "center_latitude": 35.05408650754448,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.822034+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59406345891611,
+ 35.055551244785114,
+ -106.59401168464622,
+ 35.05557729625965
+ ],
+ "id": "30c7a14d6a344ce2ba3c710516258bfe",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.594056,
+ 35.055551,
+ 0
+ ],
+ [
+ -106.594012,
+ 35.055566,
+ 0
+ ],
+ [
+ -106.594019,
+ 35.055577,
+ 0
+ ],
+ [
+ -106.594063,
+ 35.055563,
+ 0
+ ],
+ [
+ -106.594056,
+ 35.055551,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6588.4,
+ 204.8
+ ],
+ [
+ 6588.4,
+ 307.2
+ ],
+ [
+ 6618.6,
+ 307.2
+ ],
+ [
+ 6618.6,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59403757178117,
+ "center_latitude": 35.055564270522375,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.385236+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59385396505567,
+ 35.055209974943836,
+ -106.5937841714187,
+ 35.055263055469
+ ],
+ "id": "6ea0da66cb17921d9fb4c668ca00e3fc",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593828,
+ 35.05521,
+ 0
+ ],
+ [
+ -106.593784,
+ 35.055225,
+ 0
+ ],
+ [
+ -106.59381,
+ 35.055263,
+ 0
+ ],
+ [
+ -106.593854,
+ 35.055248,
+ 0
+ ],
+ [
+ -106.593828,
+ 35.05521,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5676.8,
+ 204.8
+ ],
+ [
+ 5676.8,
+ 307.2
+ ],
+ [
+ 5779.2,
+ 307.2
+ ],
+ [
+ 5779.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5938190682372,
+ "center_latitude": 35.05523651520642,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:15.866343+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59323102405537,
+ 35.05427556344339,
+ -106.5931612304184,
+ 35.054328643968546
+ ],
+ "id": "e83bcee59d08d1e6dca974ea3f2817cf",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593205,
+ 35.054276,
+ 0
+ ],
+ [
+ -106.593161,
+ 35.05429,
+ 0
+ ],
+ [
+ -106.593187,
+ 35.054329,
+ 0
+ ],
+ [
+ -106.593231,
+ 35.054314,
+ 0
+ ],
+ [
+ -106.593205,
+ 35.054276,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3180.8,
+ 204.8
+ ],
+ [
+ 3180.8,
+ 307.2
+ ],
+ [
+ 3283.2,
+ 307.2
+ ],
+ [
+ 3283.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5931961272369,
+ "center_latitude": 35.054302103705965,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.487725+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59285128267948,
+ 35.055104949133124,
+ -106.59281466685484,
+ 35.055146970387504
+ ],
+ "id": "30bffa9ee4a62fb7f74ac740c328593f",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592826,
+ 35.055105,
+ 0
+ ],
+ [
+ -106.592815,
+ 35.055109,
+ 0
+ ],
+ [
+ -106.59284,
+ 35.055147,
+ 0
+ ],
+ [
+ -106.592851,
+ 35.055143,
+ 0
+ ],
+ [
+ -106.592826,
+ 35.055105,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4716.8,
+ 1971.2
+ ],
+ [
+ 4716.8,
+ 1996.8
+ ],
+ [
+ 4819.2,
+ 1996.8
+ ],
+ [
+ 4819.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59283297476716,
+ "center_latitude": 35.05512595976032,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.938786+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59274345478939,
+ 35.05514089176316,
+ -106.5926736611524,
+ 35.05519397228832
+ ],
+ "id": "44bd27f8db2affdfb7d86e0dafd707b9",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592718,
+ 35.055141,
+ 0
+ ],
+ [
+ -106.592674,
+ 35.055156,
+ 0
+ ],
+ [
+ -106.592699,
+ 35.055194,
+ 0
+ ],
+ [
+ -106.592743,
+ 35.055179,
+ 0
+ ],
+ [
+ -106.592718,
+ 35.055141,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4716.8,
+ 2220.8
+ ],
+ [
+ 4716.8,
+ 2323.2
+ ],
+ [
+ 4819.2,
+ 2323.2
+ ],
+ [
+ 4819.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5927085579709,
+ "center_latitude": 35.05516743202574,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.166667+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59399772067113,
+ 35.05542560836702,
+ -106.59392792703416,
+ 35.05547868889217
+ ],
+ "id": "184d38739503fca2ee680bc815be33fa",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593972,
+ 35.055426,
+ 0
+ ],
+ [
+ -106.593928,
+ 35.05544,
+ 0
+ ],
+ [
+ -106.593953,
+ 35.055479,
+ 0
+ ],
+ [
+ -106.593998,
+ 35.055464,
+ 0
+ ],
+ [
+ -106.593972,
+ 35.055426,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6252.8,
+ 204.8
+ ],
+ [
+ 6252.8,
+ 307.2
+ ],
+ [
+ 6355.2,
+ 307.2
+ ],
+ [
+ 6355.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59396282385266,
+ "center_latitude": 35.0554521486296,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.335191+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59358299801691,
+ 35.055563849251755,
+ -106.59351320437993,
+ 35.05561692977692
+ ],
+ "id": "e1d49dc6506bc3db1b136aa68f2ecae3",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593557,
+ 35.055564,
+ 0
+ ],
+ [
+ -106.593513,
+ 35.055579,
+ 0
+ ],
+ [
+ -106.593539,
+ 35.055617,
+ 0
+ ],
+ [
+ -106.593583,
+ 35.055602,
+ 0
+ ],
+ [
+ -106.593557,
+ 35.055564,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6252.8,
+ 1164.8
+ ],
+ [
+ 6252.8,
+ 1267.2
+ ],
+ [
+ 6355.2,
+ 1267.2
+ ],
+ [
+ 6355.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59354810119842,
+ "center_latitude": 35.055590389514336,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.761732+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59270260852041,
+ 35.05389185369708,
+ -106.59265198229885,
+ 35.05391618309915
+ ],
+ "id": "4294786aca688a1d8875a7fcd612caea",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592696,
+ 35.053892,
+ 0
+ ],
+ [
+ -106.592652,
+ 35.053907,
+ 0
+ ],
+ [
+ -106.592658,
+ 35.053916,
+ 0
+ ],
+ [
+ -106.592703,
+ 35.053901,
+ 0
+ ],
+ [
+ -106.592696,
+ 35.053892,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 684.8
+ ],
+ [
+ 1971.2,
+ 787.2
+ ],
+ [
+ 1996.8,
+ 787.2
+ ],
+ [
+ 1996.8,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59267729540964,
+ "center_latitude": 35.053904018398114,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.723755+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59254219692774,
+ 35.0548677560938,
+ -106.59249157070616,
+ 35.054892085495865
+ ],
+ "id": "8b121b751cb1890158c57cb8b84cf815",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592536,
+ 35.054868,
+ 0
+ ],
+ [
+ -106.592492,
+ 35.054883,
+ 0
+ ],
+ [
+ -106.592498,
+ 35.054892,
+ 0
+ ],
+ [
+ -106.592542,
+ 35.054877,
+ 0
+ ],
+ [
+ -106.592536,
+ 35.054868,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3987.2,
+ 2220.8
+ ],
+ [
+ 3987.2,
+ 2323.2
+ ],
+ [
+ 4012.8,
+ 2323.2
+ ],
+ [
+ 4012.8,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59251688381696,
+ "center_latitude": 35.05487992079483,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:15.907242+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59265002481784,
+ 35.054831813463764,
+ -106.5926325764086,
+ 35.054845083595055
+ ],
+ "id": "f3fadf2e145b07f50959806f72d87461",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592644,
+ 35.054832,
+ 0
+ ],
+ [
+ -106.592633,
+ 35.054835,
+ 0
+ ],
+ [
+ -106.592639,
+ 35.054845,
+ 0
+ ],
+ [
+ -106.59265,
+ 35.054841,
+ 0
+ ],
+ [
+ -106.592644,
+ 35.054832,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3987.2,
+ 1971.2
+ ],
+ [
+ 3987.2,
+ 1996.8
+ ],
+ [
+ 4012.8,
+ 1996.8
+ ],
+ [
+ 4012.8,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59264130061322,
+ "center_latitude": 35.05483844852941,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.546189+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59298304748181,
+ 35.055500280801795,
+ -106.59291325384483,
+ 35.05555336132696
+ ],
+ "id": "a7e961af80b2f6c3bac0f29946689252",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592957,
+ 35.0555,
+ 0
+ ],
+ [
+ -106.592913,
+ 35.055515,
+ 0
+ ],
+ [
+ -106.592939,
+ 35.055553,
+ 0
+ ],
+ [
+ -106.592983,
+ 35.055539,
+ 0
+ ],
+ [
+ -106.592957,
+ 35.0555,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5676.8,
+ 2220.8
+ ],
+ [
+ 5676.8,
+ 2323.2
+ ],
+ [
+ 5779.2,
+ 2323.2
+ ],
+ [
+ 5779.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59294815066332,
+ "center_latitude": 35.055526821064376,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.315818+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5930908753719,
+ 35.05546433817176,
+ -106.59305425954726,
+ 35.05550635942615
+ ],
+ "id": "5777e0079ebc16d01db3b43272bd1f0a",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593065,
+ 35.055464,
+ 0
+ ],
+ [
+ -106.593054,
+ 35.055468,
+ 0
+ ],
+ [
+ -106.59308,
+ 35.055506,
+ 0
+ ],
+ [
+ -106.593091,
+ 35.055503,
+ 0
+ ],
+ [
+ -106.593065,
+ 35.055464,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5676.8,
+ 1971.2
+ ],
+ [
+ 5676.8,
+ 1996.8
+ ],
+ [
+ 5779.2,
+ 1996.8
+ ],
+ [
+ 5779.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59307256745959,
+ "center_latitude": 35.05548534879895,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.006797+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59220893578895,
+ 35.055099438128586,
+ -106.59213914215196,
+ 35.05515251865374
+ ],
+ "id": "702e80d16b8b3fd14080fb6ce9d854eb",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592183,
+ 35.055099,
+ 0
+ ],
+ [
+ -106.592139,
+ 35.055114,
+ 0
+ ],
+ [
+ -106.592165,
+ 35.055153,
+ 0
+ ],
+ [
+ -106.592209,
+ 35.055138,
+ 0
+ ],
+ [
+ -106.592183,
+ 35.055099,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4236.8,
+ 3180.8
+ ],
+ [
+ 4236.8,
+ 3283.2
+ ],
+ [
+ 4339.2,
+ 3283.2
+ ],
+ [
+ 4339.2,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59217403897046,
+ "center_latitude": 35.05512597839117,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.802709+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59206518017349,
+ 35.054883804705405,
+ -106.59199538653651,
+ 35.05493688523057
+ ],
+ "id": "ef0863850587fba45d60ecc1197e98bc",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.59204,
+ 35.054884,
+ 0
+ ],
+ [
+ -106.591995,
+ 35.054899,
+ 0
+ ],
+ [
+ -106.592021,
+ 35.054937,
+ 0
+ ],
+ [
+ -106.592065,
+ 35.054922,
+ 0
+ ],
+ [
+ -106.59204,
+ 35.054884,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3660.8,
+ 3180.8
+ ],
+ [
+ 3660.8,
+ 3283.2
+ ],
+ [
+ 3763.2,
+ 3283.2
+ ],
+ [
+ 3763.2,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.592030283355,
+ "center_latitude": 35.054910344967986,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.687075+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59349457601704,
+ 35.05467089138588,
+ -106.59342478238007,
+ 35.054723971911045
+ ],
+ "id": "35518d313a7c048f7061dbf96f4281d8",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593469,
+ 35.054671,
+ 0
+ ],
+ [
+ -106.593425,
+ 35.054686,
+ 0
+ ],
+ [
+ -106.59345,
+ 35.054724,
+ 0
+ ],
+ [
+ -106.593495,
+ 35.054709,
+ 0
+ ],
+ [
+ -106.593469,
+ 35.054671,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4236.8,
+ 204.8
+ ],
+ [
+ 4236.8,
+ 307.2
+ ],
+ [
+ 4339.2,
+ 307.2
+ ],
+ [
+ 4339.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59345967919856,
+ "center_latitude": 35.054697431648464,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:15.667409+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59256832482758,
+ 35.05563852168654,
+ -106.5924985311906,
+ 35.055691602211695
+ ],
+ "id": "e83d3a8d38caf69cbcc8333c66add256",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592543,
+ 35.055639,
+ 0
+ ],
+ [
+ -106.592499,
+ 35.055653,
+ 0
+ ],
+ [
+ -106.592524,
+ 35.055692,
+ 0
+ ],
+ [
+ -106.592568,
+ 35.055677,
+ 0
+ ],
+ [
+ -106.592543,
+ 35.055639,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5676.8,
+ 3180.8
+ ],
+ [
+ 5676.8,
+ 3283.2
+ ],
+ [
+ 5779.2,
+ 3283.2
+ ],
+ [
+ 5779.2,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59253342800909,
+ "center_latitude": 35.055665061949114,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.006478+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59290996984753,
+ 35.053822733254705,
+ -106.59285934362595,
+ 35.05384706265678
+ ],
+ "id": "4c56934917daf212aa968762e07bdf20",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592904,
+ 35.053823,
+ 0
+ ],
+ [
+ -106.592859,
+ 35.053837,
+ 0
+ ],
+ [
+ -106.592866,
+ 35.053847,
+ 0
+ ],
+ [
+ -106.59291,
+ 35.053832,
+ 0
+ ],
+ [
+ -106.592904,
+ 35.053823,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 204.8
+ ],
+ [
+ 1971.2,
+ 307.2
+ ],
+ [
+ 1996.8,
+ 307.2
+ ],
+ [
+ 1996.8,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59288465673674,
+ "center_latitude": 35.053834897955745,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.446702+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59299143136295,
+ 35.053916174404755,
+ -106.59292163772598,
+ 35.05396925492991
+ ],
+ "id": "be5f5870340dddc0b73a6bb5f9b7fb8e",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592966,
+ 35.053916,
+ 0
+ ],
+ [
+ -106.592922,
+ 35.053931,
+ 0
+ ],
+ [
+ -106.592947,
+ 35.053969,
+ 0
+ ],
+ [
+ -106.592991,
+ 35.053955,
+ 0
+ ],
+ [
+ -106.592966,
+ 35.053916,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 204.8
+ ],
+ [
+ 2220.8,
+ 307.2
+ ],
+ [
+ 2323.2,
+ 307.2
+ ],
+ [
+ 2323.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59295653454447,
+ "center_latitude": 35.053942714667336,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.346600+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5927756861547,
+ 35.05556940124416,
+ -106.59270589251771,
+ 35.055622481769326
+ ],
+ "id": "bfff1bcb2b4158bb8d0d6947686a949b",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.59275,
+ 35.055569,
+ 0
+ ],
+ [
+ -106.592706,
+ 35.055584,
+ 0
+ ],
+ [
+ -106.592731,
+ 35.055622,
+ 0
+ ],
+ [
+ -106.592776,
+ 35.055608,
+ 0
+ ],
+ [
+ -106.59275,
+ 35.055569,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5676.8,
+ 2700.8
+ ],
+ [
+ 5676.8,
+ 2803.2
+ ],
+ [
+ 5779.2,
+ 2803.2
+ ],
+ [
+ 5779.2,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59274078933622,
+ "center_latitude": 35.055595941506745,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.256563+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59191315246197,
+ 35.05427560070508,
+ -106.59184335882499,
+ 35.054328681230245
+ ],
+ "id": "eec754d03556cc0e85905ba8d1d4ab2a",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591888,
+ 35.054276,
+ 0
+ ],
+ [
+ -106.591843,
+ 35.05429,
+ 0
+ ],
+ [
+ -106.591869,
+ 35.054329,
+ 0
+ ],
+ [
+ -106.591913,
+ 35.054314,
+ 0
+ ],
+ [
+ -106.591888,
+ 35.054276,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 2700.8
+ ],
+ [
+ 2220.8,
+ 2803.2
+ ],
+ [
+ 2323.2,
+ 2803.2
+ ],
+ [
+ 2323.2,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59187825564348,
+ "center_latitude": 35.054302140967664,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.397365+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59183169094653,
+ 35.05418215955504,
+ -106.59178106472496,
+ 35.05420648895711
+ ],
+ "id": "af1db86e9d09b8b86b23d6b9e6c7f30e",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591825,
+ 35.054182,
+ 0
+ ],
+ [
+ -106.591781,
+ 35.054197,
+ 0
+ ],
+ [
+ -106.591787,
+ 35.054206,
+ 0
+ ],
+ [
+ -106.591832,
+ 35.054192,
+ 0
+ ],
+ [
+ -106.591825,
+ 35.054182,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 2700.8
+ ],
+ [
+ 1971.2,
+ 2803.2
+ ],
+ [
+ 1996.8,
+ 2803.2
+ ],
+ [
+ 1996.8,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59180637783575,
+ "center_latitude": 35.05419432425607,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.840086+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5928632511356,
+ 35.05532058628248,
+ -106.59279345749862,
+ 35.05537366680764
+ ],
+ "id": "b645ff29145b2369e40a279def7a3b8f",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592838,
+ 35.055321,
+ 0
+ ],
+ [
+ -106.592793,
+ 35.055335,
+ 0
+ ],
+ [
+ -106.592819,
+ 35.055374,
+ 0
+ ],
+ [
+ -106.592863,
+ 35.055359,
+ 0
+ ],
+ [
+ -106.592838,
+ 35.055321,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5196.8,
+ 2220.8
+ ],
+ [
+ 5196.8,
+ 2323.2
+ ],
+ [
+ 5299.2,
+ 2323.2
+ ],
+ [
+ 5299.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5928283543171,
+ "center_latitude": 35.05534712654506,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.243877+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59297107902569,
+ 35.05528464365244,
+ -106.59293446320105,
+ 35.05532666490682
+ ],
+ "id": "93ef31a23cba338eda3f30d6068f8668",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592946,
+ 35.055285,
+ 0
+ ],
+ [
+ -106.592934,
+ 35.055288,
+ 0
+ ],
+ [
+ -106.59296,
+ 35.055327,
+ 0
+ ],
+ [
+ -106.592971,
+ 35.055323,
+ 0
+ ],
+ [
+ -106.592946,
+ 35.055285,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5196.8,
+ 1971.2
+ ],
+ [
+ 5196.8,
+ 1996.8
+ ],
+ [
+ 5299.2,
+ 1996.8
+ ],
+ [
+ 5299.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59295277111337,
+ "center_latitude": 35.055305654279636,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.972691+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59243295309328,
+ 35.05383878186632,
+ -106.5923631594563,
+ 35.053891862391474
+ ],
+ "id": "35eb9c3eb9b7e19f1f23e4c980663d4b",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592407,
+ 35.053839,
+ 0
+ ],
+ [
+ -106.592363,
+ 35.053854,
+ 0
+ ],
+ [
+ -106.592389,
+ 35.053892,
+ 0
+ ],
+ [
+ -106.592433,
+ 35.053877,
+ 0
+ ],
+ [
+ -106.592407,
+ 35.053839,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 1164.8
+ ],
+ [
+ 1644.8,
+ 1267.2
+ ],
+ [
+ 1747.2,
+ 1267.2
+ ],
+ [
+ 1747.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59239805627479,
+ "center_latitude": 35.05386532212889,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.953996+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59203294880818,
+ 35.0544552952244,
+ -106.5919631551712,
+ 35.05450837574956
+ ],
+ "id": "9df727d256a8d63c8b48d9e2e63a489b",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592007,
+ 35.054455,
+ 0
+ ],
+ [
+ -106.591963,
+ 35.05447,
+ 0
+ ],
+ [
+ -106.591989,
+ 35.054508,
+ 0
+ ],
+ [
+ -106.592033,
+ 35.054494,
+ 0
+ ],
+ [
+ -106.592007,
+ 35.054455,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 2700.8
+ ],
+ [
+ 2700.8,
+ 2803.2
+ ],
+ [
+ 2803.2,
+ 2803.2
+ ],
+ [
+ 2803.2,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59199805198969,
+ "center_latitude": 35.05448183548698,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.460534+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59278407003585,
+ 35.053985294847124,
+ -106.59271427639887,
+ 35.05403837537229
+ ],
+ "id": "7375813aa0f7a944664872cecf853214",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592759,
+ 35.053985,
+ 0
+ ],
+ [
+ -106.592714,
+ 35.054,
+ 0
+ ],
+ [
+ -106.59274,
+ 35.054038,
+ 0
+ ],
+ [
+ -106.592784,
+ 35.054024,
+ 0
+ ],
+ [
+ -106.592759,
+ 35.053985,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 684.8
+ ],
+ [
+ 2220.8,
+ 787.2
+ ],
+ [
+ 2323.2,
+ 787.2
+ ],
+ [
+ 2323.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59274917321736,
+ "center_latitude": 35.054011835109705,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.557403+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59228092538176,
+ 35.053230577865996,
+ -106.59221113174479,
+ 35.05328365839115
+ ],
+ "id": "c1366de6da46fd4c360acaaa9e1a53d9",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592255,
+ 35.053231,
+ 0
+ ],
+ [
+ -106.592211,
+ 35.053245,
+ 0
+ ],
+ [
+ -106.592237,
+ 35.053284,
+ 0
+ ],
+ [
+ -106.592281,
+ 35.053269,
+ 0
+ ],
+ [
+ -106.592255,
+ 35.053231,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 684.8
+ ],
+ [
+ 204.8,
+ 787.2
+ ],
+ [
+ 307.2,
+ 787.2
+ ],
+ [
+ 307.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59224602856327,
+ "center_latitude": 35.05325711812857,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.508593+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59302366272829,
+ 35.05434468388576,
+ -106.59295386909129,
+ 35.054397764410915
+ ],
+ "id": "ebcad85b08ff81aa0f3ebe2fd395f903",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592998,
+ 35.054345,
+ 0
+ ],
+ [
+ -106.592954,
+ 35.054359,
+ 0
+ ],
+ [
+ -106.592979,
+ 35.054398,
+ 0
+ ],
+ [
+ -106.593024,
+ 35.054383,
+ 0
+ ],
+ [
+ -106.592998,
+ 35.054345,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3180.8,
+ 684.8
+ ],
+ [
+ 3180.8,
+ 787.2
+ ],
+ [
+ 3283.2,
+ 787.2
+ ],
+ [
+ 3283.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59298876590978,
+ "center_latitude": 35.05437122414834,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.704361+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59350153650148,
+ 35.05547040810171,
+ -106.5934509102799,
+ 35.055494737503786
+ ],
+ "id": "a367f0f16aec5ecb1b747d66ff959630",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593495,
+ 35.05547,
+ 0
+ ],
+ [
+ -106.593451,
+ 35.055485,
+ 0
+ ],
+ [
+ -106.593457,
+ 35.055495,
+ 0
+ ],
+ [
+ -106.593502,
+ 35.05548,
+ 0
+ ],
+ [
+ -106.593495,
+ 35.05547,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6003.2,
+ 1164.8
+ ],
+ [
+ 6003.2,
+ 1267.2
+ ],
+ [
+ 6028.8,
+ 1267.2
+ ],
+ [
+ 6028.8,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5934762233907,
+ "center_latitude": 35.055482572802745,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.161034+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59277781868802,
+ 35.055979791527804,
+ -106.59272604441811,
+ 35.05600584300235
+ ],
+ "id": "af63904ec3333557ff769c04688bcd82",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.59277,
+ 35.05598,
+ 0
+ ],
+ [
+ -106.592726,
+ 35.055995,
+ 0
+ ],
+ [
+ -106.592734,
+ 35.056006,
+ 0
+ ],
+ [
+ -106.592778,
+ 35.055991,
+ 0
+ ],
+ [
+ -106.59277,
+ 35.05598,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6588.4,
+ 3180.8
+ ],
+ [
+ 6588.4,
+ 3283.2
+ ],
+ [
+ 6618.6,
+ 3283.2
+ ],
+ [
+ 6618.6,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59275193155307,
+ "center_latitude": 35.055992817265086,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:19.920576+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.591617369135,
+ 35.05345176328158,
+ -106.59154757549803,
+ 35.05350484380674
+ ],
+ "id": "b75868748cd48124266bacfa5b7f111e",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591592,
+ 35.053452,
+ 0
+ ],
+ [
+ -106.591548,
+ 35.053467,
+ 0
+ ],
+ [
+ -106.591573,
+ 35.053505,
+ 0
+ ],
+ [
+ -106.591617,
+ 35.05349,
+ 0
+ ],
+ [
+ -106.591592,
+ 35.053452,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 2220.8
+ ],
+ [
+ 204.8,
+ 2323.2
+ ],
+ [
+ 307.2,
+ 2323.2
+ ],
+ [
+ 307.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5915824723165,
+ "center_latitude": 35.05347830354416,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.411181+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59172519702508,
+ 35.053415820651544,
+ -106.59168858120044,
+ 35.05345784190594
+ ],
+ "id": "1dd8a49198370da5e81f2fb8ea7f1443",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.5917,
+ 35.053416,
+ 0
+ ],
+ [
+ -106.591689,
+ 35.05342,
+ 0
+ ],
+ [
+ -106.591714,
+ 35.053458,
+ 0
+ ],
+ [
+ -106.591725,
+ 35.053454,
+ 0
+ ],
+ [
+ -106.5917,
+ 35.053416,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 1971.2
+ ],
+ [
+ 204.8,
+ 1996.8
+ ],
+ [
+ 307.2,
+ 1996.8
+ ],
+ [
+ 307.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59170688911277,
+ "center_latitude": 35.05343683127874,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.478901+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59208458606372,
+ 35.0539549042095,
+ -106.59204797023908,
+ 35.05399692546388
+ ],
+ "id": "412287232c3e72943dc199e811151b5c",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592059,
+ 35.053955,
+ 0
+ ],
+ [
+ -106.592048,
+ 35.053959,
+ 0
+ ],
+ [
+ -106.592074,
+ 35.053997,
+ 0
+ ],
+ [
+ -106.592085,
+ 35.053993,
+ 0
+ ],
+ [
+ -106.592059,
+ 35.053955,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 1971.2
+ ],
+ [
+ 1644.8,
+ 1996.8
+ ],
+ [
+ 1747.2,
+ 1996.8
+ ],
+ [
+ 1747.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59206627815142,
+ "center_latitude": 35.05397591483669,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.532317+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59197675817363,
+ 35.05399084683953,
+ -106.59190696453665,
+ 35.05404392736469
+ ],
+ "id": "24148fbfb8d3172734a60bad70acb17b",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591951,
+ 35.053991,
+ 0
+ ],
+ [
+ -106.591907,
+ 35.054006,
+ 0
+ ],
+ [
+ -106.591933,
+ 35.054044,
+ 0
+ ],
+ [
+ -106.591977,
+ 35.054029,
+ 0
+ ],
+ [
+ -106.591951,
+ 35.053991,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 2220.8
+ ],
+ [
+ 1644.8,
+ 2323.2
+ ],
+ [
+ 1747.2,
+ 2323.2
+ ],
+ [
+ 1747.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59194186135514,
+ "center_latitude": 35.054017387102114,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.601848+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59335082040158,
+ 35.0544552579627,
+ -106.59328102676461,
+ 35.054508338487864
+ ],
+ "id": "cc392d194fa2b17f66b28cf157ebb979",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593325,
+ 35.054455,
+ 0
+ ],
+ [
+ -106.593281,
+ 35.05447,
+ 0
+ ],
+ [
+ -106.593307,
+ 35.054508,
+ 0
+ ],
+ [
+ -106.593351,
+ 35.054494,
+ 0
+ ],
+ [
+ -106.593325,
+ 35.054455,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3660.8,
+ 204.8
+ ],
+ [
+ 3660.8,
+ 307.2
+ ],
+ [
+ 3763.2,
+ 307.2
+ ],
+ [
+ 3763.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5933159235831,
+ "center_latitude": 35.05448179822528,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.547944+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59214688016375,
+ 35.05407709648264,
+ -106.59212943175451,
+ 35.05409036661393
+ ],
+ "id": "ef99ecccd43b3fb9b160282c8b912e8a",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.59214,
+ 35.054077,
+ 0
+ ],
+ [
+ -106.592129,
+ 35.054081,
+ 0
+ ],
+ [
+ -106.592136,
+ 35.05409,
+ 0
+ ],
+ [
+ -106.592147,
+ 35.054087,
+ 0
+ ],
+ [
+ -106.59214,
+ 35.054077,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 1971.2
+ ],
+ [
+ 1971.2,
+ 1996.8
+ ],
+ [
+ 1996.8,
+ 1996.8
+ ],
+ [
+ 1996.8,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59213815595913,
+ "center_latitude": 35.05408373154828,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.538841+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59203905227365,
+ 35.054113039112664,
+ -106.59198842605208,
+ 35.05413736851474
+ ],
+ "id": "1b9de9e9f133e345019fa06c4cc58f49",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592033,
+ 35.054113,
+ 0
+ ],
+ [
+ -106.591988,
+ 35.054128,
+ 0
+ ],
+ [
+ -106.591995,
+ 35.054137,
+ 0
+ ],
+ [
+ -106.592039,
+ 35.054123,
+ 0
+ ],
+ [
+ -106.592033,
+ 35.054113,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 2220.8
+ ],
+ [
+ 1971.2,
+ 2323.2
+ ],
+ [
+ 1996.8,
+ 2323.2
+ ],
+ [
+ 1996.8,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59201373916288,
+ "center_latitude": 35.054125203813705,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.572767+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59222834167919,
+ 35.05417053763268,
+ -106.59219172585453,
+ 35.05421255888706
+ ],
+ "id": "f5b21a4d57f365c303b2ff1f66ad2241",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592203,
+ 35.054171,
+ 0
+ ],
+ [
+ -106.592192,
+ 35.054174,
+ 0
+ ],
+ [
+ -106.592217,
+ 35.054213,
+ 0
+ ],
+ [
+ -106.592228,
+ 35.054209,
+ 0
+ ],
+ [
+ -106.592203,
+ 35.054171,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 1971.2
+ ],
+ [
+ 2220.8,
+ 1996.8
+ ],
+ [
+ 2323.2,
+ 1996.8
+ ],
+ [
+ 2323.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59221003376686,
+ "center_latitude": 35.05419154825987,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.477221+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59212051378908,
+ 35.054206480262714,
+ -106.5920507201521,
+ 35.05425956078787
+ ],
+ "id": "2df41f71db5cdaa4ef70e4b243d27b40",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592095,
+ 35.054206,
+ 0
+ ],
+ [
+ -106.592051,
+ 35.054221,
+ 0
+ ],
+ [
+ -106.592076,
+ 35.05426,
+ 0
+ ],
+ [
+ -106.592121,
+ 35.054245,
+ 0
+ ],
+ [
+ -106.592095,
+ 35.054206,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 2220.8
+ ],
+ [
+ 2220.8,
+ 2323.2
+ ],
+ [
+ 2323.2,
+ 2323.2
+ ],
+ [
+ 2323.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59208561697059,
+ "center_latitude": 35.054233020525295,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:15.721494+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59137350951283,
+ 35.054191929726464,
+ -106.59131313353613,
+ 35.05424187103153
+ ],
+ "id": "34e8817c0f306ff5450f740fbf68050e",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591348,
+ 35.054192,
+ 0
+ ],
+ [
+ -106.591313,
+ 35.054204,
+ 0
+ ],
+ [
+ -106.591339,
+ 35.054242,
+ 0
+ ],
+ [
+ -106.591374,
+ 35.05423,
+ 0
+ ],
+ [
+ -106.591348,
+ 35.054192,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 3617.2
+ ],
+ [
+ 1644.8,
+ 3697.8
+ ],
+ [
+ 1747.2,
+ 3697.8
+ ],
+ [
+ 1747.2,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59134332152448,
+ "center_latitude": 35.054216900379004,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.676896+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59257670870873,
+ 35.05405441528949,
+ -106.59250691507175,
+ 35.054107495814655
+ ],
+ "id": "f098ddc34f890da4b491df1be7617599",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592551,
+ 35.054054,
+ 0
+ ],
+ [
+ -106.592507,
+ 35.054069,
+ 0
+ ],
+ [
+ -106.592532,
+ 35.054107,
+ 0
+ ],
+ [
+ -106.592577,
+ 35.054093,
+ 0
+ ],
+ [
+ -106.592551,
+ 35.054054,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 1164.8
+ ],
+ [
+ 2220.8,
+ 1267.2
+ ],
+ [
+ 2323.2,
+ 1267.2
+ ],
+ [
+ 2323.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59254181189024,
+ "center_latitude": 35.054080955552074,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.807555+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5924952471933,
+ 35.05396097413945,
+ -106.59244462097172,
+ 35.053985303541516
+ ],
+ "id": "7d495f88421ae544cb22a50de76a7b17",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592489,
+ 35.053961,
+ 0
+ ],
+ [
+ -106.592445,
+ 35.053976,
+ 0
+ ],
+ [
+ -106.592451,
+ 35.053985,
+ 0
+ ],
+ [
+ -106.592495,
+ 35.053971,
+ 0
+ ],
+ [
+ -106.592489,
+ 35.053961,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 1164.8
+ ],
+ [
+ 1971.2,
+ 1267.2
+ ],
+ [
+ 1996.8,
+ 1267.2
+ ],
+ [
+ 1996.8,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59246993408252,
+ "center_latitude": 35.05397313884048,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.983134+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59143580361288,
+ 35.054314121999596,
+ -106.59139459505155,
+ 35.05433531218158
+ ],
+ "id": "efa4a6b4af1528ed33372471c889abac",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591429,
+ 35.054314,
+ 0
+ ],
+ [
+ -106.591395,
+ 35.054326,
+ 0
+ ],
+ [
+ -106.591401,
+ 35.054335,
+ 0
+ ],
+ [
+ -106.591436,
+ 35.054324,
+ 0
+ ],
+ [
+ -106.591429,
+ 35.054314,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 3617.2
+ ],
+ [
+ 1971.2,
+ 3697.8
+ ],
+ [
+ 1996.8,
+ 3697.8
+ ],
+ [
+ 1996.8,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5914151993322,
+ "center_latitude": 35.05432471709059,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.693369+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59151726512829,
+ 35.054407563149645,
+ -106.59145688915159,
+ 35.05445750445471
+ ],
+ "id": "46be1236362d5bcff8c5ef03c14367d5",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591492,
+ 35.054408,
+ 0
+ ],
+ [
+ -106.591457,
+ 35.054419,
+ 0
+ ],
+ [
+ -106.591482,
+ 35.054458,
+ 0
+ ],
+ [
+ -106.591517,
+ 35.054446,
+ 0
+ ],
+ [
+ -106.591492,
+ 35.054408,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 3617.2
+ ],
+ [
+ 2220.8,
+ 3697.8
+ ],
+ [
+ 2323.2,
+ 3697.8
+ ],
+ [
+ 2323.2,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59148707713993,
+ "center_latitude": 35.05443253380218,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.028432+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59283798025471,
+ 35.0556915935173,
+ -106.59278735403313,
+ 35.05571592291937
+ ],
+ "id": "c2118bd425bae0355268bcc5174de4ae",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592832,
+ 35.055692,
+ 0
+ ],
+ [
+ -106.592787,
+ 35.055706,
+ 0
+ ],
+ [
+ -106.592794,
+ 35.055716,
+ 0
+ ],
+ [
+ -106.592838,
+ 35.055701,
+ 0
+ ],
+ [
+ -106.592832,
+ 35.055692,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6003.2,
+ 2700.8
+ ],
+ [
+ 6003.2,
+ 2803.2
+ ],
+ [
+ 6028.8,
+ 2803.2
+ ],
+ [
+ 6028.8,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59281266714393,
+ "center_latitude": 35.055703758218336,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.282522+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59281630140116,
+ 35.05441380432813,
+ -106.59274650776418,
+ 35.05446688485329
+ ],
+ "id": "3d5b43cc97481a5ddd03ccb5939ad2e7",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592791,
+ 35.054414,
+ 0
+ ],
+ [
+ -106.592747,
+ 35.054429,
+ 0
+ ],
+ [
+ -106.592772,
+ 35.054467,
+ 0
+ ],
+ [
+ -106.592816,
+ 35.054452,
+ 0
+ ],
+ [
+ -106.592791,
+ 35.054414,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3180.8,
+ 1164.8
+ ],
+ [
+ 3180.8,
+ 1267.2
+ ],
+ [
+ 3283.2,
+ 1267.2
+ ],
+ [
+ 3283.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59278140458267,
+ "center_latitude": 35.05444034459071,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.916626+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59279103052027,
+ 35.05478481156295,
+ -106.5927404042987,
+ 35.05480914096502
+ ],
+ "id": "5380865f873926da9397ed5c83760756",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592785,
+ 35.054785,
+ 0
+ ],
+ [
+ -106.59274,
+ 35.0548,
+ 0
+ ],
+ [
+ -106.592747,
+ 35.054809,
+ 0
+ ],
+ [
+ -106.592791,
+ 35.054794,
+ 0
+ ],
+ [
+ -106.592785,
+ 35.054785,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3987.2,
+ 1644.8
+ ],
+ [
+ 3987.2,
+ 1747.2
+ ],
+ [
+ 4012.8,
+ 1747.2
+ ],
+ [
+ 4012.8,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59276571740949,
+ "center_latitude": 35.05479697626399,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.257571+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59152980415409,
+ 35.053700578243266,
+ -106.59146001051711,
+ 35.053753658768436
+ ],
+ "id": "0de3c70335a2ca098c5c22d17b46c1ad",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591504,
+ 35.053701,
+ 0
+ ],
+ [
+ -106.59146,
+ 35.053715,
+ 0
+ ],
+ [
+ -106.591486,
+ 35.053754,
+ 0
+ ],
+ [
+ -106.59153,
+ 35.053739,
+ 0
+ ],
+ [
+ -106.591504,
+ 35.053701,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 2700.8
+ ],
+ [
+ 684.8,
+ 2803.2
+ ],
+ [
+ 787.2,
+ 2803.2
+ ],
+ [
+ 787.2,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5914949073356,
+ "center_latitude": 35.05372711850585,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.741194+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59219336040086,
+ 35.05347939282768,
+ -106.59212356676387,
+ 35.05353247335284
+ ],
+ "id": "3e3ad7702e9148a40ad0c71f69c14da3",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592168,
+ 35.053479,
+ 0
+ ],
+ [
+ -106.592124,
+ 35.053494,
+ 0
+ ],
+ [
+ -106.592149,
+ 35.053532,
+ 0
+ ],
+ [
+ -106.592193,
+ 35.053518,
+ 0
+ ],
+ [
+ -106.592168,
+ 35.053479,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 1164.8
+ ],
+ [
+ 684.8,
+ 1267.2
+ ],
+ [
+ 787.2,
+ 1267.2
+ ],
+ [
+ 787.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59215846358236,
+ "center_latitude": 35.053505933090264,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.847897+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59240072172797,
+ 35.05341027238531,
+ -106.59233092809099,
+ 35.05346335291047
+ ],
+ "id": "71f3e3b19030ba11b9085f2fec0addc3",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592375,
+ 35.05341,
+ 0
+ ],
+ [
+ -106.592331,
+ 35.053425,
+ 0
+ ],
+ [
+ -106.592356,
+ 35.053463,
+ 0
+ ],
+ [
+ -106.592401,
+ 35.053449,
+ 0
+ ],
+ [
+ -106.592375,
+ 35.05341,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 684.8
+ ],
+ [
+ 684.8,
+ 787.2
+ ],
+ [
+ 787.2,
+ 787.2
+ ],
+ [
+ 787.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59236582490948,
+ "center_latitude": 35.05343681264789,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.570472+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59341311450162,
+ 35.05457745023584,
+ -106.59336248828004,
+ 35.054601779637906
+ ],
+ "id": "0eb10f1e60aaa45be51c68821adf01cf",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593407,
+ 35.054577,
+ 0
+ ],
+ [
+ -106.593362,
+ 35.054592,
+ 0
+ ],
+ [
+ -106.593369,
+ 35.054602,
+ 0
+ ],
+ [
+ -106.593413,
+ 35.054587,
+ 0
+ ],
+ [
+ -106.593407,
+ 35.054577,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3987.2,
+ 204.8
+ ],
+ [
+ 3987.2,
+ 307.2
+ ],
+ [
+ 4012.8,
+ 307.2
+ ],
+ [
+ 4012.8,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59338780139083,
+ "center_latitude": 35.05458961493687,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.514609+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5910141204742,
+ 35.05365284616851,
+ -106.5909537444975,
+ 35.05370278747358
+ ],
+ "id": "d9b495b031434eeb566fa1c4484585e4",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.590989,
+ 35.053653,
+ 0
+ ],
+ [
+ -106.590954,
+ 35.053664,
+ 0
+ ],
+ [
+ -106.590979,
+ 35.053703,
+ 0
+ ],
+ [
+ -106.591014,
+ 35.053691,
+ 0
+ ],
+ [
+ -106.590989,
+ 35.053653,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 3617.2
+ ],
+ [
+ 204.8,
+ 3697.8
+ ],
+ [
+ 307.2,
+ 3697.8
+ ],
+ [
+ 307.2,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59098393248584,
+ "center_latitude": 35.05367781682104,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.523939+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59272873642026,
+ 35.054662619289815,
+ -106.59265894278327,
+ 35.05471569981498
+ ],
+ "id": "a7f79b95c84c64631c6f3e09d5714f0e",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592703,
+ 35.054663,
+ 0
+ ],
+ [
+ -106.592659,
+ 35.054677,
+ 0
+ ],
+ [
+ -106.592684,
+ 35.054716,
+ 0
+ ],
+ [
+ -106.592729,
+ 35.054701,
+ 0
+ ],
+ [
+ -106.592703,
+ 35.054663,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3660.8,
+ 1644.8
+ ],
+ [
+ 3660.8,
+ 1747.2
+ ],
+ [
+ 3763.2,
+ 1747.2
+ ],
+ [
+ 3763.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59269383960176,
+ "center_latitude": 35.054689159552396,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.238319+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59214020612859,
+ 35.05534197465009,
+ -106.59207983015189,
+ 35.05539191595516
+ ],
+ "id": "d94057419c275f9b9bcb9cef5aa57ebd",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592115,
+ 35.055342,
+ 0
+ ],
+ [
+ -106.59208,
+ 35.055354,
+ 0
+ ],
+ [
+ -106.592105,
+ 35.055392,
+ 0
+ ],
+ [
+ -106.59214,
+ 35.05538,
+ 0
+ ],
+ [
+ -106.592115,
+ 35.055342,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4716.8,
+ 3617.2
+ ],
+ [
+ 4716.8,
+ 3697.8
+ ],
+ [
+ 4819.2,
+ 3697.8
+ ],
+ [
+ 4819.2,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59211001814023,
+ "center_latitude": 35.05536694530262,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.477504+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59284767574749,
+ 35.05370054098157,
+ -106.59277788211052,
+ 35.053753621506736
+ ],
+ "id": "621af6248f7dde258947873cdd28aba2",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592822,
+ 35.053701,
+ 0
+ ],
+ [
+ -106.592778,
+ 35.053715,
+ 0
+ ],
+ [
+ -106.592803,
+ 35.053754,
+ 0
+ ],
+ [
+ -106.592848,
+ 35.053739,
+ 0
+ ],
+ [
+ -106.592822,
+ 35.053701,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 204.8
+ ],
+ [
+ 1644.8,
+ 307.2
+ ],
+ [
+ 1747.2,
+ 307.2
+ ],
+ [
+ 1747.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59281277892902,
+ "center_latitude": 35.053727081244155,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.497646+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59186620272753,
+ 35.053368818750734,
+ -106.59179640909055,
+ 35.053421899275904
+ ],
+ "id": "6b66f98872f127e82c46f463f98c42d8",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591841,
+ 35.053369,
+ 0
+ ],
+ [
+ -106.591796,
+ 35.053384,
+ 0
+ ],
+ [
+ -106.591822,
+ 35.053422,
+ 0
+ ],
+ [
+ -106.591866,
+ 35.053407,
+ 0
+ ],
+ [
+ -106.591841,
+ 35.053369,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 1644.8
+ ],
+ [
+ 204.8,
+ 1747.2
+ ],
+ [
+ 307.2,
+ 1747.2
+ ],
+ [
+ 307.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59183130590904,
+ "center_latitude": 35.053395359013315,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.046498+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59236010648152,
+ 35.05456586930134,
+ -106.59229031284453,
+ 35.054618949826505
+ ],
+ "id": "a9318f096ec3852a0e56a99052015182",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592335,
+ 35.054566,
+ 0
+ ],
+ [
+ -106.59229,
+ 35.054581,
+ 0
+ ],
+ [
+ -106.592316,
+ 35.054619,
+ 0
+ ],
+ [
+ -106.59236,
+ 35.054604,
+ 0
+ ],
+ [
+ -106.592335,
+ 35.054566,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3180.8,
+ 2220.8
+ ],
+ [
+ 3180.8,
+ 2323.2
+ ],
+ [
+ 3283.2,
+ 2323.2
+ ],
+ [
+ 3283.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59232520966302,
+ "center_latitude": 35.054592409563924,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:15.863474+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5924679343716,
+ 35.054529926671314,
+ -106.59243131854696,
+ 35.054571947925695
+ ],
+ "id": "834ae8d79255388457660bc0980e4a4d",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592442,
+ 35.05453,
+ 0
+ ],
+ [
+ -106.592431,
+ 35.054534,
+ 0
+ ],
+ [
+ -106.592457,
+ 35.054572,
+ 0
+ ],
+ [
+ -106.592468,
+ 35.054568,
+ 0
+ ],
+ [
+ -106.592442,
+ 35.05453,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3180.8,
+ 1971.2
+ ],
+ [
+ 3180.8,
+ 1996.8
+ ],
+ [
+ 3283.2,
+ 1996.8
+ ],
+ [
+ 3283.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59244962645928,
+ "center_latitude": 35.0545509372985,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.519744+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59331944605526,
+ 35.05516852130926,
+ -106.59324965241827,
+ 35.05522160183442
+ ],
+ "id": "7eb9b99d7cbe7e9d965d141dbfa00c93",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593294,
+ 35.055169,
+ 0
+ ],
+ [
+ -106.59325,
+ 35.055183,
+ 0
+ ],
+ [
+ -106.593275,
+ 35.055222,
+ 0
+ ],
+ [
+ -106.593319,
+ 35.055207,
+ 0
+ ],
+ [
+ -106.593294,
+ 35.055169,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5196.8,
+ 1164.8
+ ],
+ [
+ 5196.8,
+ 1267.2
+ ],
+ [
+ 5299.2,
+ 1267.2
+ ],
+ [
+ 5299.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59328454923676,
+ "center_latitude": 35.055195061571844,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.076678+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59132244282698,
+ 35.05376969868564,
+ -106.59125264919,
+ 35.0538227792108
+ ],
+ "id": "af00204069511fef9e66a338a74f8dbb",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591297,
+ 35.05377,
+ 0
+ ],
+ [
+ -106.591253,
+ 35.053784,
+ 0
+ ],
+ [
+ -106.591278,
+ 35.053823,
+ 0
+ ],
+ [
+ -106.591322,
+ 35.053808,
+ 0
+ ],
+ [
+ -106.591297,
+ 35.05377,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 3180.8
+ ],
+ [
+ 684.8,
+ 3283.2
+ ],
+ [
+ 787.2,
+ 3283.2
+ ],
+ [
+ 787.2,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59128754600849,
+ "center_latitude": 35.05379623894822,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:19.619294+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59232873213516,
+ 35.055279132647904,
+ -106.59225893849818,
+ 35.05533221317306
+ ],
+ "id": "0a8ce4bfd7714ea7885f7809a9fa9237",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592303,
+ 35.055279,
+ 0
+ ],
+ [
+ -106.592259,
+ 35.055294,
+ 0
+ ],
+ [
+ -106.592284,
+ 35.055332,
+ 0
+ ],
+ [
+ -106.592329,
+ 35.055317,
+ 0
+ ],
+ [
+ -106.592303,
+ 35.055279,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4716.8,
+ 3180.8
+ ],
+ [
+ 4716.8,
+ 3283.2
+ ],
+ [
+ 4819.2,
+ 3283.2
+ ],
+ [
+ 4819.2,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59229383531667,
+ "center_latitude": 35.055305672910485,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.857569+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59323188107435,
+ 35.055417336270956,
+ -106.59316208743736,
+ 35.05547041679611
+ ],
+ "id": "e3615ac3f7351a4c770dd53be06771e0",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593206,
+ 35.055417,
+ 0
+ ],
+ [
+ -106.593162,
+ 35.055432,
+ 0
+ ],
+ [
+ -106.593188,
+ 35.05547,
+ 0
+ ],
+ [
+ -106.593232,
+ 35.055456,
+ 0
+ ],
+ [
+ -106.593206,
+ 35.055417,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5676.8,
+ 1644.8
+ ],
+ [
+ 5676.8,
+ 1747.2
+ ],
+ [
+ 5779.2,
+ 1747.2
+ ],
+ [
+ 5779.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59319698425585,
+ "center_latitude": 35.05544387653353,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.809897+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5916496005003,
+ 35.053880272762584,
+ -106.59157980686332,
+ 35.053933353287746
+ ],
+ "id": "36a0609192f1727c9c0cf211b2f79888",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591624,
+ 35.05388,
+ 0
+ ],
+ [
+ -106.59158,
+ 35.053895,
+ 0
+ ],
+ [
+ -106.591605,
+ 35.053933,
+ 0
+ ],
+ [
+ -106.59165,
+ 35.053919,
+ 0
+ ],
+ [
+ -106.591624,
+ 35.05388,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 2700.8
+ ],
+ [
+ 1164.8,
+ 2803.2
+ ],
+ [
+ 1267.2,
+ 2803.2
+ ],
+ [
+ 1267.2,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59161470368181,
+ "center_latitude": 35.053906813025165,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.793529+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59170579113486,
+ 35.05434472114745,
+ -106.59163599749787,
+ 35.054397801672614
+ ],
+ "id": "eec6b0e55b6b7e601e94cad6faf976e1",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.59168,
+ 35.054345,
+ 0
+ ],
+ [
+ -106.591636,
+ 35.054359,
+ 0
+ ],
+ [
+ -106.591662,
+ 35.054398,
+ 0
+ ],
+ [
+ -106.591706,
+ 35.054383,
+ 0
+ ],
+ [
+ -106.59168,
+ 35.054345,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 3180.8
+ ],
+ [
+ 2220.8,
+ 3283.2
+ ],
+ [
+ 2323.2,
+ 3283.2
+ ],
+ [
+ 2323.2,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59167089431637,
+ "center_latitude": 35.05437126141003,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.489360+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59175685782071,
+ 35.054766952188274,
+ -106.59169648184401,
+ 35.054816893493346
+ ],
+ "id": "970a78d805ea97907182ef6d7d4a15a9",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591731,
+ 35.054767,
+ 0
+ ],
+ [
+ -106.591696,
+ 35.054779,
+ 0
+ ],
+ [
+ -106.591722,
+ 35.054817,
+ 0
+ ],
+ [
+ -106.591757,
+ 35.054805,
+ 0
+ ],
+ [
+ -106.591731,
+ 35.054767,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3180.8,
+ 3617.2
+ ],
+ [
+ 3180.8,
+ 3697.8
+ ],
+ [
+ 3283.2,
+ 3697.8
+ ],
+ [
+ 3283.2,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59172666983235,
+ "center_latitude": 35.05479192284081,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.095516+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59120264648077,
+ 35.053590004166324,
+ -106.59113285284378,
+ 35.05364308469148
+ ],
+ "id": "985ea487e6d9c9843460119b93ed358a",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591177,
+ 35.05359,
+ 0
+ ],
+ [
+ -106.591133,
+ 35.053605,
+ 0
+ ],
+ [
+ -106.591158,
+ 35.053643,
+ 0
+ ],
+ [
+ -106.591203,
+ 35.053628,
+ 0
+ ],
+ [
+ -106.591177,
+ 35.05359,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 3180.8
+ ],
+ [
+ 204.8,
+ 3283.2
+ ],
+ [
+ 307.2,
+ 3283.2
+ ],
+ [
+ 307.2,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59116774966228,
+ "center_latitude": 35.05361654442891,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:19.556705+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5922600024748,
+ 35.055521669169416,
+ -106.59219962649811,
+ 35.05557161047448
+ ],
+ "id": "cb156d9778ac97d6c199ab67b9d79037",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592234,
+ 35.055522,
+ 0
+ ],
+ [
+ -106.5922,
+ 35.055533,
+ 0
+ ],
+ [
+ -106.592225,
+ 35.055572,
+ 0
+ ],
+ [
+ -106.59226,
+ 35.05556,
+ 0
+ ],
+ [
+ -106.592234,
+ 35.055522,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5196.8,
+ 3617.2
+ ],
+ [
+ 5196.8,
+ 3697.8
+ ],
+ [
+ 5299.2,
+ 3697.8
+ ],
+ [
+ 5299.2,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59222981448644,
+ "center_latitude": 35.05554663982194,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.526601+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59207356405464,
+ 35.053299698308365,
+ -106.59200377041766,
+ 35.05335277883352
+ ],
+ "id": "4258cc047aeee1764a45d5a62cdc5f88",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592048,
+ 35.0533,
+ 0
+ ],
+ [
+ -106.592004,
+ 35.053314,
+ 0
+ ],
+ [
+ -106.592029,
+ 35.053353,
+ 0
+ ],
+ [
+ -106.592074,
+ 35.053338,
+ 0
+ ],
+ [
+ -106.592048,
+ 35.0533,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 1164.8
+ ],
+ [
+ 204.8,
+ 1267.2
+ ],
+ [
+ 307.2,
+ 1267.2
+ ],
+ [
+ 307.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59203866723615,
+ "center_latitude": 35.053326238570946,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.780875+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59298518001513,
+ 35.055910671085435,
+ -106.59293340574524,
+ 35.05593672255998
+ ],
+ "id": "d7af0545a6209e1f36f41005aa589674",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592978,
+ 35.055911,
+ 0
+ ],
+ [
+ -106.592933,
+ 35.055925,
+ 0
+ ],
+ [
+ -106.592941,
+ 35.055937,
+ 0
+ ],
+ [
+ -106.592985,
+ 35.055922,
+ 0
+ ],
+ [
+ -106.592978,
+ 35.055911,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6588.4,
+ 2700.8
+ ],
+ [
+ 6588.4,
+ 2803.2
+ ],
+ [
+ 6618.6,
+ 2803.2
+ ],
+ [
+ 6618.6,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5929592928802,
+ "center_latitude": 35.05592369682271,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.633478+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5931434590745,
+ 35.05452437840508,
+ -106.5930736654375,
+ 35.05457745893023
+ ],
+ "id": "8cbb802a6420a606221a12152d509d1f",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593118,
+ 35.054524,
+ 0
+ ],
+ [
+ -106.593074,
+ 35.054539,
+ 0
+ ],
+ [
+ -106.593099,
+ 35.054577,
+ 0
+ ],
+ [
+ -106.593143,
+ 35.054563,
+ 0
+ ],
+ [
+ -106.593118,
+ 35.054524,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3660.8,
+ 684.8
+ ],
+ [
+ 3660.8,
+ 787.2
+ ],
+ [
+ 3763.2,
+ 787.2
+ ],
+ [
+ 3763.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59310856225599,
+ "center_latitude": 35.05455091866766,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.782232+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59269650505495,
+ 35.05423410980881,
+ -106.59262671141796,
+ 35.05428719033397
+ ],
+ "id": "fc2018ae7ed2d9131f642295425c24f8",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592671,
+ 35.054234,
+ 0
+ ],
+ [
+ -106.592627,
+ 35.054249,
+ 0
+ ],
+ [
+ -106.592652,
+ 35.054287,
+ 0
+ ],
+ [
+ -106.592697,
+ 35.054272,
+ 0
+ ],
+ [
+ -106.592671,
+ 35.054234,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 1164.8
+ ],
+ [
+ 2700.8,
+ 1267.2
+ ],
+ [
+ 2803.2,
+ 1267.2
+ ],
+ [
+ 2803.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59266160823645,
+ "center_latitude": 35.05426065007139,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.857601+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59311122770916,
+ 35.05409586892407,
+ -106.59304143407219,
+ 35.05414894944923
+ ],
+ "id": "b8f9f4ea6fe636908398705b322da6cd",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593086,
+ 35.054096,
+ 0
+ ],
+ [
+ -106.593041,
+ 35.054111,
+ 0
+ ],
+ [
+ -106.593067,
+ 35.054149,
+ 0
+ ],
+ [
+ -106.593111,
+ 35.054134,
+ 0
+ ],
+ [
+ -106.593086,
+ 35.054096,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 204.8
+ ],
+ [
+ 2700.8,
+ 307.2
+ ],
+ [
+ 2803.2,
+ 307.2
+ ],
+ [
+ 2803.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59307633089068,
+ "center_latitude": 35.05412240918665,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.467509+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59352680738236,
+ 35.05509940086689,
+ -106.59345701374538,
+ 35.05515248139205
+ ],
+ "id": "d8f4079404967da767665702bbdaf8fa",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593501,
+ 35.055099,
+ 0
+ ],
+ [
+ -106.593457,
+ 35.055114,
+ 0
+ ],
+ [
+ -106.593483,
+ 35.055152,
+ 0
+ ],
+ [
+ -106.593527,
+ 35.055138,
+ 0
+ ],
+ [
+ -106.593501,
+ 35.055099,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5196.8,
+ 684.8
+ ],
+ [
+ 5196.8,
+ 787.2
+ ],
+ [
+ 5299.2,
+ 787.2
+ ],
+ [
+ 5299.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59349191056387,
+ "center_latitude": 35.05512594112947,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.427572+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59244209292105,
+ 35.05582355596186,
+ -106.59240088435973,
+ 35.05584474614384
+ ],
+ "id": "4bf0a4b252249fd8435ef18e31c539a6",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592436,
+ 35.055824,
+ 0
+ ],
+ [
+ -106.592401,
+ 35.055835,
+ 0
+ ],
+ [
+ -106.592407,
+ 35.055845,
+ 0
+ ],
+ [
+ -106.592442,
+ 35.055833,
+ 0
+ ],
+ [
+ -106.592436,
+ 35.055824,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6003.2,
+ 3617.2
+ ],
+ [
+ 6003.2,
+ 3697.8
+ ],
+ [
+ 6028.8,
+ 3697.8
+ ],
+ [
+ 6028.8,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59242148864038,
+ "center_latitude": 35.05583415105285,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.607809+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59373416870946,
+ 35.05503028042452,
+ -106.59366437507249,
+ 35.05508336094968
+ ],
+ "id": "b0d71091daa50752c2d594cd2c069ab9",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593709,
+ 35.05503,
+ 0
+ ],
+ [
+ -106.593664,
+ 35.055045,
+ 0
+ ],
+ [
+ -106.59369,
+ 35.055083,
+ 0
+ ],
+ [
+ -106.593734,
+ 35.055069,
+ 0
+ ],
+ [
+ -106.593709,
+ 35.05503,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5196.8,
+ 204.8
+ ],
+ [
+ 5196.8,
+ 307.2
+ ],
+ [
+ 5299.2,
+ 307.2
+ ],
+ [
+ 5299.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59369927189098,
+ "center_latitude": 35.0550568206871,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:15.780499+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59222559176617,
+ 35.05390790230869,
+ -106.59215579812918,
+ 35.05396098283384
+ ],
+ "id": "0ab256aac084b32308245aba916ca899",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.5922,
+ 35.053908,
+ 0
+ ],
+ [
+ -106.592156,
+ 35.053923,
+ 0
+ ],
+ [
+ -106.592181,
+ 35.053961,
+ 0
+ ],
+ [
+ -106.592226,
+ 35.053946,
+ 0
+ ],
+ [
+ -106.5922,
+ 35.053908,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 1644.8
+ ],
+ [
+ 1644.8,
+ 1747.2
+ ],
+ [
+ 1747.2,
+ 1747.2
+ ],
+ [
+ 1747.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59219069494767,
+ "center_latitude": 35.05393444257127,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.234536+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59271208044305,
+ 35.05585415510972,
+ -106.59264228680605,
+ 35.055907235634876
+ ],
+ "id": "bca5cd33b15d7de6b78dce2b0692c04d",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592687,
+ 35.055854,
+ 0
+ ],
+ [
+ -106.592642,
+ 35.055869,
+ 0
+ ],
+ [
+ -106.592668,
+ 35.055907,
+ 0
+ ],
+ [
+ -106.592712,
+ 35.055892,
+ 0
+ ],
+ [
+ -106.592687,
+ 35.055854,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6252.8,
+ 3180.8
+ ],
+ [
+ 6252.8,
+ 3283.2
+ ],
+ [
+ 6355.2,
+ 3283.2
+ ],
+ [
+ 6355.2,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59267718362455,
+ "center_latitude": 35.055880695372295,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:19.884854+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.593856097589,
+ 35.055620365227476,
+ -106.5938043233191,
+ 35.055646416702025
+ ],
+ "id": "2c9ca5ff87e7d62888ce36c367864fe1",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593849,
+ 35.05562,
+ 0
+ ],
+ [
+ -106.593804,
+ 35.055635,
+ 0
+ ],
+ [
+ -106.593812,
+ 35.055646,
+ 0
+ ],
+ [
+ -106.593856,
+ 35.055632,
+ 0
+ ],
+ [
+ -106.593849,
+ 35.05562,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6588.4,
+ 684.8
+ ],
+ [
+ 6588.4,
+ 787.2
+ ],
+ [
+ 6618.6,
+ 787.2
+ ],
+ [
+ 6618.6,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59383021045406,
+ "center_latitude": 35.05563339096475,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.299767+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59241629711606,
+ 35.05503031768622,
+ -106.59234650347908,
+ 35.05508339821137
+ ],
+ "id": "9261f14c03df610444d40fc8840f3d94",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592391,
+ 35.05503,
+ 0
+ ],
+ [
+ -106.592347,
+ 35.055045,
+ 0
+ ],
+ [
+ -106.592372,
+ 35.055083,
+ 0
+ ],
+ [
+ -106.592416,
+ 35.055069,
+ 0
+ ],
+ [
+ -106.592391,
+ 35.05503,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4236.8,
+ 2700.8
+ ],
+ [
+ 4236.8,
+ 2803.2
+ ],
+ [
+ 4339.2,
+ 2803.2
+ ],
+ [
+ 4339.2,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59238140029757,
+ "center_latitude": 35.05505685794879,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.071618+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59340701103615,
+ 35.054919706347576,
+ -106.59333721739917,
+ 35.05497278687273
+ ],
+ "id": "bc797f2c342a604db9243518ec594f3f",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593381,
+ 35.05492,
+ 0
+ ],
+ [
+ -106.593337,
+ 35.054934,
+ 0
+ ],
+ [
+ -106.593363,
+ 35.054973,
+ 0
+ ],
+ [
+ -106.593407,
+ 35.054958,
+ 0
+ ],
+ [
+ -106.593381,
+ 35.05492,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4716.8,
+ 684.8
+ ],
+ [
+ 4716.8,
+ 787.2
+ ],
+ [
+ 4819.2,
+ 787.2
+ ],
+ [
+ 4819.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59337211421766,
+ "center_latitude": 35.05494624661015,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.358669+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59248828670887,
+ 35.05316145742362,
+ -106.59241849307189,
+ 35.05321453794878
+ ],
+ "id": "bfeb854fcd4a0553ae2622a8c19183da",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592463,
+ 35.053161,
+ 0
+ ],
+ [
+ -106.592418,
+ 35.053176,
+ 0
+ ],
+ [
+ -106.592444,
+ 35.053215,
+ 0
+ ],
+ [
+ -106.592488,
+ 35.0532,
+ 0
+ ],
+ [
+ -106.592463,
+ 35.053161,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 204.8
+ ],
+ [
+ 204.8,
+ 307.2
+ ],
+ [
+ 307.2,
+ 307.2
+ ],
+ [
+ 307.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59245338989038,
+ "center_latitude": 35.0531879976862,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.260070+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59253609346229,
+ 35.05521001220553,
+ -106.59246629982529,
+ 35.05526309273069
+ ],
+ "id": "4b6fd141a636eded5273acf1ddab8dc2",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592511,
+ 35.05521,
+ 0
+ ],
+ [
+ -106.592466,
+ 35.055225,
+ 0
+ ],
+ [
+ -106.592492,
+ 35.055263,
+ 0
+ ],
+ [
+ -106.592536,
+ 35.055248,
+ 0
+ ],
+ [
+ -106.592511,
+ 35.05521,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4716.8,
+ 2700.8
+ ],
+ [
+ 4716.8,
+ 2803.2
+ ],
+ [
+ 4819.2,
+ 2803.2
+ ],
+ [
+ 4819.2,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59250119664378,
+ "center_latitude": 35.05523655246811,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.129363+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5932057531745,
+ 35.05464657067821,
+ -106.59315512695292,
+ 35.05467090008028
+ ],
+ "id": "51bafc93e83d97e8f27d1b31bbe4e817",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593199,
+ 35.054647,
+ 0
+ ],
+ [
+ -106.593155,
+ 35.054661,
+ 0
+ ],
+ [
+ -106.593162,
+ 35.054671,
+ 0
+ ],
+ [
+ -106.593206,
+ 35.054656,
+ 0
+ ],
+ [
+ -106.593199,
+ 35.054647,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3987.2,
+ 684.8
+ ],
+ [
+ 3987.2,
+ 787.2
+ ],
+ [
+ 4012.8,
+ 787.2
+ ],
+ [
+ 4012.8,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59318044006372,
+ "center_latitude": 35.05465873537924,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.761554+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59162432961942,
+ 35.05425127999741,
+ -106.59157370339784,
+ 35.054275609399475
+ ],
+ "id": "0cde751a33ade9b15c53e3032ed7c184",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591618,
+ 35.054251,
+ 0
+ ],
+ [
+ -106.591574,
+ 35.054266,
+ 0
+ ],
+ [
+ -106.59158,
+ 35.054276,
+ 0
+ ],
+ [
+ -106.591624,
+ 35.054261,
+ 0
+ ],
+ [
+ -106.591618,
+ 35.054251,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 3180.8
+ ],
+ [
+ 1971.2,
+ 3283.2
+ ],
+ [
+ 1996.8,
+ 3283.2
+ ],
+ [
+ 1996.8,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59159901650864,
+ "center_latitude": 35.05426344469844,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:19.769718+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59228788586618,
+ 35.05403009458182,
+ -106.5922372596446,
+ 35.05405442398389
+ ],
+ "id": "9dcf3db5e44b1136c42e9e70c1977085",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592281,
+ 35.05403,
+ 0
+ ],
+ [
+ -106.592237,
+ 35.054045,
+ 0
+ ],
+ [
+ -106.592244,
+ 35.054054,
+ 0
+ ],
+ [
+ -106.592288,
+ 35.05404,
+ 0
+ ],
+ [
+ -106.592281,
+ 35.05403,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 1644.8
+ ],
+ [
+ 1971.2,
+ 1747.2
+ ],
+ [
+ 1996.8,
+ 1747.2
+ ],
+ [
+ 1996.8,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5922625727554,
+ "center_latitude": 35.05404225928286,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.258854+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59236934738162,
+ 35.05412353573187,
+ -106.59229955374464,
+ 35.054176616257024
+ ],
+ "id": "267a5cfc889a3c0c11a9116cff71c7db",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592344,
+ 35.054124,
+ 0
+ ],
+ [
+ -106.5923,
+ 35.054138,
+ 0
+ ],
+ [
+ -106.592325,
+ 35.054177,
+ 0
+ ],
+ [
+ -106.592369,
+ 35.054162,
+ 0
+ ],
+ [
+ -106.592344,
+ 35.054124,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 1644.8
+ ],
+ [
+ 2220.8,
+ 1747.2
+ ],
+ [
+ 2323.2,
+ 1747.2
+ ],
+ [
+ 2323.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59233445056313,
+ "center_latitude": 35.05415007599445,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.056512+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59299839184739,
+ 35.054715691120585,
+ -106.59294776562581,
+ 35.05474002052265
+ ],
+ "id": "aa4d4d3d59112995cbb8f1b82ee57e0e",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592992,
+ 35.054716,
+ 0
+ ],
+ [
+ -106.592948,
+ 35.05473,
+ 0
+ ],
+ [
+ -106.592954,
+ 35.05474,
+ 0
+ ],
+ [
+ -106.592998,
+ 35.054725,
+ 0
+ ],
+ [
+ -106.592992,
+ 35.054716,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3987.2,
+ 1164.8
+ ],
+ [
+ 3987.2,
+ 1267.2
+ ],
+ [
+ 4012.8,
+ 1267.2
+ ],
+ [
+ 4012.8,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5929730787366,
+ "center_latitude": 35.054727855821625,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.995238+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59125371316662,
+ 35.054012235207146,
+ -106.59119333718992,
+ 35.05406217651222
+ ],
+ "id": "c00738a114901f7c53ddbc34b5358676",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591228,
+ 35.054012,
+ 0
+ ],
+ [
+ -106.591193,
+ 35.054024,
+ 0
+ ],
+ [
+ -106.591219,
+ 35.054062,
+ 0
+ ],
+ [
+ -106.591254,
+ 35.054051,
+ 0
+ ],
+ [
+ -106.591228,
+ 35.054012,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 3617.2
+ ],
+ [
+ 1164.8,
+ 3697.8
+ ],
+ [
+ 1267.2,
+ 3697.8
+ ],
+ [
+ 1267.2,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59122352517826,
+ "center_latitude": 35.05403720585968,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.618978+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59311208472813,
+ 35.05523764175163,
+ -106.59304229109115,
+ 35.055290722276794
+ ],
+ "id": "78d8c22281d1ed03d0ee308acdc47326",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593087,
+ 35.055238,
+ 0
+ ],
+ [
+ -106.593042,
+ 35.055252,
+ 0
+ ],
+ [
+ -106.593068,
+ 35.055291,
+ 0
+ ],
+ [
+ -106.593112,
+ 35.055276,
+ 0
+ ],
+ [
+ -106.593087,
+ 35.055238,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5196.8,
+ 1644.8
+ ],
+ [
+ 5196.8,
+ 1747.2
+ ],
+ [
+ 5299.2,
+ 1747.2
+ ],
+ [
+ 5299.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59307718790964,
+ "center_latitude": 35.05526418201421,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.780746+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59299228838192,
+ 35.055057947232314,
+ -106.59292249474494,
+ 35.05511102775748
+ ],
+ "id": "0e00aa35062c30e7f64381f7cc69e2fd",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592967,
+ 35.055058,
+ 0
+ ],
+ [
+ -106.592922,
+ 35.055073,
+ 0
+ ],
+ [
+ -106.592948,
+ 35.055111,
+ 0
+ ],
+ [
+ -106.592992,
+ 35.055096,
+ 0
+ ],
+ [
+ -106.592967,
+ 35.055058,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4716.8,
+ 1644.8
+ ],
+ [
+ 4716.8,
+ 1747.2
+ ],
+ [
+ 4819.2,
+ 1747.2
+ ],
+ [
+ 4819.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59295739156343,
+ "center_latitude": 35.055084487494895,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.705046+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5939162591557,
+ 35.05533216721697,
+ -106.59386563293413,
+ 35.05535649661904
+ ],
+ "id": "a2dde473fb8dd2bc05fe04cfb6848c0f",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.59391,
+ 35.055332,
+ 0
+ ],
+ [
+ -106.593866,
+ 35.055347,
+ 0
+ ],
+ [
+ -106.593872,
+ 35.055356,
+ 0
+ ],
+ [
+ -106.593916,
+ 35.055342,
+ 0
+ ],
+ [
+ -106.59391,
+ 35.055332,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6003.2,
+ 204.8
+ ],
+ [
+ 6003.2,
+ 307.2
+ ],
+ [
+ 6028.8,
+ 307.2
+ ],
+ [
+ 6028.8,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59389094604492,
+ "center_latitude": 35.05534433191801,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:15.852829+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59113391682041,
+ 35.05383254068783,
+ -106.59107354084371,
+ 35.0538824819929
+ ],
+ "id": "21a13056944ba9304e40eb70f7dcaeb9",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591108,
+ 35.053833,
+ 0
+ ],
+ [
+ -106.591074,
+ 35.053844,
+ 0
+ ],
+ [
+ -106.591099,
+ 35.053882,
+ 0
+ ],
+ [
+ -106.591134,
+ 35.053871,
+ 0
+ ],
+ [
+ -106.591108,
+ 35.053833,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 3617.2
+ ],
+ [
+ 684.8,
+ 3697.8
+ ],
+ [
+ 787.2,
+ 3697.8
+ ],
+ [
+ 787.2,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59110372883205,
+ "center_latitude": 35.05385751134036,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.569844+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59252355443647,
+ 35.05591699711191,
+ -106.59246317845977,
+ 35.05596693841697
+ ],
+ "id": "45c475469c75aa067e271422735625bc",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592498,
+ 35.055917,
+ 0
+ ],
+ [
+ -106.592463,
+ 35.055929,
+ 0
+ ],
+ [
+ -106.592489,
+ 35.055967,
+ 0
+ ],
+ [
+ -106.592524,
+ 35.055955,
+ 0
+ ],
+ [
+ -106.592498,
+ 35.055917,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6252.8,
+ 3617.2
+ ],
+ [
+ 6252.8,
+ 3697.8
+ ],
+ [
+ 6355.2,
+ 3697.8
+ ],
+ [
+ 6355.2,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59249336644811,
+ "center_latitude": 35.05594196776444,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.666430+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59194538382728,
+ 35.05470411018609,
+ -106.5918755901903,
+ 35.05475719071125
+ ],
+ "id": "4b6195857b89f13e79a3f54454b479f4",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.59192,
+ 35.054704,
+ 0
+ ],
+ [
+ -106.591876,
+ 35.054719,
+ 0
+ ],
+ [
+ -106.591901,
+ 35.054757,
+ 0
+ ],
+ [
+ -106.591945,
+ 35.054742,
+ 0
+ ],
+ [
+ -106.59192,
+ 35.054704,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3180.8,
+ 3180.8
+ ],
+ [
+ 3180.8,
+ 3283.2
+ ],
+ [
+ 3283.2,
+ 3283.2
+ ],
+ [
+ 3283.2,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59191048700879,
+ "center_latitude": 35.05473065044867,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.605889+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5917371654812,
+ 35.0536314578009,
+ -106.59166737184424,
+ 35.05368453832606
+ ],
+ "id": "f1705ff1feaa54253b89a8b634c94dce",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591712,
+ 35.053631,
+ 0
+ ],
+ [
+ -106.591667,
+ 35.053646,
+ 0
+ ],
+ [
+ -106.591693,
+ 35.053685,
+ 0
+ ],
+ [
+ -106.591737,
+ 35.05367,
+ 0
+ ],
+ [
+ -106.591712,
+ 35.053631,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 2220.8
+ ],
+ [
+ 684.8,
+ 2323.2
+ ],
+ [
+ 787.2,
+ 2323.2
+ ],
+ [
+ 787.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59170226866271,
+ "center_latitude": 35.05365799806348,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.484786+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5918449933713,
+ 35.05359551517086,
+ -106.59180837754666,
+ 35.05363753642524
+ ],
+ "id": "bf27f103a3e771728f5a53118928429c",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591819,
+ 35.053596,
+ 0
+ ],
+ [
+ -106.591808,
+ 35.053599,
+ 0
+ ],
+ [
+ -106.591834,
+ 35.053638,
+ 0
+ ],
+ [
+ -106.591845,
+ 35.053634,
+ 0
+ ],
+ [
+ -106.591819,
+ 35.053596,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 1971.2
+ ],
+ [
+ 684.8,
+ 1996.8
+ ],
+ [
+ 787.2,
+ 1996.8
+ ],
+ [
+ 787.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59182668545898,
+ "center_latitude": 35.05361652579806,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.500855+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59328721468994,
+ 35.05474001182826,
+ -106.59321742105296,
+ 35.054793092353414
+ ],
+ "id": "50fd38b53e990fe406adbd10fb996283",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593262,
+ 35.05474,
+ 0
+ ],
+ [
+ -106.593217,
+ 35.054755,
+ 0
+ ],
+ [
+ -106.593243,
+ 35.054793,
+ 0
+ ],
+ [
+ -106.593287,
+ 35.054778,
+ 0
+ ],
+ [
+ -106.593262,
+ 35.05474,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4236.8,
+ 684.8
+ ],
+ [
+ 4236.8,
+ 787.2
+ ],
+ [
+ 4339.2,
+ 787.2
+ ],
+ [
+ 4339.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59325231787145,
+ "center_latitude": 35.05476655209083,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.297061+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5916370614745,
+ 35.05458725766896,
+ -106.5915766854978,
+ 35.05463719897403
+ ],
+ "id": "ff5bb74169e288a590cb499943e0afac",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591612,
+ 35.054587,
+ 0
+ ],
+ [
+ -106.591577,
+ 35.054599,
+ 0
+ ],
+ [
+ -106.591602,
+ 35.054637,
+ 0
+ ],
+ [
+ -106.591637,
+ 35.054626,
+ 0
+ ],
+ [
+ -106.591612,
+ 35.054587,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 3617.2
+ ],
+ [
+ 2700.8,
+ 3697.8
+ ],
+ [
+ 2803.2,
+ 3697.8
+ ],
+ [
+ 2803.2,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59160687348614,
+ "center_latitude": 35.054612228321496,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.041763+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5922725415006,
+ 35.054814684263036,
+ -106.59220274786362,
+ 35.05486776478819
+ ],
+ "id": "1328882efb99f795dcee15aaf1729060",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592247,
+ 35.054815,
+ 0
+ ],
+ [
+ -106.592203,
+ 35.054829,
+ 0
+ ],
+ [
+ -106.592228,
+ 35.054868,
+ 0
+ ],
+ [
+ -106.592273,
+ 35.054853,
+ 0
+ ],
+ [
+ -106.592247,
+ 35.054815,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3660.8,
+ 2700.8
+ ],
+ [
+ 3660.8,
+ 2803.2
+ ],
+ [
+ 3763.2,
+ 2803.2
+ ],
+ [
+ 3763.2,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59223764468211,
+ "center_latitude": 35.05484122452561,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.577645+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59290386638206,
+ 35.05416498936644,
+ -106.59283407274508,
+ 35.054218069891604
+ ],
+ "id": "680bb48afddcbe51128526b7cb9c3a46",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592878,
+ 35.054165,
+ 0
+ ],
+ [
+ -106.592834,
+ 35.05418,
+ 0
+ ],
+ [
+ -106.59286,
+ 35.054218,
+ 0
+ ],
+ [
+ -106.592904,
+ 35.054203,
+ 0
+ ],
+ [
+ -106.592878,
+ 35.054165,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 684.8
+ ],
+ [
+ 2700.8,
+ 787.2
+ ],
+ [
+ 2803.2,
+ 787.2
+ ],
+ [
+ 2803.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59286896956357,
+ "center_latitude": 35.05419152962902,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.626179+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5915620355194,
+ 35.05412908772427,
+ -106.59149224188242,
+ 35.05418216824943
+ ],
+ "id": "e85d55d07f8891e871f586c366b41ec8",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591536,
+ 35.054129,
+ 0
+ ],
+ [
+ -106.591492,
+ 35.054144,
+ 0
+ ],
+ [
+ -106.591518,
+ 35.054182,
+ 0
+ ],
+ [
+ -106.591562,
+ 35.054167,
+ 0
+ ],
+ [
+ -106.591536,
+ 35.054129,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 3180.8
+ ],
+ [
+ 1644.8,
+ 3283.2
+ ],
+ [
+ 1747.2,
+ 3283.2
+ ],
+ [
+ 1747.2,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59152713870091,
+ "center_latitude": 35.05415562798685,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:19.734747+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59210579541995,
+ 35.05372820778937,
+ -106.59203600178297,
+ 35.05378128831453
+ ],
+ "id": "cf1cfe12d0e30c4ff7270fce5fd30fac",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.59208,
+ 35.053728,
+ 0
+ ],
+ [
+ -106.592036,
+ 35.053743,
+ 0
+ ],
+ [
+ -106.592062,
+ 35.053781,
+ 0
+ ],
+ [
+ -106.592106,
+ 35.053767,
+ 0
+ ],
+ [
+ -106.59208,
+ 35.053728,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 1644.8
+ ],
+ [
+ 1164.8,
+ 1747.2
+ ],
+ [
+ 1267.2,
+ 1747.2
+ ],
+ [
+ 1267.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59207089860146,
+ "center_latitude": 35.05375474805195,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.165414+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5926403144204,
+ 35.05376966142394,
+ -106.59257052078341,
+ 35.053822741949105
+ ],
+ "id": "fa7265cba5c34d22626c743d6ba300bc",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592615,
+ 35.05377,
+ 0
+ ],
+ [
+ -106.592571,
+ 35.053784,
+ 0
+ ],
+ [
+ -106.592596,
+ 35.053823,
+ 0
+ ],
+ [
+ -106.59264,
+ 35.053808,
+ 0
+ ],
+ [
+ -106.592615,
+ 35.05377,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 684.8
+ ],
+ [
+ 1644.8,
+ 787.2
+ ],
+ [
+ 1747.2,
+ 787.2
+ ],
+ [
+ 1747.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5926054176019,
+ "center_latitude": 35.053796201686524,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.736973+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5926558898085,
+ 35.055389706724846,
+ -106.5925860961715,
+ 35.05544278725001
+ ],
+ "id": "01c86284a1bcd1b20f90e81d4871ee99",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.59263,
+ 35.05539,
+ 0
+ ],
+ [
+ -106.592586,
+ 35.055404,
+ 0
+ ],
+ [
+ -106.592612,
+ 35.055443,
+ 0
+ ],
+ [
+ -106.592656,
+ 35.055428,
+ 0
+ ],
+ [
+ -106.59263,
+ 35.05539,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5196.8,
+ 2700.8
+ ],
+ [
+ 5196.8,
+ 2803.2
+ ],
+ [
+ 5299.2,
+ 2803.2
+ ],
+ [
+ 5299.2,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59262099298999,
+ "center_latitude": 35.05541624698743,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.188186+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59212747427351,
+ 35.055005996978544,
+ -106.59207684805193,
+ 35.05503032638062
+ ],
+ "id": "c98beeb019529d374f2d964f8558f5f0",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592121,
+ 35.055006,
+ 0
+ ],
+ [
+ -106.592077,
+ 35.055021,
+ 0
+ ],
+ [
+ -106.592083,
+ 35.05503,
+ 0
+ ],
+ [
+ -106.592127,
+ 35.055016,
+ 0
+ ],
+ [
+ -106.592121,
+ 35.055006,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3987.2,
+ 3180.8
+ ],
+ [
+ 3987.2,
+ 3283.2
+ ],
+ [
+ 4012.8,
+ 3283.2
+ ],
+ [
+ 4012.8,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59210216116273,
+ "center_latitude": 35.05501816167958,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.713026+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59343924240146,
+ 35.05534821582858,
+ -106.59336944876448,
+ 35.055401296353736
+ ],
+ "id": "3d61de0fdca16d8a8f414d0137a4b706",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593414,
+ 35.055348,
+ 0
+ ],
+ [
+ -106.593369,
+ 35.055363,
+ 0
+ ],
+ [
+ -106.593395,
+ 35.055401,
+ 0
+ ],
+ [
+ -106.593439,
+ 35.055387,
+ 0
+ ],
+ [
+ -106.593414,
+ 35.055348,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5676.8,
+ 1164.8
+ ],
+ [
+ 5676.8,
+ 1267.2
+ ],
+ [
+ 5779.2,
+ 1267.2
+ ],
+ [
+ 5779.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59340434558298,
+ "center_latitude": 35.055374756091155,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.130296+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59202040978238,
+ 35.05516228013077,
+ -106.59196003380568,
+ 35.055212221435845
+ ],
+ "id": "142ee9f96a6d1ebb1a3915a71087ad1b",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591995,
+ 35.055162,
+ 0
+ ],
+ [
+ -106.59196,
+ 35.055174,
+ 0
+ ],
+ [
+ -106.591986,
+ 35.055212,
+ 0
+ ],
+ [
+ -106.59202,
+ 35.055201,
+ 0
+ ],
+ [
+ -106.591995,
+ 35.055162,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4236.8,
+ 3617.2
+ ],
+ [
+ 4236.8,
+ 3697.8
+ ],
+ [
+ 4339.2,
+ 3697.8
+ ],
+ [
+ 4339.2,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59199022179402,
+ "center_latitude": 35.055187250783305,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.425642+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59233483560062,
+ 35.05493687653617,
+ -106.59228420937905,
+ 35.05496120593824
+ ],
+ "id": "29c6ae903d6d0a661dd9b86757dacdfe",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592328,
+ 35.054937,
+ 0
+ ],
+ [
+ -106.592284,
+ 35.054952,
+ 0
+ ],
+ [
+ -106.592291,
+ 35.054961,
+ 0
+ ],
+ [
+ -106.592335,
+ 35.054946,
+ 0
+ ],
+ [
+ -106.592328,
+ 35.054937,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3987.2,
+ 2700.8
+ ],
+ [
+ 3987.2,
+ 2803.2
+ ],
+ [
+ 4012.8,
+ 2803.2
+ ],
+ [
+ 4012.8,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59230952248984,
+ "center_latitude": 35.0549490412372,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.613213+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59370889782859,
+ 35.05540128765934,
+ -106.59365827160701,
+ 35.05542561706141
+ ],
+ "id": "35515bdab83efa23ea7fe641bfc66ed3",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593703,
+ 35.055401,
+ 0
+ ],
+ [
+ -106.593658,
+ 35.055416,
+ 0
+ ],
+ [
+ -106.593665,
+ 35.055426,
+ 0
+ ],
+ [
+ -106.593709,
+ 35.055411,
+ 0
+ ],
+ [
+ -106.593703,
+ 35.055401,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6003.2,
+ 684.8
+ ],
+ [
+ 6003.2,
+ 787.2
+ ],
+ [
+ 6028.8,
+ 787.2
+ ],
+ [
+ 6028.8,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59368358471781,
+ "center_latitude": 35.055413452360376,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.519484+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59307985336282,
+ 35.05480913227063,
+ -106.59301005972584,
+ 35.05486221279579
+ ],
+ "id": "dff58c89227ff7ce0cfe5d68abf025b4",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593054,
+ 35.054809,
+ 0
+ ],
+ [
+ -106.59301,
+ 35.054824,
+ 0
+ ],
+ [
+ -106.593036,
+ 35.054862,
+ 0
+ ],
+ [
+ -106.59308,
+ 35.054847,
+ 0
+ ],
+ [
+ -106.593054,
+ 35.054809,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4236.8,
+ 1164.8
+ ],
+ [
+ 4236.8,
+ 1267.2
+ ],
+ [
+ 4339.2,
+ 1267.2
+ ],
+ [
+ 4339.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59304495654433,
+ "center_latitude": 35.05483567253321,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:16.962713+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59291944177015,
+ 35.055785034667345,
+ -106.59284964813317,
+ 35.05583811519251
+ ],
+ "id": "2a36ae96f0e9ca2c5ead5776b7fbed0a",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592894,
+ 35.055785,
+ 0
+ ],
+ [
+ -106.59285,
+ 35.0558,
+ 0
+ ],
+ [
+ -106.592875,
+ 35.055838,
+ 0
+ ],
+ [
+ -106.592919,
+ 35.055823,
+ 0
+ ],
+ [
+ -106.592894,
+ 35.055785,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6252.8,
+ 2700.8
+ ],
+ [
+ 6252.8,
+ 2803.2
+ ],
+ [
+ 6355.2,
+ 2803.2
+ ],
+ [
+ 6355.2,
+ 2700.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59288454495166,
+ "center_latitude": 35.055811574929926,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.579687+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59144223917319,
+ 35.05394939320496,
+ -106.59137244553621,
+ 35.054002473730115
+ ],
+ "id": "b9565e0006a012202ad5dda096b8ee8b",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591417,
+ 35.053949,
+ 0
+ ],
+ [
+ -106.591372,
+ 35.053964,
+ 0
+ ],
+ [
+ -106.591398,
+ 35.054002,
+ 0
+ ],
+ [
+ -106.591442,
+ 35.053988,
+ 0
+ ],
+ [
+ -106.591417,
+ 35.053949,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 3180.8
+ ],
+ [
+ 1164.8,
+ 3283.2
+ ],
+ [
+ 1267.2,
+ 3283.2
+ ],
+ [
+ 1267.2,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5914073423547,
+ "center_latitude": 35.053975933467534,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:19.683081+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59237979882101,
+ 35.055701363688726,
+ -106.59231942284433,
+ 35.05575130499379
+ ],
+ "id": "22e1a1aecc816fb69612ca653c805e7f",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592354,
+ 35.055701,
+ 0
+ ],
+ [
+ -106.592319,
+ 35.055713,
+ 0
+ ],
+ [
+ -106.592345,
+ 35.055751,
+ 0
+ ],
+ [
+ -106.59238,
+ 35.05574,
+ 0
+ ],
+ [
+ -106.592354,
+ 35.055701,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 5676.8,
+ 3617.2
+ ],
+ [
+ 5676.8,
+ 3697.8
+ ],
+ [
+ 5779.2,
+ 3697.8
+ ],
+ [
+ 5779.2,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59234961083266,
+ "center_latitude": 35.05572633434126,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.574744+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59287249203571,
+ 35.054878252712996,
+ -106.59280269839873,
+ 35.05493133323816
+ ],
+ "id": "08c67473cd79d5dc8ea25a01fd6c1253",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592847,
+ 35.054878,
+ 0
+ ],
+ [
+ -106.592803,
+ 35.054893,
+ 0
+ ],
+ [
+ -106.592828,
+ 35.054931,
+ 0
+ ],
+ [
+ -106.592872,
+ 35.054917,
+ 0
+ ],
+ [
+ -106.592847,
+ 35.054878,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4236.8,
+ 1644.8
+ ],
+ [
+ 4236.8,
+ 1747.2
+ ],
+ [
+ 4339.2,
+ 1747.2
+ ],
+ [
+ 4339.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59283759521722,
+ "center_latitude": 35.05490479297558,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.631875+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59182558748107,
+ 35.05452441566677,
+ -106.59175579384409,
+ 35.05457749619193
+ ],
+ "id": "1e9cc320a91cd5d9292f9703ac32d212",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.5918,
+ 35.054524,
+ 0
+ ],
+ [
+ -106.591756,
+ 35.054539,
+ 0
+ ],
+ [
+ -106.591781,
+ 35.054577,
+ 0
+ ],
+ [
+ -106.591826,
+ 35.054563,
+ 0
+ ],
+ [
+ -106.5918,
+ 35.054524,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 3180.8
+ ],
+ [
+ 2700.8,
+ 3283.2
+ ],
+ [
+ 2803.2,
+ 3283.2
+ ],
+ [
+ 2803.2,
+ 3180.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59179069066258,
+ "center_latitude": 35.05455095592935,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.548706+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59361437236325,
+ 35.0548505859052,
+ -106.59354457872628,
+ 35.05490366643036
+ ],
+ "id": "048c3dc8a2e1f0dcf1c71a08636da88a",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593589,
+ 35.054851,
+ 0
+ ],
+ [
+ -106.593545,
+ 35.054865,
+ 0
+ ],
+ [
+ -106.59357,
+ 35.054904,
+ 0
+ ],
+ [
+ -106.593614,
+ 35.054889,
+ 0
+ ],
+ [
+ -106.593589,
+ 35.054851,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 4716.8,
+ 204.8
+ ],
+ [
+ 4716.8,
+ 307.2
+ ],
+ [
+ 4819.2,
+ 307.2
+ ],
+ [
+ 4819.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59357947554477,
+ "center_latitude": 35.05487712616778,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:15.727932+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59344137493478,
+ 35.05575860611222,
+ -106.59338960066488,
+ 35.05578465758676
+ ],
+ "id": "47bec03f45d95cb7b851ec5f862aeb09",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593434,
+ 35.055759,
+ 0
+ ],
+ [
+ -106.59339,
+ 35.055773,
+ 0
+ ],
+ [
+ -106.593397,
+ 35.055785,
+ 0
+ ],
+ [
+ -106.593441,
+ 35.05577,
+ 0
+ ],
+ [
+ -106.593434,
+ 35.055759,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6588.4,
+ 1644.8
+ ],
+ [
+ 6588.4,
+ 1747.2
+ ],
+ [
+ 6618.6,
+ 1747.2
+ ],
+ [
+ 6618.6,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59341548779983,
+ "center_latitude": 35.05577163184949,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.547844+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59247990282773,
+ 35.05474556382066,
+ -106.59241010919074,
+ 35.05479864434582
+ ],
+ "id": "a3a5100fa445f109aa8daeca6a2e7b57",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592454,
+ 35.054746,
+ 0
+ ],
+ [
+ -106.59241,
+ 35.05476,
+ 0
+ ],
+ [
+ -106.592436,
+ 35.054799,
+ 0
+ ],
+ [
+ -106.59248,
+ 35.054784,
+ 0
+ ],
+ [
+ -106.592454,
+ 35.054746,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3660.8,
+ 2220.8
+ ],
+ [
+ 3660.8,
+ 2323.2
+ ],
+ [
+ 3763.2,
+ 2323.2
+ ],
+ [
+ 3763.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59244500600923,
+ "center_latitude": 35.05477210408324,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:15.910725+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59258773071781,
+ 35.05470962119063,
+ -106.59255111489317,
+ 35.05475164244501
+ ],
+ "id": "b9dfd4f839a24a6d754c2460ad656edb",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.592562,
+ 35.05471,
+ 0
+ ],
+ [
+ -106.592551,
+ 35.054713,
+ 0
+ ],
+ [
+ -106.592577,
+ 35.054752,
+ 0
+ ],
+ [
+ -106.592588,
+ 35.054748,
+ 0
+ ],
+ [
+ -106.592562,
+ 35.05471,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3660.8,
+ 1971.2
+ ],
+ [
+ 3660.8,
+ 1996.8
+ ],
+ [
+ 3763.2,
+ 1996.8
+ ],
+ [
+ 3763.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.5925694228055,
+ "center_latitude": 35.05473063181782,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:20.535316+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.59193894826696,
+ 35.05506883898073,
+ -106.59189773970564,
+ 35.055090029162706
+ ],
+ "id": "f99632918969fda4339ef1391a8dbf52",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.591933,
+ 35.055069,
+ 0
+ ],
+ [
+ -106.591898,
+ 35.05508,
+ 0
+ ],
+ [
+ -106.591904,
+ 35.05509,
+ 0
+ ],
+ [
+ -106.591939,
+ 35.055078,
+ 0
+ ],
+ [
+ -106.591933,
+ 35.055069,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3987.2,
+ 3617.2
+ ],
+ [
+ 3987.2,
+ 3697.8
+ ],
+ [
+ 4012.8,
+ 3697.8
+ ],
+ [
+ 4012.8,
+ 3617.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59191834398631,
+ "center_latitude": 35.05507943407172,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:18.163900+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ -106.5936487362619,
+ 35.055689485669845,
+ -106.59359696199199,
+ 35.055715537144394
+ ],
+ "id": "11e08bee96ff0ac4af63bc24ca57de9e",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -106.593641,
+ 35.055689,
+ 0
+ ],
+ [
+ -106.593597,
+ 35.055704,
+ 0
+ ],
+ [
+ -106.593604,
+ 35.055716,
+ 0
+ ],
+ [
+ -106.593649,
+ 35.055701,
+ 0
+ ],
+ [
+ -106.593641,
+ 35.055689,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 6588.4,
+ 1164.8
+ ],
+ [
+ 6588.4,
+ 1267.2
+ ],
+ [
+ 6618.6,
+ 1267.2
+ ],
+ [
+ 6618.6,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": -106.59362284912696,
+ "center_latitude": 35.05570251140712,
+ "inferenceMetadata": {
+ "jobId": "ae32b3dba079ff7af1c38d478398a619",
+ "filePath": "s3://test-images-825536440648/sicd_example_1_PFA_RE32F_IM32F_HH.nitf",
+ "receiveTime": "2023-09-07T23:50:14.614460",
+ "inferenceTime": "2023-09-07T23:50:17.773677+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "SICD: 20160921f01p0009faradx0613_284_21114HH",
+ "sourceDt": "2021-11-30T20:59:38",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ }
+ ]
+}
diff --git a/src/data/centerpoint.sicd-umbra-chip.ntf.geojson b/src/data/centerpoint.sicd-umbra-chip.ntf.geojson
new file mode 100644
index 0000000..94b6af2
--- /dev/null
+++ b/src/data/centerpoint.sicd-umbra-chip.ntf.geojson
@@ -0,0 +1,99 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "bbox": [
+ 100.74940201674278,
+ 13.690332898456186,
+ 100.75018131659057,
+ 13.690778212654925
+ ],
+ "id": "dad74d77fc55513a1b409335fa82299e",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 100.749931,
+ 13.690778,
+ 0
+ ],
+ [
+ 100.749402,
+ 13.690723,
+ 0
+ ],
+ [
+ 100.749653,
+ 13.690333,
+ 0
+ ],
+ [
+ 100.750181,
+ 13.690389,
+ 0
+ ],
+ [
+ 100.749931,
+ 13.690778,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 204.8
+ ],
+ [
+ 204.8,
+ 307.2
+ ],
+ [
+ 307.2,
+ 307.2
+ ],
+ [
+ 307.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 100.74979166666668,
+ "center_latitude": 13.690555555555555,
+ "inferenceMetadata": {
+ "jobId": "b7aa3a0a2d007cd600a1e274ddd023f5",
+ "filePath": "s3://test-images-825536440648/umbra-sicd121-chip1.ntf",
+ "receiveTime": "2023-09-07T23:39:41.316052",
+ "inferenceTime": "2023-09-07T23:39:42.074760+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ },
+ "source": [
+ {
+ "fileType": "NITF",
+ "info": {
+ "imageCategory": "SAR",
+ "metadata": {
+ "sourceId": "",
+ "sourceDt": "2002-12-16T15:16:29",
+ "classification": "UNCLASSIFIED"
+ }
+ }
+ }
+ ]
+ }
+ }
+ ]
+}
diff --git a/src/data/centerpoint.small.tif.geojson b/src/data/centerpoint.small.tif.geojson
index b7b67cb..db2d4e8 100644
--- a/src/data/centerpoint.small.tif.geojson
+++ b/src/data/centerpoint.small.tif.geojson
@@ -4,39 +4,282 @@
{
"type": "Feature",
"bbox": [
- 5.4014160086272085,
- 50.03656595014293,
- 5.40177016044482,
- 50.03692010196055
+ 5.410092728158685,
+ 50.039886123433035,
+ 5.410303005800392,
+ 50.040240275250646
+ ],
+ "id": "856c5a00f2b27f6b3519bbc3d00bd74f",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.410093,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.410093,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.410303,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.410303,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.410093,
+ 50.04024,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3193.6,
+ 204.8
+ ],
+ [
+ 3193.6,
+ 307.2
+ ],
+ [
+ 3254.4,
+ 307.2
+ ],
+ [
+ 3254.4,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.410197866979538,
+ "center_latitude": 50.04006319934184,
+ "inferenceMetadata": {
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.061562+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.405068199246325,
+ 50.03722998480095,
+ 5.405422351063936,
+ 50.03758413661856
+ ],
+ "id": "99c41c48e7978f376577a776d7df73eb",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.405068,
+ 50.037584,
+ 0
+ ],
+ [
+ 5.405068,
+ 50.03723,
+ 0
+ ],
+ [
+ 5.405422,
+ 50.03723,
+ 0
+ ],
+ [
+ 5.405422,
+ 50.037584,
+ 0
+ ],
+ [
+ 5.405068,
+ 50.037584,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1740.8,
+ 972.8
+ ],
+ [
+ 1740.8,
+ 1075.2
+ ],
+ [
+ 1843.2,
+ 1075.2
+ ],
+ [
+ 1843.2,
+ 972.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.4052452751551305,
+ "center_latitude": 50.037407060709754,
+ "inferenceMetadata": {
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.396686+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.410092728158685,
+ 50.03241573353029,
+ 5.410303005800392,
+ 50.0326038766834
+ ],
+ "id": "193d6c834fb64849acf789bf371155f7",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.410093,
+ 50.032604,
+ 0
+ ],
+ [
+ 5.410093,
+ 50.032416,
+ 0
+ ],
+ [
+ 5.410303,
+ 50.032416,
+ 0
+ ],
+ [
+ 5.410303,
+ 50.032604,
+ 0
+ ],
+ [
+ 5.410093,
+ 50.032604,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3193.6,
+ 2412.8
+ ],
+ [
+ 3193.6,
+ 2467.2
+ ],
+ [
+ 3254.4,
+ 2467.2
+ ],
+ [
+ 3254.4,
+ 2412.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.410197866979538,
+ "center_latitude": 50.03250980510685,
+ "inferenceMetadata": {
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.216361+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.40772433787841,
+ 50.03457384616886,
+ 5.40807848969602,
+ 50.03492799798648
],
- "id": "8d14dc968dfdcb9e517acc90fd1bcda5",
+ "id": "1c8c56e346542c455eb24a09b0159cc4",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.401416,
- 50.03692,
+ 5.407724,
+ 50.034928,
0
],
[
- 5.401416,
- 50.036566,
+ 5.407724,
+ 50.034574,
0
],
[
- 5.40177,
- 50.036566,
+ 5.408078,
+ 50.034574,
0
],
[
- 5.40177,
- 50.03692,
+ 5.408078,
+ 50.034928,
0
],
[
- 5.401416,
- 50.03692,
+ 5.407724,
+ 50.034928,
0
]
]
@@ -47,20 +290,344 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 684.8,
- 1164.8
+ 2508.8,
+ 1740.8
+ ],
+ [
+ 2508.8,
+ 1843.2
+ ],
+ [
+ 2611.2,
+ 1843.2
+ ],
+ [
+ 2611.2,
+ 1740.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.407901413787215,
+ "center_latitude": 50.03475092207767,
+ "inferenceMetadata": {
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.860349+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.399755921982155,
+ 50.03241573353029,
+ 5.400110073799767,
+ 50.0326038766834
+ ],
+ "id": "47fbbce2b71824e785da91fc34982d57",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.399756,
+ 50.032604,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.032416,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.032416,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.032604,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.032604,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 2412.8
+ ],
+ [
+ 204.8,
+ 2467.2
+ ],
+ [
+ 307.2,
+ 2467.2
+ ],
+ [
+ 307.2,
+ 2412.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.399932997890962,
+ "center_latitude": 50.03250980510685,
+ "inferenceMetadata": {
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.108503+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.409052407194452,
+ 50.039886123433035,
+ 5.409406559012063,
+ 50.040240275250646
+ ],
+ "id": "79c946fa06ef3f6da86ed929879c5b45",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.409052,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.409052,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.409407,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.409407,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.409052,
+ 50.04024,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2892.8,
+ 204.8
+ ],
+ [
+ 2892.8,
+ 307.2
+ ],
+ [
+ 2995.2,
+ 307.2
+ ],
+ [
+ 2995.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.409229483103259,
+ "center_latitude": 50.04006319934184,
+ "inferenceMetadata": {
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.097427+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4037401299302825,
+ 50.038558054117,
+ 5.404094281747894,
+ 50.0389122059346
+ ],
+ "id": "3ac7d1ad6a94aefd0d61176e941dd157",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.40374,
+ 50.038912,
+ 0
+ ],
+ [
+ 5.40374,
+ 50.038558,
+ 0
+ ],
+ [
+ 5.404094,
+ 50.038558,
+ 0
+ ],
+ [
+ 5.404094,
+ 50.038912,
+ 0
+ ],
+ [
+ 5.40374,
+ 50.038912,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1356.8,
+ 588.8
+ ],
+ [
+ 1356.8,
+ 691.2
+ ],
+ [
+ 1459.2,
+ 691.2
+ ],
+ [
+ 1459.2,
+ 588.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.403917205839088,
+ "center_latitude": 50.0387351300258,
+ "inferenceMetadata": {
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.155187+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.40772433787841,
+ 50.039886123433035,
+ 5.40807848969602,
+ 50.040240275250646
+ ],
+ "id": "0fb016f7514c33b4bdc9336867dd76f5",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.407724,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.407724,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.408078,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.408078,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.407724,
+ 50.04024,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2508.8,
+ 204.8
],
[
- 684.8,
- 1267.2
+ 2508.8,
+ 307.2
],
[
- 787.2,
- 1267.2
+ 2611.2,
+ 307.2
],
[
- 787.2,
- 1164.8
+ 2611.2,
+ 204.8
]
],
"ontology": [
@@ -71,13 +638,13 @@
],
"coordinates": []
},
- "center_longitude": 5.401593084536014,
- "center_latitude": 50.03674302605173,
+ "center_longitude": 5.407901413787215,
+ "center_latitude": 50.04006319934184,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.552804+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.069331+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -85,39 +652,39 @@
{
"type": "Feature",
"bbox": [
- 5.4030760952722625,
- 50.03291375952381,
- 5.403430247089872,
- 50.033267911341426
+ 5.410092728158685,
+ 50.03722998480095,
+ 5.410303005800392,
+ 50.03758413661856
],
- "id": "e4917322ca069a1fc518feef4d93424d",
+ "id": "f32c2386a1410a729e26d9271906f8d9",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.403076,
- 50.033268,
+ 5.410093,
+ 50.037584,
0
],
[
- 5.403076,
- 50.032914,
+ 5.410093,
+ 50.03723,
0
],
[
- 5.40343,
- 50.032914,
+ 5.410303,
+ 50.03723,
0
],
[
- 5.40343,
- 50.033268,
+ 5.410303,
+ 50.037584,
0
],
[
- 5.403076,
- 50.033268,
+ 5.410093,
+ 50.037584,
0
]
]
@@ -128,20 +695,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1164.8,
- 2220.8
+ 3193.6,
+ 972.8
],
[
- 1164.8,
- 2323.2
+ 3193.6,
+ 1075.2
],
[
- 1267.2,
- 2323.2
+ 3254.4,
+ 1075.2
],
[
- 1267.2,
- 2220.8
+ 3254.4,
+ 972.8
]
],
"ontology": [
@@ -152,13 +719,13 @@
],
"coordinates": []
},
- "center_longitude": 5.403253171181067,
- "center_latitude": 50.03309083543262,
+ "center_longitude": 5.410197866979538,
+ "center_latitude": 50.037407060709754,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:40.064628+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.491870+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -166,39 +733,39 @@
{
"type": "Feature",
"bbox": [
- 5.4030760952722625,
- 50.03404261844245,
- 5.403430247089872,
- 50.03413115639685
+ 5.40772433787841,
+ 50.035901915484914,
+ 5.40807848969602,
+ 50.03625606730252
],
- "id": "1491d4cdbb5c322912f166e3b154503e",
+ "id": "dd879ffa282ed09fab241efcbb086d9e",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.403076,
- 50.034131,
+ 5.407724,
+ 50.036256,
0
],
[
- 5.403076,
- 50.034043,
+ 5.407724,
+ 50.035902,
0
],
[
- 5.40343,
- 50.034043,
+ 5.408078,
+ 50.035902,
0
],
[
- 5.40343,
- 50.034131,
+ 5.408078,
+ 50.036256,
0
],
[
- 5.403076,
- 50.034131,
+ 5.407724,
+ 50.036256,
0
]
]
@@ -209,20 +776,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1164.8,
- 1971.2
+ 2508.8,
+ 1356.8
],
[
- 1164.8,
- 1996.8
+ 2508.8,
+ 1459.2
],
[
- 1267.2,
- 1996.8
+ 2611.2,
+ 1459.2
],
[
- 1267.2,
- 1971.2
+ 2611.2,
+ 1356.8
]
],
"ontology": [
@@ -233,13 +800,13 @@
],
"coordinates": []
},
- "center_longitude": 5.403253171181067,
- "center_latitude": 50.03408688741965,
+ "center_longitude": 5.407901413787215,
+ "center_latitude": 50.036078991393715,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.723430+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.659390+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -247,39 +814,39 @@
{
"type": "Feature",
"bbox": [
- 5.409893517761279,
- 50.034905863497876,
- 5.410170198868787,
- 50.03526001531549
+ 5.4037401299302825,
+ 50.039886123433035,
+ 5.404094281747894,
+ 50.040240275250646
],
- "id": "a581a9e6c9f4447663eef6bacd24adab",
+ "id": "8128cea7001454316fa1c46841cab2d0",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.409894,
- 50.03526,
+ 5.40374,
+ 50.04024,
0
],
[
- 5.409894,
- 50.034906,
+ 5.40374,
+ 50.039886,
0
],
[
- 5.41017,
- 50.034906,
+ 5.404094,
+ 50.039886,
0
],
[
- 5.41017,
- 50.03526,
+ 5.404094,
+ 50.04024,
0
],
[
- 5.409894,
- 50.03526,
+ 5.40374,
+ 50.04024,
0
]
]
@@ -290,20 +857,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 3136,
- 1644.8
+ 1356.8,
+ 204.8
],
[
- 3136,
- 1747.2
+ 1356.8,
+ 307.2
],
[
- 3216,
- 1747.2
+ 1459.2,
+ 307.2
],
[
- 3216,
- 1644.8
+ 1459.2,
+ 204.8
]
],
"ontology": [
@@ -314,13 +881,13 @@
],
"coordinates": []
},
- "center_longitude": 5.410031858315033,
- "center_latitude": 50.03508293940668,
+ "center_longitude": 5.403917205839088,
+ "center_latitude": 50.04006319934184,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.986528+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:53.956957+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -328,39 +895,39 @@
{
"type": "Feature",
"bbox": [
- 5.404736181917315,
- 50.039886123433035,
- 5.405090333734925,
- 50.040240275250646
+ 5.402412060614241,
+ 50.03324577685282,
+ 5.402766212431851,
+ 50.033599928670434
],
- "id": "53ee8d0c655fc5cecb8ac1f3148c99c1",
+ "id": "7aecf22a9f0145c359442c4cfa580a44",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.404736,
- 50.04024,
+ 5.402412,
+ 50.0336,
0
],
[
- 5.404736,
- 50.039886,
+ 5.402412,
+ 50.033246,
0
],
[
- 5.40509,
- 50.039886,
+ 5.402766,
+ 50.033246,
0
],
[
- 5.40509,
- 50.04024,
+ 5.402766,
+ 50.0336,
0
],
[
- 5.404736,
- 50.04024,
+ 5.402412,
+ 50.0336,
0
]
]
@@ -371,20 +938,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1644.8,
- 204.8
+ 972.8,
+ 2124.8
],
[
- 1644.8,
- 307.2
+ 972.8,
+ 2227.2
],
[
- 1747.2,
- 307.2
+ 1075.2,
+ 2227.2
],
[
- 1747.2,
- 204.8
+ 1075.2,
+ 2124.8
]
],
"ontology": [
@@ -395,13 +962,13 @@
],
"coordinates": []
},
- "center_longitude": 5.40491325782612,
- "center_latitude": 50.04006319934184,
+ "center_longitude": 5.402589136523046,
+ "center_latitude": 50.033422852761625,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.412693+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.967663+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -409,39 +976,39 @@
{
"type": "Feature",
"bbox": [
- 5.4030760952722625,
- 50.034905863497876,
- 5.403430247089872,
- 50.03526001531549
+ 5.405068199246325,
+ 50.035901915484914,
+ 5.405422351063936,
+ 50.03625606730252
],
- "id": "0f35275466413f3a4494f608cbded6a3",
+ "id": "406fda0c855902d6ffc0b81a8a45ca7b",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.403076,
- 50.03526,
+ 5.405068,
+ 50.036256,
0
],
[
- 5.403076,
- 50.034906,
+ 5.405068,
+ 50.035902,
0
],
[
- 5.40343,
- 50.034906,
+ 5.405422,
+ 50.035902,
0
],
[
- 5.40343,
- 50.03526,
+ 5.405422,
+ 50.036256,
0
],
[
- 5.403076,
- 50.03526,
+ 5.405068,
+ 50.036256,
0
]
]
@@ -452,20 +1019,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1164.8,
- 1644.8
+ 1740.8,
+ 1356.8
],
[
- 1164.8,
- 1747.2
+ 1740.8,
+ 1459.2
],
[
- 1267.2,
- 1747.2
+ 1843.2,
+ 1459.2
],
[
- 1267.2,
- 1644.8
+ 1843.2,
+ 1356.8
]
],
"ontology": [
@@ -476,13 +1043,13 @@
],
"coordinates": []
},
- "center_longitude": 5.403253171181067,
- "center_latitude": 50.03508293940668,
+ "center_longitude": 5.4052452751551305,
+ "center_latitude": 50.036078991393715,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.676629+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.615812+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -490,39 +1057,39 @@
{
"type": "Feature",
"bbox": [
- 5.409893517761279,
- 50.039886123433035,
- 5.410170198868787,
- 50.040240275250646
+ 5.406396268562367,
+ 50.03241573353029,
+ 5.4067504203799786,
+ 50.0326038766834
],
- "id": "f09b8182b240c9c87680283826644f8a",
+ "id": "434a072ffc8b07add127d070e0527628",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.409894,
- 50.04024,
+ 5.406396,
+ 50.032604,
0
],
[
- 5.409894,
- 50.039886,
+ 5.406396,
+ 50.032416,
0
],
[
- 5.41017,
- 50.039886,
+ 5.40675,
+ 50.032416,
0
],
[
- 5.41017,
- 50.04024,
+ 5.40675,
+ 50.032604,
0
],
[
- 5.409894,
- 50.04024,
+ 5.406396,
+ 50.032604,
0
]
]
@@ -533,20 +1100,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 3136,
- 204.8
+ 2124.8,
+ 2412.8
],
[
- 3136,
- 307.2
+ 2124.8,
+ 2467.2
],
[
- 3216,
- 307.2
+ 2227.2,
+ 2467.2
],
[
- 3216,
- 204.8
+ 2227.2,
+ 2412.8
]
],
"ontology": [
@@ -557,13 +1124,13 @@
],
"coordinates": []
},
- "center_longitude": 5.410031858315033,
- "center_latitude": 50.04006319934184,
+ "center_longitude": 5.406573344471173,
+ "center_latitude": 50.03250980510685,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.690029+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.180131+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -571,39 +1138,39 @@
{
"type": "Feature",
"bbox": [
- 5.406728285891377,
- 50.03822603678798,
- 5.407082437708989,
- 50.03858018860559
+ 5.402412060614241,
+ 50.03722998480095,
+ 5.402766212431851,
+ 50.03758413661856
],
- "id": "a350e311db3cbafe062814e48ee154f4",
+ "id": "8f7ab2db39c3f9af3b74f7fc675c1bea",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.406728,
- 50.03858,
+ 5.402412,
+ 50.037584,
0
],
[
- 5.406728,
- 50.038226,
+ 5.402412,
+ 50.03723,
0
],
[
- 5.407082,
- 50.038226,
+ 5.402766,
+ 50.03723,
0
],
[
- 5.407082,
- 50.03858,
+ 5.402766,
+ 50.037584,
0
],
[
- 5.406728,
- 50.03858,
+ 5.402412,
+ 50.037584,
0
]
]
@@ -614,20 +1181,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2220.8,
- 684.8
+ 972.8,
+ 972.8
],
[
- 2220.8,
- 787.2
+ 972.8,
+ 1075.2
],
[
- 2323.2,
- 787.2
+ 1075.2,
+ 1075.2
],
[
- 2323.2,
- 684.8
+ 1075.2,
+ 972.8
]
],
"ontology": [
@@ -638,13 +1205,13 @@
],
"coordinates": []
},
- "center_longitude": 5.406905361800184,
- "center_latitude": 50.038403112696784,
+ "center_longitude": 5.402589136523046,
+ "center_latitude": 50.037407060709754,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.747327+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.344346+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -652,39 +1219,39 @@
{
"type": "Feature",
"bbox": [
- 5.40586504083595,
- 50.03822603678798,
- 5.405953578790353,
- 50.03858018860559
+ 5.40772433787841,
+ 50.038558054117,
+ 5.40807848969602,
+ 50.0389122059346
],
- "id": "678080f3654fae062182d9b764df237d",
+ "id": "9b72b9a06e3d64e68254948071492584",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.405865,
- 50.03858,
+ 5.407724,
+ 50.038912,
0
],
[
- 5.405865,
- 50.038226,
+ 5.407724,
+ 50.038558,
0
],
[
- 5.405954,
- 50.038226,
+ 5.408078,
+ 50.038558,
0
],
[
- 5.405954,
- 50.03858,
+ 5.408078,
+ 50.038912,
0
],
[
- 5.405865,
- 50.03858,
+ 5.407724,
+ 50.038912,
0
]
]
@@ -695,20 +1262,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1971.2,
- 684.8
+ 2508.8,
+ 588.8
],
[
- 1971.2,
- 787.2
+ 2508.8,
+ 691.2
],
[
- 1996.8,
- 787.2
+ 2611.2,
+ 691.2
],
[
- 1996.8,
- 684.8
+ 2611.2,
+ 588.8
]
],
"ontology": [
@@ -719,13 +1286,13 @@
],
"coordinates": []
},
- "center_longitude": 5.405909309813151,
- "center_latitude": 50.038403112696784,
+ "center_longitude": 5.407901413787215,
+ "center_latitude": 50.0387351300258,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.496015+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.225172+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -733,39 +1300,39 @@
{
"type": "Feature",
"bbox": [
- 5.404736181917315,
- 50.03291375952381,
- 5.405090333734925,
- 50.033267911341426
+ 5.410092728158685,
+ 50.03324577685282,
+ 5.410303005800392,
+ 50.033599928670434
],
- "id": "89057484953242879830b6409d2e3504",
+ "id": "d051994bc33fe1f52ea177c51b3d4efc",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.404736,
- 50.033268,
+ 5.410093,
+ 50.0336,
0
],
[
- 5.404736,
- 50.032914,
+ 5.410093,
+ 50.033246,
0
],
[
- 5.40509,
- 50.032914,
+ 5.410303,
+ 50.033246,
0
],
[
- 5.40509,
- 50.033268,
+ 5.410303,
+ 50.0336,
0
],
[
- 5.404736,
- 50.033268,
+ 5.410093,
+ 50.0336,
0
]
]
@@ -776,20 +1343,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1644.8,
- 2220.8
+ 3193.6,
+ 2124.8
],
[
- 1644.8,
- 2323.2
+ 3193.6,
+ 2227.2
],
[
- 1747.2,
- 2323.2
+ 3254.4,
+ 2227.2
],
[
- 1747.2,
- 2220.8
+ 3254.4,
+ 2124.8
]
],
"ontology": [
@@ -800,13 +1367,13 @@
],
"coordinates": []
},
- "center_longitude": 5.40491325782612,
- "center_latitude": 50.03309083543262,
+ "center_longitude": 5.410197866979538,
+ "center_latitude": 50.033422852761625,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:40.068275+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.095395+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -814,39 +1381,39 @@
{
"type": "Feature",
"bbox": [
- 5.404736181917315,
- 50.03404261844245,
- 5.405090333734925,
- 50.03413115639685
+ 5.4037401299302825,
+ 50.03324577685282,
+ 5.404094281747894,
+ 50.033599928670434
],
- "id": "5d616f3440dbab0bc4989106507bdadd",
+ "id": "991a77bbaf81ecfed262b6e78d1dddb5",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.404736,
- 50.034131,
+ 5.40374,
+ 50.0336,
0
],
[
- 5.404736,
- 50.034043,
+ 5.40374,
+ 50.033246,
0
],
[
- 5.40509,
- 50.034043,
+ 5.404094,
+ 50.033246,
0
],
[
- 5.40509,
- 50.034131,
+ 5.404094,
+ 50.0336,
0
],
[
- 5.404736,
- 50.034131,
+ 5.40374,
+ 50.0336,
0
]
]
@@ -857,20 +1424,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1644.8,
- 1971.2
+ 1356.8,
+ 2124.8
],
[
- 1644.8,
- 1996.8
+ 1356.8,
+ 2227.2
],
[
- 1747.2,
- 1996.8
+ 1459.2,
+ 2227.2
],
[
- 1747.2,
- 1971.2
+ 1459.2,
+ 2124.8
]
],
"ontology": [
@@ -881,13 +1448,13 @@
],
"coordinates": []
},
- "center_longitude": 5.40491325782612,
- "center_latitude": 50.03408688741965,
+ "center_longitude": 5.403917205839088,
+ "center_latitude": 50.033422852761625,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.730246+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.988564+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -895,39 +1462,39 @@
{
"type": "Feature",
"bbox": [
- 5.4014160086272085,
- 50.03822603678798,
- 5.40177016044482,
- 50.03858018860559
+ 5.406396268562367,
+ 50.035901915484914,
+ 5.4067504203799786,
+ 50.03625606730252
],
- "id": "30a06eb7eefe6383d31cdd62c2aed154",
+ "id": "4533c421a75bcbd6f115187c18a59e42",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.401416,
- 50.03858,
+ 5.406396,
+ 50.036256,
0
],
[
- 5.401416,
- 50.038226,
+ 5.406396,
+ 50.035902,
0
],
[
- 5.40177,
- 50.038226,
+ 5.40675,
+ 50.035902,
0
],
[
- 5.40177,
- 50.03858,
+ 5.40675,
+ 50.036256,
0
],
[
- 5.401416,
- 50.03858,
+ 5.406396,
+ 50.036256,
0
]
]
@@ -938,20 +1505,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 684.8,
- 684.8
+ 2124.8,
+ 1356.8
],
[
- 684.8,
- 787.2
+ 2124.8,
+ 1459.2
],
[
- 787.2,
- 787.2
+ 2227.2,
+ 1459.2
],
[
- 787.2,
- 684.8
+ 2227.2,
+ 1356.8
]
],
"ontology": [
@@ -962,13 +1529,13 @@
],
"coordinates": []
},
- "center_longitude": 5.401593084536014,
- "center_latitude": 50.038403112696784,
+ "center_longitude": 5.406573344471173,
+ "center_latitude": 50.036078991393715,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.483250+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.637017+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -976,38 +1543,38 @@
{
"type": "Feature",
"bbox": [
- 5.4014160086272085,
+ 5.405068199246325,
50.039886123433035,
- 5.40177016044482,
+ 5.405422351063936,
50.040240275250646
],
- "id": "d5095a1cfdea5b77cd92b5ef9ee0983a",
+ "id": "989a0899aeeb79722e70261fb0705559",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.401416,
+ 5.405068,
50.04024,
0
],
[
- 5.401416,
+ 5.405068,
50.039886,
0
],
[
- 5.40177,
+ 5.405422,
50.039886,
0
],
[
- 5.40177,
+ 5.405422,
50.04024,
0
],
[
- 5.401416,
+ 5.405068,
50.04024,
0
]
@@ -1019,19 +1586,19 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 684.8,
+ 1740.8,
204.8
],
[
- 684.8,
+ 1740.8,
307.2
],
[
- 787.2,
+ 1843.2,
307.2
],
[
- 787.2,
+ 1843.2,
204.8
]
],
@@ -1043,13 +1610,13 @@
],
"coordinates": []
},
- "center_longitude": 5.401593084536014,
+ "center_longitude": 5.4052452751551305,
"center_latitude": 50.04006319934184,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.386678+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:53.973688+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -1057,39 +1624,39 @@
{
"type": "Feature",
"bbox": [
- 5.40586504083595,
- 50.039886123433035,
- 5.405953578790353,
- 50.040240275250646
+ 5.409052407194452,
+ 50.03241573353029,
+ 5.409406559012063,
+ 50.0326038766834
],
- "id": "86c21c5c925c6bd7c588452d268f8727",
+ "id": "3cdce2f3a22377f0c2b2c4ea26c70d5e",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.405865,
- 50.04024,
+ 5.409052,
+ 50.032604,
0
],
[
- 5.405865,
- 50.039886,
+ 5.409052,
+ 50.032416,
0
],
[
- 5.405954,
- 50.039886,
+ 5.409407,
+ 50.032416,
0
],
[
- 5.405954,
- 50.04024,
+ 5.409407,
+ 50.032604,
0
],
[
- 5.405865,
- 50.04024,
+ 5.409052,
+ 50.032604,
0
]
]
@@ -1100,20 +1667,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1971.2,
- 204.8
+ 2892.8,
+ 2412.8
],
[
- 1971.2,
- 307.2
+ 2892.8,
+ 2467.2
],
[
- 1996.8,
- 307.2
+ 2995.2,
+ 2467.2
],
[
- 1996.8,
- 204.8
+ 2995.2,
+ 2412.8
]
],
"ontology": [
@@ -1124,13 +1691,13 @@
],
"coordinates": []
},
- "center_longitude": 5.405909309813151,
- "center_latitude": 50.04006319934184,
+ "center_longitude": 5.409229483103259,
+ "center_latitude": 50.03250980510685,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.424876+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.205058+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -1138,39 +1705,39 @@
{
"type": "Feature",
"bbox": [
- 5.406728285891377,
- 50.039886123433035,
- 5.407082437708989,
- 50.040240275250646
+ 5.401083991298198,
+ 50.03722998480095,
+ 5.40143814311581,
+ 50.03758413661856
],
- "id": "cb3848f243bde35bd35fb0ce5d9e1644",
+ "id": "8ead2fb9d4334d462ff60f7eb1da1c6d",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.406728,
- 50.04024,
+ 5.401084,
+ 50.037584,
0
],
[
- 5.406728,
- 50.039886,
+ 5.401084,
+ 50.03723,
0
],
[
- 5.407082,
- 50.039886,
+ 5.401438,
+ 50.03723,
0
],
[
- 5.407082,
- 50.04024,
+ 5.401438,
+ 50.037584,
0
],
[
- 5.406728,
- 50.04024,
+ 5.401084,
+ 50.037584,
0
]
]
@@ -1181,20 +1748,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2220.8,
- 204.8
+ 588.8,
+ 972.8
],
[
- 2220.8,
- 307.2
+ 588.8,
+ 1075.2
],
[
- 2323.2,
- 307.2
+ 691.2,
+ 1075.2
],
[
- 2323.2,
- 204.8
+ 691.2,
+ 972.8
]
],
"ontology": [
@@ -1205,13 +1772,13 @@
],
"coordinates": []
},
- "center_longitude": 5.406905361800184,
- "center_latitude": 50.04006319934184,
+ "center_longitude": 5.401261067207003,
+ "center_latitude": 50.037407060709754,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.659945+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.322568+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -1219,39 +1786,39 @@
{
"type": "Feature",
"bbox": [
- 5.399755921982155,
- 50.03404261844245,
- 5.400110073799767,
- 50.03413115639685
+ 5.4037401299302825,
+ 50.03722998480095,
+ 5.404094281747894,
+ 50.03758413661856
],
- "id": "71dcba6aa16f1bbcb735bd8e4e58d3e0",
+ "id": "626403feb1047a7ce4da7b5351b5d648",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.399756,
- 50.034131,
+ 5.40374,
+ 50.037584,
0
],
[
- 5.399756,
- 50.034043,
+ 5.40374,
+ 50.03723,
0
],
[
- 5.40011,
- 50.034043,
+ 5.404094,
+ 50.03723,
0
],
[
- 5.40011,
- 50.034131,
+ 5.404094,
+ 50.037584,
0
],
[
- 5.399756,
- 50.034131,
+ 5.40374,
+ 50.037584,
0
]
]
@@ -1262,20 +1829,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 204.8,
- 1971.2
+ 1356.8,
+ 972.8
],
[
- 204.8,
- 1996.8
+ 1356.8,
+ 1075.2
],
[
- 307.2,
- 1996.8
+ 1459.2,
+ 1075.2
],
[
- 307.2,
- 1971.2
+ 1459.2,
+ 972.8
]
],
"ontology": [
@@ -1286,13 +1853,13 @@
],
"coordinates": []
},
- "center_longitude": 5.399932997890962,
- "center_latitude": 50.03408688741965,
+ "center_longitude": 5.403917205839088,
+ "center_latitude": 50.037407060709754,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.706015+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.370682+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -1301,38 +1868,38 @@
"type": "Feature",
"bbox": [
5.399755921982155,
- 50.03291375952381,
+ 50.03722998480095,
5.400110073799767,
- 50.033267911341426
+ 50.03758413661856
],
- "id": "cba4ff50b2f8f2fec401ca3cb641d690",
+ "id": "40132eb84faba5ad19767fe1ef69c001",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
5.399756,
- 50.033268,
+ 50.037584,
0
],
[
5.399756,
- 50.032914,
+ 50.03723,
0
],
[
5.40011,
- 50.032914,
+ 50.03723,
0
],
[
5.40011,
- 50.033268,
+ 50.037584,
0
],
[
5.399756,
- 50.033268,
+ 50.037584,
0
]
]
@@ -1344,19 +1911,19 @@
"pixelCoordinates": [
[
204.8,
- 2220.8
+ 972.8
],
[
204.8,
- 2323.2
+ 1075.2
],
[
307.2,
- 2323.2
+ 1075.2
],
[
307.2,
- 2220.8
+ 972.8
]
],
"ontology": [
@@ -1368,12 +1935,12 @@
"coordinates": []
},
"center_longitude": 5.399932997890962,
- "center_latitude": 50.03309083543262,
+ "center_latitude": 50.037407060709754,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:40.011919+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.296899+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -1381,39 +1948,39 @@
{
"type": "Feature",
"bbox": [
- 5.409893517761279,
- 50.03404261844245,
- 5.410170198868787,
- 50.03413115639685
+ 5.410092728158685,
+ 50.035901915484914,
+ 5.410303005800392,
+ 50.03625606730252
],
- "id": "ed515ff8a7aebe578790bfe5a923614e",
+ "id": "14c87f1ef88919bb1da7daaa6a01b4af",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.409894,
- 50.034131,
+ 5.410093,
+ 50.036256,
0
],
[
- 5.409894,
- 50.034043,
+ 5.410093,
+ 50.035902,
0
],
[
- 5.41017,
- 50.034043,
+ 5.410303,
+ 50.035902,
0
],
[
- 5.41017,
- 50.034131,
+ 5.410303,
+ 50.036256,
0
],
[
- 5.409894,
- 50.034131,
+ 5.410093,
+ 50.036256,
0
]
]
@@ -1424,20 +1991,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 3136,
- 1971.2
+ 3193.6,
+ 1356.8
],
[
- 3136,
- 1996.8
+ 3193.6,
+ 1459.2
],
[
- 3216,
- 1996.8
+ 3254.4,
+ 1459.2
],
[
- 3216,
- 1971.2
+ 3254.4,
+ 1356.8
]
],
"ontology": [
@@ -1448,13 +2015,13 @@
],
"coordinates": []
},
- "center_longitude": 5.410031858315033,
- "center_latitude": 50.03408688741965,
+ "center_longitude": 5.410197866979538,
+ "center_latitude": 50.036078991393715,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:40.006641+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.698928+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -1462,39 +2029,39 @@
{
"type": "Feature",
"bbox": [
- 5.409893517761279,
- 50.03291375952381,
- 5.410170198868787,
- 50.033267911341426
+ 5.40772433787841,
+ 50.03722998480095,
+ 5.40807848969602,
+ 50.03758413661856
],
- "id": "68488e2fded99a0dfa74f209e0ecaf6d",
+ "id": "e976cd899fd343adcfb75a3853f69cca",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.409894,
- 50.033268,
+ 5.407724,
+ 50.037584,
0
],
[
- 5.409894,
- 50.032914,
+ 5.407724,
+ 50.03723,
0
],
[
- 5.41017,
- 50.032914,
+ 5.408078,
+ 50.03723,
0
],
[
- 5.41017,
- 50.033268,
+ 5.408078,
+ 50.037584,
0
],
[
- 5.409894,
- 50.033268,
+ 5.407724,
+ 50.037584,
0
]
]
@@ -1505,20 +2072,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 3136,
- 2220.8
+ 2508.8,
+ 972.8
],
[
- 3136,
- 2323.2
+ 2508.8,
+ 1075.2
],
[
- 3216,
- 2323.2
+ 2611.2,
+ 1075.2
],
[
- 3216,
- 2220.8
+ 2611.2,
+ 972.8
]
],
"ontology": [
@@ -1529,13 +2096,13 @@
],
"coordinates": []
},
- "center_longitude": 5.410031858315033,
- "center_latitude": 50.03309083543262,
+ "center_longitude": 5.407901413787215,
+ "center_latitude": 50.037407060709754,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.896666+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.449252+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -1543,39 +2110,39 @@
{
"type": "Feature",
"bbox": [
- 5.4014160086272085,
- 50.03215011966709,
- 5.40177016044482,
- 50.03220545588859
+ 5.406396268562367,
+ 50.038558054117,
+ 5.4067504203799786,
+ 50.0389122059346
],
- "id": "2e7e606ae3cb96c71397cbded2e96ac4",
+ "id": "65dd55b13e031dfd29dcbf7f95365260",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.401416,
- 50.032205,
+ 5.406396,
+ 50.038912,
0
],
[
- 5.401416,
- 50.03215,
+ 5.406396,
+ 50.038558,
0
],
[
- 5.40177,
- 50.03215,
+ 5.40675,
+ 50.038558,
0
],
[
- 5.40177,
- 50.032205,
+ 5.40675,
+ 50.038912,
0
],
[
- 5.401416,
- 50.032205,
+ 5.406396,
+ 50.038912,
0
]
]
@@ -1586,20 +2153,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 684.8,
- 2528
+ 2124.8,
+ 588.8
],
[
- 684.8,
- 2544
+ 2124.8,
+ 691.2
],
[
- 787.2,
- 2544
+ 2227.2,
+ 691.2
],
[
- 787.2,
- 2528
+ 2227.2,
+ 588.8
]
],
"ontology": [
@@ -1610,13 +2177,13 @@
],
"coordinates": []
},
- "center_longitude": 5.401593084536014,
- "center_latitude": 50.03217778777784,
+ "center_longitude": 5.406573344471173,
+ "center_latitude": 50.0387351300258,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:40.100033+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.199816+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -1624,39 +2191,39 @@
{
"type": "Feature",
"bbox": [
- 5.408388372536431,
- 50.03215011966709,
- 5.408742524354042,
- 50.03220545588859
+ 5.406396268562367,
+ 50.03457384616886,
+ 5.4067504203799786,
+ 50.03492799798648
],
- "id": "53ce1240bde42da40a31e18be4a99827",
+ "id": "db2a94b77474f735ce54e83f6bc70882",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.408388,
- 50.032205,
+ 5.406396,
+ 50.034928,
0
],
[
- 5.408388,
- 50.03215,
+ 5.406396,
+ 50.034574,
0
],
[
- 5.408743,
- 50.03215,
+ 5.40675,
+ 50.034574,
0
],
[
- 5.408743,
- 50.032205,
+ 5.40675,
+ 50.034928,
0
],
[
- 5.408388,
- 50.032205,
+ 5.406396,
+ 50.034928,
0
]
]
@@ -1667,20 +2234,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2700.8,
- 2528
+ 2124.8,
+ 1740.8
],
[
- 2700.8,
- 2544
+ 2124.8,
+ 1843.2
],
[
- 2803.2,
- 2544
+ 2227.2,
+ 1843.2
],
[
- 2803.2,
- 2528
+ 2227.2,
+ 1740.8
]
],
"ontology": [
@@ -1691,13 +2258,13 @@
],
"coordinates": []
},
- "center_longitude": 5.408565448445236,
- "center_latitude": 50.03217778777784,
+ "center_longitude": 5.406573344471173,
+ "center_latitude": 50.03475092207767,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.921558+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.837660+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -1705,39 +2272,39 @@
{
"type": "Feature",
"bbox": [
- 5.404736181917315,
- 50.03215011966709,
- 5.405090333734925,
- 50.03220545588859
+ 5.401083991298198,
+ 50.03324577685282,
+ 5.40143814311581,
+ 50.033599928670434
],
- "id": "dca815e02915d21a42769a5fadae3ac9",
+ "id": "7922859e11e2a2c72727cbb295b6cf08",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.404736,
- 50.032205,
+ 5.401084,
+ 50.0336,
0
],
[
- 5.404736,
- 50.03215,
+ 5.401084,
+ 50.033246,
0
],
[
- 5.40509,
- 50.03215,
+ 5.401438,
+ 50.033246,
0
],
[
- 5.40509,
- 50.032205,
+ 5.401438,
+ 50.0336,
0
],
[
- 5.404736,
- 50.032205,
+ 5.401084,
+ 50.0336,
0
]
]
@@ -1748,20 +2315,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1644.8,
- 2528
+ 588.8,
+ 2124.8
],
[
- 1644.8,
- 2544
+ 588.8,
+ 2227.2
],
[
- 1747.2,
- 2544
+ 691.2,
+ 2227.2
],
[
- 1747.2,
- 2528
+ 691.2,
+ 2124.8
]
],
"ontology": [
@@ -1772,13 +2339,13 @@
],
"coordinates": []
},
- "center_longitude": 5.40491325782612,
- "center_latitude": 50.03217778777784,
+ "center_longitude": 5.401261067207003,
+ "center_latitude": 50.033422852761625,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:40.118665+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.944682+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -1786,39 +2353,39 @@
{
"type": "Feature",
"bbox": [
- 5.406728285891377,
- 50.03215011966709,
- 5.407082437708989,
- 50.03220545588859
+ 5.401083991298198,
+ 50.03241573353029,
+ 5.40143814311581,
+ 50.0326038766834
],
- "id": "46c1b683ed6e8567f7693ba7b41bb7d8",
+ "id": "25b2e2ee24f63caf03b41002f3849a26",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.406728,
- 50.032205,
+ 5.401084,
+ 50.032604,
0
],
[
- 5.406728,
- 50.03215,
+ 5.401084,
+ 50.032416,
0
],
[
- 5.407082,
- 50.03215,
+ 5.401438,
+ 50.032416,
0
],
[
- 5.407082,
- 50.032205,
+ 5.401438,
+ 50.032604,
0
],
[
- 5.406728,
- 50.032205,
+ 5.401084,
+ 50.032604,
0
]
]
@@ -1829,20 +2396,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2220.8,
- 2528
+ 588.8,
+ 2412.8
],
[
- 2220.8,
- 2544
+ 588.8,
+ 2467.2
],
[
- 2323.2,
- 2544
+ 691.2,
+ 2467.2
],
[
- 2323.2,
- 2528
+ 691.2,
+ 2412.8
]
],
"ontology": [
@@ -1853,13 +2420,13 @@
],
"coordinates": []
},
- "center_longitude": 5.406905361800184,
- "center_latitude": 50.03217778777784,
+ "center_longitude": 5.401261067207003,
+ "center_latitude": 50.03250980510685,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.891177+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.128184+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -1867,39 +2434,39 @@
{
"type": "Feature",
"bbox": [
- 5.40586504083595,
- 50.03215011966709,
- 5.405953578790353,
- 50.03220545588859
+ 5.402412060614241,
+ 50.039886123433035,
+ 5.402766212431851,
+ 50.040240275250646
],
- "id": "af136ed3b5634d39696630878effcc43",
+ "id": "6a7f51bf3e0c49cb0ffb23fb802415c6",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.405865,
- 50.032205,
+ 5.402412,
+ 50.04024,
0
],
[
- 5.405865,
- 50.03215,
+ 5.402412,
+ 50.039886,
0
],
[
- 5.405954,
- 50.03215,
+ 5.402766,
+ 50.039886,
0
],
[
- 5.405954,
- 50.032205,
+ 5.402766,
+ 50.04024,
0
],
[
- 5.405865,
- 50.032205,
+ 5.402412,
+ 50.04024,
0
]
]
@@ -1910,20 +2477,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1971.2,
- 2528
+ 972.8,
+ 204.8
],
[
- 1971.2,
- 2544
+ 972.8,
+ 307.2
],
[
- 1996.8,
- 2544
+ 1075.2,
+ 307.2
],
[
- 1996.8,
- 2528
+ 1075.2,
+ 204.8
]
],
"ontology": [
@@ -1934,13 +2501,13 @@
],
"coordinates": []
},
- "center_longitude": 5.405909309813151,
- "center_latitude": 50.03217778777784,
+ "center_longitude": 5.402589136523046,
+ "center_latitude": 50.04006319934184,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:40.116335+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:53.956789+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -1948,39 +2515,39 @@
{
"type": "Feature",
"bbox": [
- 5.40586504083595,
- 50.03291375952381,
- 5.405953578790353,
- 50.033267911341426
+ 5.401083991298198,
+ 50.035901915484914,
+ 5.40143814311581,
+ 50.03625606730252
],
- "id": "c220908a4f2ed66553a022879b8e5b61",
+ "id": "71042916a98f1a41a0aa92e42e001460",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.405865,
- 50.033268,
+ 5.401084,
+ 50.036256,
0
],
[
- 5.405865,
- 50.032914,
+ 5.401084,
+ 50.035902,
0
],
[
- 5.405954,
- 50.032914,
+ 5.401438,
+ 50.035902,
0
],
[
- 5.405954,
- 50.033268,
+ 5.401438,
+ 50.036256,
0
],
[
- 5.405865,
- 50.033268,
+ 5.401084,
+ 50.036256,
0
]
]
@@ -1991,20 +2558,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1971.2,
- 2220.8
+ 588.8,
+ 1356.8
],
[
- 1971.2,
- 2323.2
+ 588.8,
+ 1459.2
],
[
- 1996.8,
- 2323.2
+ 691.2,
+ 1459.2
],
[
- 1996.8,
- 2220.8
+ 691.2,
+ 1356.8
]
],
"ontology": [
@@ -2015,13 +2582,13 @@
],
"coordinates": []
},
- "center_longitude": 5.405909309813151,
- "center_latitude": 50.03309083543262,
+ "center_longitude": 5.401261067207003,
+ "center_latitude": 50.036078991393715,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:40.084782+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.550840+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -2029,39 +2596,39 @@
{
"type": "Feature",
"bbox": [
- 5.40586504083595,
- 50.03404261844245,
- 5.405953578790353,
- 50.03413115639685
+ 5.402412060614241,
+ 50.03241573353029,
+ 5.402766212431851,
+ 50.0326038766834
],
- "id": "9c26be5af7eaa8af1c3f4b350c314c98",
+ "id": "030aba046b6ec1b512200b7dabc44e77",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.405865,
- 50.034131,
+ 5.402412,
+ 50.032604,
0
],
[
- 5.405865,
- 50.034043,
+ 5.402412,
+ 50.032416,
0
],
[
- 5.405954,
- 50.034043,
+ 5.402766,
+ 50.032416,
0
],
[
- 5.405954,
- 50.034131,
+ 5.402766,
+ 50.032604,
0
],
[
- 5.405865,
- 50.034131,
+ 5.402412,
+ 50.032604,
0
]
]
@@ -2072,20 +2639,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1971.2,
- 1971.2
+ 972.8,
+ 2412.8
],
[
- 1971.2,
- 1996.8
+ 972.8,
+ 2467.2
],
[
- 1996.8,
- 1996.8
+ 1075.2,
+ 2467.2
],
[
- 1996.8,
- 1971.2
+ 1075.2,
+ 2412.8
]
],
"ontology": [
@@ -2096,13 +2663,13 @@
],
"coordinates": []
},
- "center_longitude": 5.405909309813151,
- "center_latitude": 50.03408688741965,
+ "center_longitude": 5.402589136523046,
+ "center_latitude": 50.03250980510685,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.733404+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.140523+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -2110,39 +2677,39 @@
{
"type": "Feature",
"bbox": [
- 5.406728285891377,
- 50.03404261844245,
- 5.407082437708989,
- 50.03413115639685
+ 5.405068199246325,
+ 50.03457384616886,
+ 5.405422351063936,
+ 50.03492799798648
],
- "id": "a4b632106e034c563bf4513c0d679e0b",
+ "id": "b5fadbaa5f4d870585df6e6b22ee0cf4",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.406728,
- 50.034131,
+ 5.405068,
+ 50.034928,
0
],
[
- 5.406728,
- 50.034043,
+ 5.405068,
+ 50.034574,
0
],
[
- 5.407082,
- 50.034043,
+ 5.405422,
+ 50.034574,
0
],
[
- 5.407082,
- 50.034131,
+ 5.405422,
+ 50.034928,
0
],
[
- 5.406728,
- 50.034131,
+ 5.405068,
+ 50.034928,
0
]
]
@@ -2153,20 +2720,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2220.8,
- 1971.2
+ 1740.8,
+ 1740.8
],
[
- 2220.8,
- 1996.8
+ 1740.8,
+ 1843.2
],
[
- 2323.2,
- 1996.8
+ 1843.2,
+ 1843.2
],
[
- 2323.2,
- 1971.2
+ 1843.2,
+ 1740.8
]
],
"ontology": [
@@ -2177,13 +2744,13 @@
],
"coordinates": []
},
- "center_longitude": 5.406905361800184,
- "center_latitude": 50.03408688741965,
+ "center_longitude": 5.4052452751551305,
+ "center_latitude": 50.03475092207767,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.986642+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.814928+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -2191,39 +2758,39 @@
{
"type": "Feature",
"bbox": [
- 5.406728285891377,
- 50.03291375952381,
- 5.407082437708989,
- 50.033267911341426
+ 5.401083991298198,
+ 50.038558054117,
+ 5.40143814311581,
+ 50.0389122059346
],
- "id": "aa99d6c33b3564da6b6007f771e66e02",
+ "id": "a470e7f57c8c9d1670e77da1c7432d3e",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.406728,
- 50.033268,
+ 5.401084,
+ 50.038912,
0
],
[
- 5.406728,
- 50.032914,
+ 5.401084,
+ 50.038558,
0
],
[
- 5.407082,
- 50.032914,
+ 5.401438,
+ 50.038558,
0
],
[
- 5.407082,
- 50.033268,
+ 5.401438,
+ 50.038912,
0
],
[
- 5.406728,
- 50.033268,
+ 5.401084,
+ 50.038912,
0
]
]
@@ -2234,20 +2801,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2220.8,
- 2220.8
+ 588.8,
+ 588.8
],
[
- 2220.8,
- 2323.2
+ 588.8,
+ 691.2
],
[
- 2323.2,
- 2323.2
+ 691.2,
+ 691.2
],
[
- 2323.2,
- 2220.8
+ 691.2,
+ 588.8
]
],
"ontology": [
@@ -2258,13 +2825,13 @@
],
"coordinates": []
},
- "center_longitude": 5.406905361800184,
- "center_latitude": 50.03309083543262,
+ "center_longitude": 5.401261067207003,
+ "center_latitude": 50.0387351300258,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.851533+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.110193+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -2272,39 +2839,39 @@
{
"type": "Feature",
"bbox": [
- 5.40586504083595,
- 50.03656595014293,
- 5.405953578790353,
- 50.03692010196055
+ 5.410092728158685,
+ 50.038558054117,
+ 5.410303005800392,
+ 50.0389122059346
],
- "id": "6e3636cdcfb76ef5ad5a36587b11e304",
+ "id": "cf2904047c87c8f84287b57732e2299a",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.405865,
- 50.03692,
+ 5.410093,
+ 50.038912,
0
],
[
- 5.405865,
- 50.036566,
+ 5.410093,
+ 50.038558,
0
],
[
- 5.405954,
- 50.036566,
+ 5.410303,
+ 50.038558,
0
],
[
- 5.405954,
- 50.03692,
+ 5.410303,
+ 50.038912,
0
],
[
- 5.405865,
- 50.03692,
+ 5.410093,
+ 50.038912,
0
]
]
@@ -2315,20 +2882,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1971.2,
- 1164.8
+ 3193.6,
+ 588.8
],
[
- 1971.2,
- 1267.2
+ 3193.6,
+ 691.2
],
[
- 1996.8,
- 1267.2
+ 3254.4,
+ 691.2
],
[
- 1996.8,
- 1164.8
+ 3254.4,
+ 588.8
]
],
"ontology": [
@@ -2339,13 +2906,13 @@
],
"coordinates": []
},
- "center_longitude": 5.405909309813151,
- "center_latitude": 50.03674302605173,
+ "center_longitude": 5.410197866979538,
+ "center_latitude": 50.0387351300258,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.599607+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.264993+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -2353,39 +2920,39 @@
{
"type": "Feature",
"bbox": [
- 5.409893517761279,
- 50.03656595014293,
- 5.410170198868787,
- 50.03692010196055
+ 5.401083991298198,
+ 50.039886123433035,
+ 5.40143814311581,
+ 50.040240275250646
],
- "id": "3c356db1b86d7c88d3204f8f64d32964",
+ "id": "2567f0dc46090fba2d3cfc2810262947",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.409894,
- 50.03692,
+ 5.401084,
+ 50.04024,
0
],
[
- 5.409894,
- 50.036566,
+ 5.401084,
+ 50.039886,
0
],
[
- 5.41017,
- 50.036566,
+ 5.401438,
+ 50.039886,
0
],
[
- 5.41017,
- 50.03692,
+ 5.401438,
+ 50.04024,
0
],
[
- 5.409894,
- 50.03692,
+ 5.401084,
+ 50.04024,
0
]
]
@@ -2396,20 +2963,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 3136,
- 1164.8
+ 588.8,
+ 204.8
],
[
- 3136,
- 1267.2
+ 588.8,
+ 307.2
],
[
- 3216,
- 1267.2
+ 691.2,
+ 307.2
],
[
- 3216,
- 1164.8
+ 691.2,
+ 204.8
]
],
"ontology": [
@@ -2420,13 +2987,13 @@
],
"coordinates": []
},
- "center_longitude": 5.410031858315033,
- "center_latitude": 50.03674302605173,
+ "center_longitude": 5.401261067207003,
+ "center_latitude": 50.04006319934184,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.916155+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:53.907773+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -2434,39 +3001,39 @@
{
"type": "Feature",
"bbox": [
- 5.399755921982155,
- 50.034905863497876,
- 5.400110073799767,
- 50.03526001531549
+ 5.402412060614241,
+ 50.03457384616886,
+ 5.402766212431851,
+ 50.03492799798648
],
- "id": "b7db61bfa4725001b11f2f176a845b72",
+ "id": "97a35baa3328e3288e00b46ad9f92f6f",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.399756,
- 50.03526,
+ 5.402412,
+ 50.034928,
0
],
[
- 5.399756,
- 50.034906,
+ 5.402412,
+ 50.034574,
0
],
[
- 5.40011,
- 50.034906,
+ 5.402766,
+ 50.034574,
0
],
[
- 5.40011,
- 50.03526,
+ 5.402766,
+ 50.034928,
0
],
[
- 5.399756,
- 50.03526,
+ 5.402412,
+ 50.034928,
0
]
]
@@ -2477,20 +3044,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 204.8,
- 1644.8
+ 972.8,
+ 1740.8
],
[
- 204.8,
- 1747.2
+ 972.8,
+ 1843.2
],
[
- 307.2,
- 1747.2
+ 1075.2,
+ 1843.2
],
[
- 307.2,
- 1644.8
+ 1075.2,
+ 1740.8
]
],
"ontology": [
@@ -2501,13 +3068,13 @@
],
"coordinates": []
},
- "center_longitude": 5.399932997890962,
- "center_latitude": 50.03508293940668,
+ "center_longitude": 5.402589136523046,
+ "center_latitude": 50.03475092207767,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.633413+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.768882+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -2515,39 +3082,39 @@
{
"type": "Feature",
"bbox": [
- 5.4030760952722625,
- 50.03822603678798,
- 5.403430247089872,
- 50.03858018860559
+ 5.409052407194452,
+ 50.03457384616886,
+ 5.409406559012063,
+ 50.03492799798648
],
- "id": "23dbabb43a9f38bacea0ca8fd2bbb51c",
+ "id": "9fa09c5ef7f0923680f66995c4f02f55",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.403076,
- 50.03858,
+ 5.409052,
+ 50.034928,
0
],
[
- 5.403076,
- 50.038226,
+ 5.409052,
+ 50.034574,
0
],
[
- 5.40343,
- 50.038226,
+ 5.409407,
+ 50.034574,
0
],
[
- 5.40343,
- 50.03858,
+ 5.409407,
+ 50.034928,
0
],
[
- 5.403076,
- 50.03858,
+ 5.409052,
+ 50.034928,
0
]
]
@@ -2558,20 +3125,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1164.8,
- 684.8
+ 2892.8,
+ 1740.8
],
[
- 1164.8,
- 787.2
+ 2892.8,
+ 1843.2
],
[
- 1267.2,
- 787.2
+ 2995.2,
+ 1843.2
],
[
- 1267.2,
- 684.8
+ 2995.2,
+ 1740.8
]
],
"ontology": [
@@ -2582,13 +3149,13 @@
],
"coordinates": []
},
- "center_longitude": 5.403253171181067,
- "center_latitude": 50.038403112696784,
+ "center_longitude": 5.409229483103259,
+ "center_latitude": 50.03475092207767,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.489772+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.882865+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -2596,39 +3163,39 @@
{
"type": "Feature",
"bbox": [
- 5.4030760952722625,
- 50.03215011966709,
- 5.403430247089872,
- 50.03220545588859
+ 5.410092728158685,
+ 50.03457384616886,
+ 5.410303005800392,
+ 50.03492799798648
],
- "id": "6030ca3968e8fde9be5288dc3b77871d",
+ "id": "0ebef3a08a9e7de9109939218f828b70",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.403076,
- 50.032205,
+ 5.410093,
+ 50.034928,
0
],
[
- 5.403076,
- 50.03215,
+ 5.410093,
+ 50.034574,
0
],
[
- 5.40343,
- 50.03215,
+ 5.410303,
+ 50.034574,
0
],
[
- 5.40343,
- 50.032205,
+ 5.410303,
+ 50.034928,
0
],
[
- 5.403076,
- 50.032205,
+ 5.410093,
+ 50.034928,
0
]
]
@@ -2639,20 +3206,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1164.8,
- 2528
+ 3193.6,
+ 1740.8
],
[
- 1164.8,
- 2544
+ 3193.6,
+ 1843.2
],
[
- 1267.2,
- 2544
+ 3254.4,
+ 1843.2
],
[
- 1267.2,
- 2528
+ 3254.4,
+ 1740.8
]
],
"ontology": [
@@ -2663,13 +3230,13 @@
],
"coordinates": []
},
- "center_longitude": 5.403253171181067,
- "center_latitude": 50.03217778777784,
+ "center_longitude": 5.410197866979538,
+ "center_latitude": 50.03475092207767,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:40.102265+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.898006+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -2677,39 +3244,39 @@
{
"type": "Feature",
"bbox": [
- 5.404736181917315,
- 50.03822603678798,
- 5.405090333734925,
- 50.03858018860559
+ 5.406396268562367,
+ 50.03324577685282,
+ 5.4067504203799786,
+ 50.033599928670434
],
- "id": "948cbb66415e123c8300782335fe8f32",
+ "id": "f331f538c2576354d379f9f71a2e9211",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.404736,
- 50.03858,
+ 5.406396,
+ 50.0336,
0
],
[
- 5.404736,
- 50.038226,
+ 5.406396,
+ 50.033246,
0
],
[
- 5.40509,
- 50.038226,
+ 5.40675,
+ 50.033246,
0
],
[
- 5.40509,
- 50.03858,
+ 5.40675,
+ 50.0336,
0
],
[
- 5.404736,
- 50.03858,
+ 5.406396,
+ 50.0336,
0
]
]
@@ -2720,20 +3287,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1644.8,
- 684.8
+ 2124.8,
+ 2124.8
],
[
- 1644.8,
- 787.2
+ 2124.8,
+ 2227.2
],
[
- 1747.2,
- 787.2
+ 2227.2,
+ 2227.2
],
[
- 1747.2,
- 684.8
+ 2227.2,
+ 2124.8
]
],
"ontology": [
@@ -2744,13 +3311,13 @@
],
"coordinates": []
},
- "center_longitude": 5.40491325782612,
- "center_latitude": 50.038403112696784,
+ "center_longitude": 5.406573344471173,
+ "center_latitude": 50.033422852761625,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.493820+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.033586+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -2758,39 +3325,39 @@
{
"type": "Feature",
"bbox": [
- 5.408388372536431,
- 50.034905863497876,
- 5.408742524354042,
- 50.03526001531549
+ 5.399755921982155,
+ 50.035901915484914,
+ 5.400110073799767,
+ 50.03625606730252
],
- "id": "7bc4c4bcbaac5ff7321c90ba5c09a3c6",
+ "id": "3dcb2cea77d4753bdf9d03eed90f83cc",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.408388,
- 50.03526,
+ 5.399756,
+ 50.036256,
0
],
[
- 5.408388,
- 50.034906,
+ 5.399756,
+ 50.035902,
0
],
[
- 5.408743,
- 50.034906,
+ 5.40011,
+ 50.035902,
0
],
[
- 5.408743,
- 50.03526,
+ 5.40011,
+ 50.036256,
0
],
[
- 5.408388,
- 50.03526,
+ 5.399756,
+ 50.036256,
0
]
]
@@ -2801,20 +3368,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2700.8,
- 1644.8
+ 204.8,
+ 1356.8
],
[
- 2700.8,
- 1747.2
+ 204.8,
+ 1459.2
],
[
- 2803.2,
- 1747.2
+ 307.2,
+ 1459.2
],
[
- 2803.2,
- 1644.8
+ 307.2,
+ 1356.8
]
],
"ontology": [
@@ -2825,13 +3392,13 @@
],
"coordinates": []
},
- "center_longitude": 5.408565448445236,
- "center_latitude": 50.03508293940668,
+ "center_longitude": 5.399932997890962,
+ "center_latitude": 50.036078991393715,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.961804+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.521312+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -2839,39 +3406,39 @@
{
"type": "Feature",
"bbox": [
- 5.399755921982155,
- 50.039886123433035,
- 5.400110073799767,
- 50.040240275250646
+ 5.401083991298198,
+ 50.03457384616886,
+ 5.40143814311581,
+ 50.03492799798648
],
- "id": "353e574ce77881254334064f40ac6abc",
+ "id": "2079202e3b35e01282a9f45c66795376",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.399756,
- 50.04024,
+ 5.401084,
+ 50.034928,
0
],
[
- 5.399756,
- 50.039886,
+ 5.401084,
+ 50.034574,
0
],
[
- 5.40011,
- 50.039886,
+ 5.401438,
+ 50.034574,
0
],
[
- 5.40011,
- 50.04024,
+ 5.401438,
+ 50.034928,
0
],
[
- 5.399756,
- 50.04024,
+ 5.401084,
+ 50.034928,
0
]
]
@@ -2882,20 +3449,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 204.8,
- 204.8
+ 588.8,
+ 1740.8
],
[
- 204.8,
- 307.2
+ 588.8,
+ 1843.2
],
[
- 307.2,
- 307.2
+ 691.2,
+ 1843.2
],
[
- 307.2,
- 204.8
+ 691.2,
+ 1740.8
]
],
"ontology": [
@@ -2906,13 +3473,13 @@
],
"coordinates": []
},
- "center_longitude": 5.399932997890962,
- "center_latitude": 50.04006319934184,
+ "center_longitude": 5.401261067207003,
+ "center_latitude": 50.03475092207767,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.352461+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.747942+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -2920,39 +3487,39 @@
{
"type": "Feature",
"bbox": [
- 5.409893517761279,
- 50.03822603678798,
- 5.410170198868787,
- 50.03858018860559
+ 5.405068199246325,
+ 50.038558054117,
+ 5.405422351063936,
+ 50.0389122059346
],
- "id": "77793fcb331221b8883437c9abaa22bb",
+ "id": "4493cc4e365cd08d357f430e00d47101",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.409894,
- 50.03858,
+ 5.405068,
+ 50.038912,
0
],
[
- 5.409894,
- 50.038226,
+ 5.405068,
+ 50.038558,
0
],
[
- 5.41017,
- 50.038226,
+ 5.405422,
+ 50.038558,
0
],
[
- 5.41017,
- 50.03858,
+ 5.405422,
+ 50.038912,
0
],
[
- 5.409894,
- 50.03858,
+ 5.405068,
+ 50.038912,
0
]
]
@@ -2963,20 +3530,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 3136,
- 684.8
+ 1740.8,
+ 588.8
],
[
- 3136,
- 787.2
+ 1740.8,
+ 691.2
],
[
- 3216,
- 787.2
+ 1843.2,
+ 691.2
],
[
- 3216,
- 684.8
+ 1843.2,
+ 588.8
]
],
"ontology": [
@@ -2987,13 +3554,13 @@
],
"coordinates": []
},
- "center_longitude": 5.410031858315033,
- "center_latitude": 50.038403112696784,
+ "center_longitude": 5.4052452751551305,
+ "center_latitude": 50.0387351300258,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.747454+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.177617+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -3001,39 +3568,39 @@
{
"type": "Feature",
"bbox": [
- 5.408388372536431,
- 50.039886123433035,
- 5.408742524354042,
- 50.040240275250646
+ 5.405068199246325,
+ 50.03324577685282,
+ 5.405422351063936,
+ 50.033599928670434
],
- "id": "fc20a879ba92fe9d8744d094ff918f39",
+ "id": "93dcd964199332dc32d174ecc57fe9dc",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.408388,
- 50.04024,
+ 5.405068,
+ 50.0336,
0
],
[
- 5.408388,
- 50.039886,
+ 5.405068,
+ 50.033246,
0
],
[
- 5.408743,
- 50.039886,
+ 5.405422,
+ 50.033246,
0
],
[
- 5.408743,
- 50.04024,
+ 5.405422,
+ 50.0336,
0
],
[
- 5.408388,
- 50.04024,
+ 5.405068,
+ 50.0336,
0
]
]
@@ -3044,20 +3611,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2700.8,
- 204.8
+ 1740.8,
+ 2124.8
],
[
- 2700.8,
- 307.2
+ 1740.8,
+ 2227.2
],
[
- 2803.2,
- 307.2
+ 1843.2,
+ 2227.2
],
[
- 2803.2,
- 204.8
+ 1843.2,
+ 2124.8
]
],
"ontology": [
@@ -3068,13 +3635,13 @@
],
"coordinates": []
},
- "center_longitude": 5.408565448445236,
- "center_latitude": 50.04006319934184,
+ "center_longitude": 5.4052452751551305,
+ "center_latitude": 50.033422852761625,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.667517+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.009077+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -3082,39 +3649,39 @@
{
"type": "Feature",
"bbox": [
- 5.409893517761279,
- 50.03215011966709,
- 5.410170198868787,
- 50.03220545588859
+ 5.399755921982155,
+ 50.03457384616886,
+ 5.400110073799767,
+ 50.03492799798648
],
- "id": "89fc7746487a60f2381685b18ea7faff",
+ "id": "5105fd1d899e77c99c2dceadc24125f9",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.409894,
- 50.032205,
+ 5.399756,
+ 50.034928,
0
],
[
- 5.409894,
- 50.03215,
+ 5.399756,
+ 50.034574,
0
],
[
- 5.41017,
- 50.03215,
+ 5.40011,
+ 50.034574,
0
],
[
- 5.41017,
- 50.032205,
+ 5.40011,
+ 50.034928,
0
],
[
- 5.409894,
- 50.032205,
+ 5.399756,
+ 50.034928,
0
]
]
@@ -3125,20 +3692,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 3136,
- 2528
+ 204.8,
+ 1740.8
],
[
- 3136,
- 2544
+ 204.8,
+ 1843.2
],
[
- 3216,
- 2544
+ 307.2,
+ 1843.2
],
[
- 3216,
- 2528
+ 307.2,
+ 1740.8
]
],
"ontology": [
@@ -3149,13 +3716,13 @@
],
"coordinates": []
},
- "center_longitude": 5.410031858315033,
- "center_latitude": 50.03217778777784,
+ "center_longitude": 5.399932997890962,
+ "center_latitude": 50.03475092207767,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.924266+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.724836+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -3163,39 +3730,39 @@
{
"type": "Feature",
"bbox": [
- 5.399755921982155,
- 50.03822603678798,
- 5.400110073799767,
- 50.03858018860559
+ 5.406396268562367,
+ 50.039886123433035,
+ 5.4067504203799786,
+ 50.040240275250646
],
- "id": "75ca86928eea012a06c4d1146e8d6fc0",
+ "id": "f77d7fe64818e8b7575008947d3a9607",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.399756,
- 50.03858,
+ 5.406396,
+ 50.04024,
0
],
[
- 5.399756,
- 50.038226,
+ 5.406396,
+ 50.039886,
0
],
[
- 5.40011,
- 50.038226,
+ 5.40675,
+ 50.039886,
0
],
[
- 5.40011,
- 50.03858,
+ 5.40675,
+ 50.04024,
0
],
[
- 5.399756,
- 50.03858,
+ 5.406396,
+ 50.04024,
0
]
]
@@ -3206,20 +3773,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 204.8,
- 684.8
+ 2124.8,
+ 204.8
],
[
- 204.8,
- 787.2
+ 2124.8,
+ 307.2
],
[
- 307.2,
- 787.2
+ 2227.2,
+ 307.2
],
[
- 307.2,
- 684.8
+ 2227.2,
+ 204.8
]
],
"ontology": [
@@ -3230,13 +3797,13 @@
],
"coordinates": []
},
- "center_longitude": 5.399932997890962,
- "center_latitude": 50.038403112696784,
+ "center_longitude": 5.406573344471173,
+ "center_latitude": 50.04006319934184,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.456273+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.041046+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -3244,39 +3811,39 @@
{
"type": "Feature",
"bbox": [
- 5.399755921982155,
- 50.03656595014293,
- 5.400110073799767,
- 50.03692010196055
+ 5.409052407194452,
+ 50.038558054117,
+ 5.409406559012063,
+ 50.0389122059346
],
- "id": "ce6c9eb448e6ea83bcfae466309953fc",
+ "id": "25e70288a59eeddd0e7dd972155a6366",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.399756,
- 50.03692,
+ 5.409052,
+ 50.038912,
0
],
[
- 5.399756,
- 50.036566,
+ 5.409052,
+ 50.038558,
0
],
[
- 5.40011,
- 50.036566,
+ 5.409407,
+ 50.038558,
0
],
[
- 5.40011,
- 50.03692,
+ 5.409407,
+ 50.038912,
0
],
[
- 5.399756,
- 50.03692,
+ 5.409052,
+ 50.038912,
0
]
]
@@ -3287,20 +3854,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 204.8,
- 1164.8
+ 2892.8,
+ 588.8
],
[
- 204.8,
- 1267.2
+ 2892.8,
+ 691.2
],
[
- 307.2,
- 1267.2
+ 2995.2,
+ 691.2
],
[
- 307.2,
- 1164.8
+ 2995.2,
+ 588.8
]
],
"ontology": [
@@ -3311,13 +3878,13 @@
],
"coordinates": []
},
- "center_longitude": 5.399932997890962,
- "center_latitude": 50.03674302605173,
+ "center_longitude": 5.409229483103259,
+ "center_latitude": 50.0387351300258,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.529375+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.247883+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -3326,38 +3893,38 @@
"type": "Feature",
"bbox": [
5.399755921982155,
- 50.03215011966709,
+ 50.038558054117,
5.400110073799767,
- 50.03220545588859
+ 50.0389122059346
],
- "id": "aadab2423f3914bba677d961164ae633",
+ "id": "72613e9e6be18e5f32c58d279b418e5d",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
5.399756,
- 50.032205,
+ 50.038912,
0
],
[
5.399756,
- 50.03215,
+ 50.038558,
0
],
[
5.40011,
- 50.03215,
+ 50.038558,
0
],
[
5.40011,
- 50.032205,
+ 50.038912,
0
],
[
5.399756,
- 50.032205,
+ 50.038912,
0
]
]
@@ -3369,19 +3936,19 @@
"pixelCoordinates": [
[
204.8,
- 2528
+ 588.8
],
[
204.8,
- 2544
+ 691.2
],
[
307.2,
- 2544
+ 691.2
],
[
307.2,
- 2528
+ 588.8
]
],
"ontology": [
@@ -3393,12 +3960,12 @@
"coordinates": []
},
"center_longitude": 5.399932997890962,
- "center_latitude": 50.03217778777784,
+ "center_latitude": 50.0387351300258,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:40.096158+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.096048+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -3406,39 +3973,39 @@
{
"type": "Feature",
"bbox": [
- 5.4030760952722625,
- 50.03656595014293,
- 5.403430247089872,
- 50.03692010196055
+ 5.406396268562367,
+ 50.03722998480095,
+ 5.4067504203799786,
+ 50.03758413661856
],
- "id": "eba386b93cd4658c20d09c3b509ac5d7",
+ "id": "e2866ed1af22c248cf3b2d1a77acfce8",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.403076,
- 50.03692,
+ 5.406396,
+ 50.037584,
0
],
[
- 5.403076,
- 50.036566,
+ 5.406396,
+ 50.03723,
0
],
[
- 5.40343,
- 50.036566,
+ 5.40675,
+ 50.03723,
0
],
[
- 5.40343,
- 50.03692,
+ 5.40675,
+ 50.037584,
0
],
[
- 5.403076,
- 50.03692,
+ 5.406396,
+ 50.037584,
0
]
]
@@ -3449,20 +4016,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1164.8,
- 1164.8
+ 2124.8,
+ 972.8
],
[
- 1164.8,
- 1267.2
+ 2124.8,
+ 1075.2
],
[
- 1267.2,
- 1267.2
+ 2227.2,
+ 1075.2
],
[
- 1267.2,
- 1164.8
+ 2227.2,
+ 972.8
]
],
"ontology": [
@@ -3473,13 +4040,13 @@
],
"coordinates": []
},
- "center_longitude": 5.403253171181067,
- "center_latitude": 50.03674302605173,
+ "center_longitude": 5.406573344471173,
+ "center_latitude": 50.037407060709754,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.570092+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.424974+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -3487,39 +4054,39 @@
{
"type": "Feature",
"bbox": [
- 5.406728285891377,
- 50.03656595014293,
- 5.407082437708989,
- 50.03692010196055
+ 5.4037401299302825,
+ 50.03241573353029,
+ 5.404094281747894,
+ 50.0326038766834
],
- "id": "e42ec37f1fad343692ec128b7186da2d",
+ "id": "97aa032e45fe7c5a793000984bea2871",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.406728,
- 50.03692,
+ 5.40374,
+ 50.032604,
0
],
[
- 5.406728,
- 50.036566,
+ 5.40374,
+ 50.032416,
0
],
[
- 5.407082,
- 50.036566,
+ 5.404094,
+ 50.032416,
0
],
[
- 5.407082,
- 50.03692,
+ 5.404094,
+ 50.032604,
0
],
[
- 5.406728,
- 50.03692,
+ 5.40374,
+ 50.032604,
0
]
]
@@ -3530,20 +4097,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2220.8,
- 1164.8
+ 1356.8,
+ 2412.8
],
[
- 2220.8,
- 1267.2
+ 1356.8,
+ 2467.2
],
[
- 2323.2,
- 1267.2
+ 1459.2,
+ 2467.2
],
[
- 2323.2,
- 1164.8
+ 1459.2,
+ 2412.8
]
],
"ontology": [
@@ -3554,13 +4121,13 @@
],
"coordinates": []
},
- "center_longitude": 5.406905361800184,
- "center_latitude": 50.03674302605173,
+ "center_longitude": 5.403917205839088,
+ "center_latitude": 50.03250980510685,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.870712+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.153521+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -3568,39 +4135,39 @@
{
"type": "Feature",
"bbox": [
- 5.408388372536431,
- 50.03404261844245,
- 5.408742524354042,
- 50.03413115639685
+ 5.4037401299302825,
+ 50.035901915484914,
+ 5.404094281747894,
+ 50.03625606730252
],
- "id": "514598da6007828a258d26f3976952ed",
+ "id": "c6dab3ffffa74271c83d69bf94974541",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.408388,
- 50.034131,
+ 5.40374,
+ 50.036256,
0
],
[
- 5.408388,
- 50.034043,
+ 5.40374,
+ 50.035902,
0
],
[
- 5.408743,
- 50.034043,
+ 5.404094,
+ 50.035902,
0
],
[
- 5.408743,
- 50.034131,
+ 5.404094,
+ 50.036256,
0
],
[
- 5.408388,
- 50.034131,
+ 5.40374,
+ 50.036256,
0
]
]
@@ -3611,20 +4178,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2700.8,
- 1971.2
+ 1356.8,
+ 1356.8
],
[
- 2700.8,
- 1996.8
+ 1356.8,
+ 1459.2
],
[
- 2803.2,
- 1996.8
+ 1459.2,
+ 1459.2
],
[
- 2803.2,
- 1971.2
+ 1459.2,
+ 1356.8
]
],
"ontology": [
@@ -3635,13 +4202,13 @@
],
"coordinates": []
},
- "center_longitude": 5.408565448445236,
- "center_latitude": 50.03408688741965,
+ "center_longitude": 5.403917205839088,
+ "center_latitude": 50.036078991393715,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.992740+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.590199+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -3649,39 +4216,39 @@
{
"type": "Feature",
"bbox": [
- 5.408388372536431,
- 50.03291375952381,
- 5.408742524354042,
- 50.033267911341426
+ 5.399755921982155,
+ 50.03324577685282,
+ 5.400110073799767,
+ 50.033599928670434
],
- "id": "dd92a82fac751a3f8634f1c027e6c7e1",
+ "id": "4f34643d9d32c12c65096f53bbd38454",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.408388,
- 50.033268,
+ 5.399756,
+ 50.0336,
0
],
[
- 5.408388,
- 50.032914,
+ 5.399756,
+ 50.033246,
0
],
[
- 5.408743,
- 50.032914,
+ 5.40011,
+ 50.033246,
0
],
[
- 5.408743,
- 50.033268,
+ 5.40011,
+ 50.0336,
0
],
[
- 5.408388,
- 50.033268,
+ 5.399756,
+ 50.0336,
0
]
]
@@ -3692,20 +4259,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2700.8,
- 2220.8
+ 204.8,
+ 2124.8
],
[
- 2700.8,
- 2323.2
+ 204.8,
+ 2227.2
],
[
- 2803.2,
- 2323.2
+ 307.2,
+ 2227.2
],
[
- 2803.2,
- 2220.8
+ 307.2,
+ 2124.8
]
],
"ontology": [
@@ -3716,13 +4283,13 @@
],
"coordinates": []
},
- "center_longitude": 5.408565448445236,
- "center_latitude": 50.03309083543262,
+ "center_longitude": 5.399932997890962,
+ "center_latitude": 50.033422852761625,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.902984+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.923660+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -3730,39 +4297,39 @@
{
"type": "Feature",
"bbox": [
- 5.406728285891377,
- 50.034905863497876,
- 5.407082437708989,
- 50.03526001531549
+ 5.40772433787841,
+ 50.03241573353029,
+ 5.40807848969602,
+ 50.0326038766834
],
- "id": "7e1c88f96ef5fc05a70edeb344e82eb6",
+ "id": "3bda1c38bfe1d7571d20af7d536596b3",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.406728,
- 50.03526,
+ 5.407724,
+ 50.032604,
0
],
[
- 5.406728,
- 50.034906,
+ 5.407724,
+ 50.032416,
0
],
[
- 5.407082,
- 50.034906,
+ 5.408078,
+ 50.032416,
0
],
[
- 5.407082,
- 50.03526,
+ 5.408078,
+ 50.032604,
0
],
[
- 5.406728,
- 50.03526,
+ 5.407724,
+ 50.032604,
0
]
]
@@ -3773,20 +4340,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2220.8,
- 1644.8
+ 2508.8,
+ 2412.8
],
[
- 2220.8,
- 1747.2
+ 2508.8,
+ 2467.2
],
[
- 2323.2,
- 1747.2
+ 2611.2,
+ 2467.2
],
[
- 2323.2,
- 1644.8
+ 2611.2,
+ 2412.8
]
],
"ontology": [
@@ -3797,13 +4364,13 @@
],
"coordinates": []
},
- "center_longitude": 5.406905361800184,
- "center_latitude": 50.03508293940668,
+ "center_longitude": 5.407901413787215,
+ "center_latitude": 50.03250980510685,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.951556+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.188808+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -3811,39 +4378,39 @@
{
"type": "Feature",
"bbox": [
- 5.40586504083595,
- 50.034905863497876,
- 5.405953578790353,
- 50.03526001531549
+ 5.4037401299302825,
+ 50.03457384616886,
+ 5.404094281747894,
+ 50.03492799798648
],
- "id": "c6d0bb70cdb63a76f1e16e5b1b9191f8",
+ "id": "e47a641b47d187ca335d109f7dc953a2",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.405865,
- 50.03526,
+ 5.40374,
+ 50.034928,
0
],
[
- 5.405865,
- 50.034906,
+ 5.40374,
+ 50.034574,
0
],
[
- 5.405954,
- 50.034906,
+ 5.404094,
+ 50.034574,
0
],
[
- 5.405954,
- 50.03526,
+ 5.404094,
+ 50.034928,
0
],
[
- 5.405865,
- 50.03526,
+ 5.40374,
+ 50.034928,
0
]
]
@@ -3854,20 +4421,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1971.2,
- 1644.8
+ 1356.8,
+ 1740.8
],
[
- 1971.2,
- 1747.2
+ 1356.8,
+ 1843.2
],
[
- 1996.8,
- 1747.2
+ 1459.2,
+ 1843.2
],
[
- 1996.8,
- 1644.8
+ 1459.2,
+ 1740.8
]
],
"ontology": [
@@ -3878,13 +4445,13 @@
],
"coordinates": []
},
- "center_longitude": 5.405909309813151,
- "center_latitude": 50.03508293940668,
+ "center_longitude": 5.403917205839088,
+ "center_latitude": 50.03475092207767,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.700599+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.794330+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -3892,39 +4459,39 @@
{
"type": "Feature",
"bbox": [
- 5.408388372536431,
- 50.03822603678798,
- 5.408742524354042,
- 50.03858018860559
+ 5.409052407194452,
+ 50.03722998480095,
+ 5.409406559012063,
+ 50.03758413661856
],
- "id": "766e2702f244a32ae12f04e0dbeeec91",
+ "id": "f09196244b53015940922af390082af2",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.408388,
- 50.03858,
+ 5.409052,
+ 50.037584,
0
],
[
- 5.408388,
- 50.038226,
+ 5.409052,
+ 50.03723,
0
],
[
- 5.408743,
- 50.038226,
+ 5.409407,
+ 50.03723,
0
],
[
- 5.408743,
- 50.03858,
+ 5.409407,
+ 50.037584,
0
],
[
- 5.408388,
- 50.03858,
+ 5.409052,
+ 50.037584,
0
]
]
@@ -3935,20 +4502,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2700.8,
- 684.8
+ 2892.8,
+ 972.8
],
[
- 2700.8,
- 787.2
+ 2892.8,
+ 1075.2
],
[
- 2803.2,
- 787.2
+ 2995.2,
+ 1075.2
],
[
- 2803.2,
- 684.8
+ 2995.2,
+ 972.8
]
],
"ontology": [
@@ -3959,13 +4526,13 @@
],
"coordinates": []
},
- "center_longitude": 5.408565448445236,
- "center_latitude": 50.038403112696784,
+ "center_longitude": 5.409229483103259,
+ "center_latitude": 50.037407060709754,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.753867+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.472972+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -3973,39 +4540,39 @@
{
"type": "Feature",
"bbox": [
- 5.408388372536431,
- 50.03656595014293,
- 5.408742524354042,
- 50.03692010196055
+ 5.40772433787841,
+ 50.03324577685282,
+ 5.40807848969602,
+ 50.033599928670434
],
- "id": "5bab37c8488d68cb58bd1a62c6bd5162",
+ "id": "196a56d0ad85c830a5e3f552a3e9ff16",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.408388,
- 50.03692,
+ 5.407724,
+ 50.0336,
0
],
[
- 5.408388,
- 50.036566,
+ 5.407724,
+ 50.033246,
0
],
[
- 5.408743,
- 50.036566,
+ 5.408078,
+ 50.033246,
0
],
[
- 5.408743,
- 50.03692,
+ 5.408078,
+ 50.0336,
0
],
[
- 5.408388,
- 50.03692,
+ 5.407724,
+ 50.0336,
0
]
]
@@ -4016,20 +4583,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 2700.8,
- 1164.8
+ 2508.8,
+ 2124.8
],
[
- 2700.8,
- 1267.2
+ 2508.8,
+ 2227.2
],
[
- 2803.2,
- 1267.2
+ 2611.2,
+ 2227.2
],
[
- 2803.2,
- 1164.8
+ 2611.2,
+ 2124.8
]
],
"ontology": [
@@ -4040,13 +4607,13 @@
],
"coordinates": []
},
- "center_longitude": 5.408565448445236,
- "center_latitude": 50.03674302605173,
+ "center_longitude": 5.407901413787215,
+ "center_latitude": 50.033422852761625,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.902256+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.055445+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -4054,39 +4621,39 @@
{
"type": "Feature",
"bbox": [
- 5.404736181917315,
- 50.03656595014293,
- 5.405090333734925,
- 50.03692010196055
+ 5.402412060614241,
+ 50.038558054117,
+ 5.402766212431851,
+ 50.0389122059346
],
- "id": "0c59fb25628f63c173fab6295351d19c",
+ "id": "06fd7fd96c4bad69c851c8cab0217599",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.404736,
- 50.03692,
+ 5.402412,
+ 50.038912,
0
],
[
- 5.404736,
- 50.036566,
+ 5.402412,
+ 50.038558,
0
],
[
- 5.40509,
- 50.036566,
+ 5.402766,
+ 50.038558,
0
],
[
- 5.40509,
- 50.03692,
+ 5.402766,
+ 50.038912,
0
],
[
- 5.404736,
- 50.03692,
+ 5.402412,
+ 50.038912,
0
]
]
@@ -4097,20 +4664,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1644.8,
- 1164.8
+ 972.8,
+ 588.8
],
[
- 1644.8,
- 1267.2
+ 972.8,
+ 691.2
],
[
- 1747.2,
- 1267.2
+ 1075.2,
+ 691.2
],
[
- 1747.2,
- 1164.8
+ 1075.2,
+ 588.8
]
],
"ontology": [
@@ -4121,13 +4688,13 @@
],
"coordinates": []
},
- "center_longitude": 5.40491325782612,
- "center_latitude": 50.03674302605173,
+ "center_longitude": 5.402589136523046,
+ "center_latitude": 50.0387351300258,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.594125+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.131169+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -4135,39 +4702,39 @@
{
"type": "Feature",
"bbox": [
- 5.4014160086272085,
- 50.034905863497876,
- 5.40177016044482,
- 50.03526001531549
+ 5.402412060614241,
+ 50.035901915484914,
+ 5.402766212431851,
+ 50.03625606730252
],
- "id": "0bb289892b6abf298df1df61194c25e7",
+ "id": "ab2852089b28411d80b5421574a76240",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.401416,
- 50.03526,
+ 5.402412,
+ 50.036256,
0
],
[
- 5.401416,
- 50.034906,
+ 5.402412,
+ 50.035902,
0
],
[
- 5.40177,
- 50.034906,
+ 5.402766,
+ 50.035902,
0
],
[
- 5.40177,
- 50.03526,
+ 5.402766,
+ 50.036256,
0
],
[
- 5.401416,
- 50.03526,
+ 5.402412,
+ 50.036256,
0
]
]
@@ -4178,20 +4745,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 684.8,
- 1644.8
+ 972.8,
+ 1356.8
],
[
- 684.8,
- 1747.2
+ 972.8,
+ 1459.2
],
[
- 787.2,
- 1747.2
+ 1075.2,
+ 1459.2
],
[
- 787.2,
- 1644.8
+ 1075.2,
+ 1356.8
]
],
"ontology": [
@@ -4202,13 +4769,13 @@
],
"coordinates": []
},
- "center_longitude": 5.401593084536014,
- "center_latitude": 50.03508293940668,
+ "center_longitude": 5.402589136523046,
+ "center_latitude": 50.036078991393715,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.657915+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.569004+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -4216,39 +4783,39 @@
{
"type": "Feature",
"bbox": [
- 5.4030760952722625,
- 50.039886123433035,
- 5.403430247089872,
- 50.040240275250646
+ 5.405068199246325,
+ 50.03241573353029,
+ 5.405422351063936,
+ 50.0326038766834
],
- "id": "b19b123dfd7e5bbc1927e94e6931e503",
+ "id": "f761a34204fb192bc8333606c5d8a5c5",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.403076,
- 50.04024,
+ 5.405068,
+ 50.032604,
0
],
[
- 5.403076,
- 50.039886,
+ 5.405068,
+ 50.032416,
0
],
[
- 5.40343,
- 50.039886,
+ 5.405422,
+ 50.032416,
0
],
[
- 5.40343,
- 50.04024,
+ 5.405422,
+ 50.032604,
0
],
[
- 5.403076,
- 50.04024,
+ 5.405068,
+ 50.032604,
0
]
]
@@ -4259,20 +4826,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1164.8,
- 204.8
+ 1740.8,
+ 2412.8
],
[
- 1164.8,
- 307.2
+ 1740.8,
+ 2467.2
],
[
- 1267.2,
- 307.2
+ 1843.2,
+ 2467.2
],
[
- 1267.2,
- 204.8
+ 1843.2,
+ 2412.8
]
],
"ontology": [
@@ -4283,13 +4850,13 @@
],
"coordinates": []
},
- "center_longitude": 5.403253171181067,
- "center_latitude": 50.04006319934184,
+ "center_longitude": 5.4052452751551305,
+ "center_latitude": 50.03250980510685,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.400219+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.166369+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -4297,39 +4864,39 @@
{
"type": "Feature",
"bbox": [
- 5.4014160086272085,
- 50.03404261844245,
- 5.40177016044482,
- 50.03413115639685
+ 5.409052407194452,
+ 50.03324577685282,
+ 5.409406559012063,
+ 50.033599928670434
],
- "id": "9440d03f29ff61d1d2098bf90e1c0257",
+ "id": "71db959bf99610f0a6235aa0d0b46465",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.401416,
- 50.034131,
+ 5.409052,
+ 50.0336,
0
],
[
- 5.401416,
- 50.034043,
+ 5.409052,
+ 50.033246,
0
],
[
- 5.40177,
- 50.034043,
+ 5.409407,
+ 50.033246,
0
],
[
- 5.40177,
- 50.034131,
+ 5.409407,
+ 50.0336,
0
],
[
- 5.401416,
- 50.034131,
+ 5.409052,
+ 50.0336,
0
]
]
@@ -4340,20 +4907,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 684.8,
- 1971.2
+ 2892.8,
+ 2124.8
],
[
- 684.8,
- 1996.8
+ 2892.8,
+ 2227.2
],
[
- 787.2,
- 1996.8
+ 2995.2,
+ 2227.2
],
[
- 787.2,
- 1971.2
+ 2995.2,
+ 2124.8
]
],
"ontology": [
@@ -4364,13 +4931,13 @@
],
"coordinates": []
},
- "center_longitude": 5.401593084536014,
- "center_latitude": 50.03408688741965,
+ "center_longitude": 5.409229483103259,
+ "center_latitude": 50.033422852761625,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.718103+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:55.077773+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -4378,39 +4945,39 @@
{
"type": "Feature",
"bbox": [
- 5.4014160086272085,
- 50.03291375952381,
- 5.40177016044482,
- 50.033267911341426
+ 5.399755921982155,
+ 50.039886123433035,
+ 5.400110073799767,
+ 50.040240275250646
],
- "id": "91ce656b5b8fd917491cafa587a59687",
+ "id": "9eb1494badba25b38629a67fa919e624",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.401416,
- 50.033268,
+ 5.399756,
+ 50.04024,
0
],
[
- 5.401416,
- 50.032914,
+ 5.399756,
+ 50.039886,
0
],
[
- 5.40177,
- 50.032914,
+ 5.40011,
+ 50.039886,
0
],
[
- 5.40177,
- 50.033268,
+ 5.40011,
+ 50.04024,
0
],
[
- 5.401416,
- 50.033268,
+ 5.399756,
+ 50.04024,
0
]
]
@@ -4421,20 +4988,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 684.8,
- 2220.8
+ 204.8,
+ 204.8
],
[
- 684.8,
- 2323.2
+ 204.8,
+ 307.2
],
[
- 787.2,
- 2323.2
+ 307.2,
+ 307.2
],
[
- 787.2,
- 2220.8
+ 307.2,
+ 204.8
]
],
"ontology": [
@@ -4445,13 +5012,13 @@
],
"coordinates": []
},
- "center_longitude": 5.401593084536014,
- "center_latitude": 50.03309083543262,
+ "center_longitude": 5.399932997890962,
+ "center_latitude": 50.04006319934184,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:40.024561+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:53.888885+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
@@ -4459,39 +5026,39 @@
{
"type": "Feature",
"bbox": [
- 5.404736181917315,
- 50.034905863497876,
- 5.405090333734925,
- 50.03526001531549
+ 5.409052407194452,
+ 50.035901915484914,
+ 5.409406559012063,
+ 50.03625606730252
],
- "id": "b75a666308949046541295c6a6ac6efd",
+ "id": "03898c2800f7f8093505b0b004d02196",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
- 5.404736,
- 50.03526,
+ 5.409052,
+ 50.036256,
0
],
[
- 5.404736,
- 50.034906,
+ 5.409052,
+ 50.035902,
0
],
[
- 5.40509,
- 50.034906,
+ 5.409407,
+ 50.035902,
0
],
[
- 5.40509,
- 50.03526,
+ 5.409407,
+ 50.036256,
0
],
[
- 5.404736,
- 50.03526,
+ 5.409052,
+ 50.036256,
0
]
]
@@ -4502,20 +5069,20 @@
"type": "Polygon",
"pixelCoordinates": [
[
- 1644.8,
- 1644.8
+ 2892.8,
+ 1356.8
],
[
- 1644.8,
- 1747.2
+ 2892.8,
+ 1459.2
],
[
- 1747.2,
- 1747.2
+ 2995.2,
+ 1459.2
],
[
- 1747.2,
- 1644.8
+ 2995.2,
+ 1356.8
]
],
"ontology": [
@@ -4526,13 +5093,13 @@
],
"coordinates": []
},
- "center_longitude": 5.40491325782612,
- "center_latitude": 50.03508293940668,
+ "center_longitude": 5.409229483103259,
+ "center_latitude": 50.036078991393715,
"inferenceMetadata": {
- "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "jobId": "9b84f4d3-cd98-4445-a714-14ed51286f18",
"filePath": "s3://test-images-123456789123/small.tif",
- "receiveTime": "2023-04-12T16:10:39.014396",
- "inferenceTime": "2023-04-12T16:10:39.699464+00:00",
+ "receiveTime": "2023-11-10T02:16:53.392971",
+ "inferenceTime": "2023-11-10T02:16:54.683017+00:00",
"tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
}
}
diff --git a/src/data/centerpoint.wbid.ntf.geojson b/src/data/centerpoint.wbid.ntf.geojson
new file mode 100644
index 0000000..b822288
--- /dev/null
+++ b/src/data/centerpoint.wbid.ntf.geojson
@@ -0,0 +1 @@
+{"type": "FeatureCollection", "features": [{"type": "Feature", "bbox": [5.407837333333333, 50.032318295577134, 5.4081913086419755, 50.03250608414239], "id": "886f4d74cb4ad1e788b86c399d364626", "geometry": {"type": "Polygon", "coordinates": [[[5.407837, 50.032506, 0.0], [5.407837, 50.032318, 0.0], [5.408191, 50.032318, 0.0], [5.408191, 50.032506, 0.0], [5.407837, 50.032506, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2508.8, 2412.8], [2508.8, 2467.2], [2611.2, 2467.2], [2611.2, 2412.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.408014320987655, "center_latitude": 50.032412189859755, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:30.370332+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.410204543209876, 50.03447234088457, 5.410414716049383, 50.03482582524271], "id": "dae9e9a9b4baae6979e49be2a82fce4e", "geometry": {"type": "Polygon", "coordinates": [[[5.410205, 50.034826, 0.0], [5.410205, 50.034472, 0.0], [5.410415, 50.034472, 0.0], [5.410415, 50.034826, 0.0], [5.410205, 50.034826, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[3193.6, 1740.8], [3193.6, 1843.2], [3254.4, 1843.2], [3254.4, 1740.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.41030962962963, "center_latitude": 50.03464908306364, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:28.796398+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.409164740740741, 50.03314677454153, 5.409518716049383, 50.03350025889967], "id": "fb9dca95072ea78c008bcd93ad7e6675", "geometry": {"type": "Polygon", "coordinates": [[[5.409165, 50.0335, 0.0], [5.409165, 50.033147, 0.0], [5.409519, 50.033147, 0.0], [5.409519, 50.0335, 0.0], [5.409165, 50.0335, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2892.8, 2124.8], [2892.8, 2227.2], [2995.2, 2227.2], [2995.2, 2124.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.409341728395062, "center_latitude": 50.0333235167206, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:29.935163+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.410204543209876, 50.039774606256735, 5.410414716049383, 50.040128090614886], "id": "d7bd278bb81117fa32f1666b6a1f7d1f", "geometry": {"type": "Polygon", "coordinates": [[[5.410205, 50.040128, 0.0], [5.410205, 50.039775, 0.0], [5.410415, 50.039775, 0.0], [5.410415, 50.040128, 0.0], [5.410205, 50.040128, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[3193.6, 204.8], [3193.6, 307.2], [3254.4, 307.2], [3254.4, 204.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.41030962962963, "center_latitude": 50.039951348435814, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:24.971762+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.406509925925926, 50.038449039913694, 5.406863901234568, 50.038802524271844], "id": "5cc6564e345548590811e0b55bc69c87", "geometry": {"type": "Polygon", "coordinates": [[[5.40651, 50.038803, 0.0], [5.40651, 50.038449, 0.0], [5.406864, 50.038449, 0.0], [5.406864, 50.038803, 0.0], [5.40651, 50.038803, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2124.8, 588.8], [2124.8, 691.2], [2227.2, 691.2], [2227.2, 588.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4066869135802476, "center_latitude": 50.038625782092765, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:25.575882+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.401200296296296, 50.03447234088457, 5.401554271604939, 50.03482582524271], "id": "9514241ab7574e9117319e91bc9e4dd1", "geometry": {"type": "Polygon", "coordinates": [[[5.4012, 50.034826, 0.0], [5.4012, 50.034472, 0.0], [5.401554, 50.034472, 0.0], [5.401554, 50.034826, 0.0], [5.4012, 50.034826, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[588.8, 1740.8], [588.8, 1843.2], [691.2, 1843.2], [691.2, 1740.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.401377283950618, "center_latitude": 50.03464908306364, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:28.204332+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.410204543209876, 50.03579790722761, 5.410414716049383, 50.036151391585754], "id": "c82894541076b58e4e21d0ead8f067ca", "geometry": {"type": "Polygon", "coordinates": [[[5.410205, 50.036151, 0.0], [5.410205, 50.035798, 0.0], [5.410415, 50.035798, 0.0], [5.410415, 50.036151, 0.0], [5.410205, 50.036151, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[3193.6, 1356.8], [3193.6, 1459.2], [3254.4, 1459.2], [3254.4, 1356.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.41030962962963, "center_latitude": 50.03597464940669, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:28.052924+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.399872888888889, 50.03579790722761, 5.400226864197531, 50.036151391585754], "id": "062fadf7d0fac684619dc47642c5d76c", "geometry": {"type": "Polygon", "coordinates": [[[5.399873, 50.036151, 0.0], [5.399873, 50.035798, 0.0], [5.400227, 50.035798, 0.0], [5.400227, 50.036151, 0.0], [5.399873, 50.036151, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[204.8, 1356.8], [204.8, 1459.2], [307.2, 1459.2], [307.2, 1356.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.40004987654321, "center_latitude": 50.03597464940669, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:27.388031+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.402527703703704, 50.038449039913694, 5.402881679012346, 50.038802524271844], "id": "fd3fd2f91c12b5fcee8cbff840213385", "geometry": {"type": "Polygon", "coordinates": [[[5.402528, 50.038803, 0.0], [5.402528, 50.038449, 0.0], [5.402882, 50.038449, 0.0], [5.402882, 50.038803, 0.0], [5.402528, 50.038803, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[972.8, 588.8], [972.8, 691.2], [1075.2, 691.2], [1075.2, 588.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.402704691358025, "center_latitude": 50.038625782092765, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:25.274712+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.4038551111111115, 50.03447234088457, 5.404209086419753, 50.03482582524271], "id": "67d4dcc4860ad75b55318cf12e0d0595", "geometry": {"type": "Polygon", "coordinates": [[[5.403855, 50.034826, 0.0], [5.403855, 50.034472, 0.0], [5.404209, 50.034472, 0.0], [5.404209, 50.034826, 0.0], [5.403855, 50.034826, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1356.8, 1740.8], [1356.8, 1843.2], [1459.2, 1843.2], [1459.2, 1740.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.404032098765432, "center_latitude": 50.03464908306364, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:28.400238+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.410204543209876, 50.032318295577134, 5.410414716049383, 50.03250608414239], "id": "203f0d12931fa2122d66bdd917df0f7f", "geometry": {"type": "Polygon", "coordinates": [[[5.410205, 50.032506, 0.0], [5.410205, 50.032318, 0.0], [5.410415, 50.032318, 0.0], [5.410415, 50.032506, 0.0], [5.410205, 50.032506, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[3193.6, 2412.8], [3193.6, 2467.2], [3254.4, 2467.2], [3254.4, 2412.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.41030962962963, "center_latitude": 50.032412189859755, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:30.443416+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.407837333333333, 50.03712347357065, 5.4081913086419755, 50.037476957928796], "id": "f813b7a4b668cda953576ce9a3ef87e8", "geometry": {"type": "Polygon", "coordinates": [[[5.407837, 50.037477, 0.0], [5.407837, 50.037123, 0.0], [5.408191, 50.037123, 0.0], [5.408191, 50.037477, 0.0], [5.407837, 50.037477, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2508.8, 972.8], [2508.8, 1075.2], [2611.2, 1075.2], [2611.2, 972.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.408014320987655, "center_latitude": 50.037300215749724, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:27.056739+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.405182518518519, 50.03314677454153, 5.405536493827161, 50.03350025889967], "id": "f29c198301d71b0106a3db8f73a4b756", "geometry": {"type": "Polygon", "coordinates": [[[5.405183, 50.0335, 0.0], [5.405183, 50.033147, 0.0], [5.405536, 50.033147, 0.0], [5.405536, 50.0335, 0.0], [5.405183, 50.0335, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1740.8, 2124.8], [1740.8, 2227.2], [1843.2, 2227.2], [1843.2, 2124.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4053595061728394, "center_latitude": 50.0333235167206, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:29.463143+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.406509925925926, 50.03314677454153, 5.406863901234568, 50.03350025889967], "id": "b57194fbf9b689238f037fa6e296e999", "geometry": {"type": "Polygon", "coordinates": [[[5.40651, 50.0335, 0.0], [5.40651, 50.033147, 0.0], [5.406864, 50.033147, 0.0], [5.406864, 50.0335, 0.0], [5.40651, 50.0335, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2124.8, 2124.8], [2124.8, 2227.2], [2227.2, 2227.2], [2227.2, 2124.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4066869135802476, "center_latitude": 50.0333235167206, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:29.674825+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.399872888888889, 50.039774606256735, 5.400226864197531, 50.040128090614886], "id": "2ad005d3515619fbfe8478ffe0aeb9a9", "geometry": {"type": "Polygon", "coordinates": [[[5.399873, 50.040128, 0.0], [5.399873, 50.039775, 0.0], [5.400227, 50.039775, 0.0], [5.400227, 50.040128, 0.0], [5.399873, 50.040128, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[204.8, 204.8], [204.8, 307.2], [307.2, 307.2], [307.2, 204.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.40004987654321, "center_latitude": 50.039951348435814, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:24.265257+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.407837333333333, 50.038449039913694, 5.4081913086419755, 50.038802524271844], "id": "ec2933f77835f60386adde9ebe61fbb9", "geometry": {"type": "Polygon", "coordinates": [[[5.407837, 50.038803, 0.0], [5.407837, 50.038449, 0.0], [5.408191, 50.038449, 0.0], [5.408191, 50.038803, 0.0], [5.407837, 50.038803, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2508.8, 588.8], [2508.8, 691.2], [2611.2, 691.2], [2611.2, 588.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.408014320987655, "center_latitude": 50.038625782092765, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:25.652570+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.406509925925926, 50.03712347357065, 5.406863901234568, 50.037476957928796], "id": "94ded735c6069b59f17240549f814995", "geometry": {"type": "Polygon", "coordinates": [[[5.40651, 50.037477, 0.0], [5.40651, 50.037123, 0.0], [5.406864, 50.037123, 0.0], [5.406864, 50.037477, 0.0], [5.40651, 50.037477, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2124.8, 972.8], [2124.8, 1075.2], [2227.2, 1075.2], [2227.2, 972.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4066869135802476, "center_latitude": 50.037300215749724, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:26.908985+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.410204543209876, 50.03314677454153, 5.410414716049383, 50.03350025889967], "id": "01c2d8c3b54462e2e25b979e5cf40281", "geometry": {"type": "Polygon", "coordinates": [[[5.410205, 50.0335, 0.0], [5.410205, 50.033147, 0.0], [5.410415, 50.033147, 0.0], [5.410415, 50.0335, 0.0], [5.410205, 50.0335, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[3193.6, 2124.8], [3193.6, 2227.2], [3254.4, 2227.2], [3254.4, 2124.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.41030962962963, "center_latitude": 50.0333235167206, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:29.975237+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.4038551111111115, 50.03712347357065, 5.404209086419753, 50.037476957928796], "id": "9e005199fc454374204cfb24c746b64f", "geometry": {"type": "Polygon", "coordinates": [[[5.403855, 50.037477, 0.0], [5.403855, 50.037123, 0.0], [5.404209, 50.037123, 0.0], [5.404209, 50.037477, 0.0], [5.403855, 50.037477, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1356.8, 972.8], [1356.8, 1075.2], [1459.2, 1075.2], [1459.2, 972.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.404032098765432, "center_latitude": 50.037300215749724, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:26.496794+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.4038551111111115, 50.038449039913694, 5.404209086419753, 50.038802524271844], "id": "1acd96b82fd8261013b58c611c17c1e9", "geometry": {"type": "Polygon", "coordinates": [[[5.403855, 50.038803, 0.0], [5.403855, 50.038449, 0.0], [5.404209, 50.038449, 0.0], [5.404209, 50.038803, 0.0], [5.403855, 50.038803, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1356.8, 588.8], [1356.8, 691.2], [1459.2, 691.2], [1459.2, 588.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.404032098765432, "center_latitude": 50.038625782092765, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:25.350908+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.4038551111111115, 50.032318295577134, 5.404209086419753, 50.03250608414239], "id": "c043ba3bda17f6bffb589682676c47e3", "geometry": {"type": "Polygon", "coordinates": [[[5.403855, 50.032506, 0.0], [5.403855, 50.032318, 0.0], [5.404209, 50.032318, 0.0], [5.404209, 50.032506, 0.0], [5.403855, 50.032506, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1356.8, 2412.8], [1356.8, 2467.2], [1459.2, 2467.2], [1459.2, 2412.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.404032098765432, "center_latitude": 50.032412189859755, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:30.199882+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.401200296296296, 50.03712347357065, 5.401554271604939, 50.037476957928796], "id": "f42cad43a88ac9bb5d2fc8b0699d4f3f", "geometry": {"type": "Polygon", "coordinates": [[[5.4012, 50.037477, 0.0], [5.4012, 50.037123, 0.0], [5.401554, 50.037123, 0.0], [5.401554, 50.037477, 0.0], [5.4012, 50.037477, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[588.8, 972.8], [588.8, 1075.2], [691.2, 1075.2], [691.2, 972.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.401377283950618, "center_latitude": 50.037300215749724, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:26.083219+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.409164740740741, 50.03579790722761, 5.409518716049383, 50.036151391585754], "id": "5ff882ed3f376603204f49e1fa4be2e6", "geometry": {"type": "Polygon", "coordinates": [[[5.409165, 50.036151, 0.0], [5.409165, 50.035798, 0.0], [5.409519, 50.035798, 0.0], [5.409519, 50.036151, 0.0], [5.409165, 50.036151, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2892.8, 1356.8], [2892.8, 1459.2], [2995.2, 1459.2], [2995.2, 1356.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.409341728395062, "center_latitude": 50.03597464940669, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:28.024856+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.4038551111111115, 50.03579790722761, 5.404209086419753, 50.036151391585754], "id": "0f013f045ea9f8ff68b3e9c4dd91c863", "geometry": {"type": "Polygon", "coordinates": [[[5.403855, 50.036151, 0.0], [5.403855, 50.035798, 0.0], [5.404209, 50.035798, 0.0], [5.404209, 50.036151, 0.0], [5.403855, 50.036151, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1356.8, 1356.8], [1356.8, 1459.2], [1459.2, 1459.2], [1459.2, 1356.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.404032098765432, "center_latitude": 50.03597464940669, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:27.661385+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.409164740740741, 50.03447234088457, 5.409518716049383, 50.03482582524271], "id": "21fa3d33e841e06f11cabe7a990b566b", "geometry": {"type": "Polygon", "coordinates": [[[5.409165, 50.034826, 0.0], [5.409165, 50.034472, 0.0], [5.409519, 50.034472, 0.0], [5.409519, 50.034826, 0.0], [5.409165, 50.034826, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2892.8, 1740.8], [2892.8, 1843.2], [2995.2, 1843.2], [2995.2, 1740.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.409341728395062, "center_latitude": 50.03464908306364, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:28.766793+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.405182518518519, 50.038449039913694, 5.405536493827161, 50.038802524271844], "id": "1ae8ce28ed6ff4e46e3f08bf7f816cce", "geometry": {"type": "Polygon", "coordinates": [[[5.405183, 50.038803, 0.0], [5.405183, 50.038449, 0.0], [5.405536, 50.038449, 0.0], [5.405536, 50.038803, 0.0], [5.405183, 50.038803, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1740.8, 588.8], [1740.8, 691.2], [1843.2, 691.2], [1843.2, 588.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4053595061728394, "center_latitude": 50.038625782092765, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:25.425247+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.405182518518519, 50.032318295577134, 5.405536493827161, 50.03250608414239], "id": "324f3d5c25918529c6f2071ac8b471b8", "geometry": {"type": "Polygon", "coordinates": [[[5.405183, 50.032506, 0.0], [5.405183, 50.032318, 0.0], [5.405536, 50.032318, 0.0], [5.405536, 50.032506, 0.0], [5.405183, 50.032506, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1740.8, 2412.8], [1740.8, 2467.2], [1843.2, 2467.2], [1843.2, 2412.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4053595061728394, "center_latitude": 50.032412189859755, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:30.244859+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.402527703703704, 50.03712347357065, 5.402881679012346, 50.037476957928796], "id": "09d7751f5e6320556d1ca99d0aa5914e", "geometry": {"type": "Polygon", "coordinates": [[[5.402528, 50.037477, 0.0], [5.402528, 50.037123, 0.0], [5.402882, 50.037123, 0.0], [5.402882, 50.037477, 0.0], [5.402528, 50.037477, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[972.8, 972.8], [972.8, 1075.2], [1075.2, 1075.2], [1075.2, 972.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.402704691358025, "center_latitude": 50.037300215749724, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:26.364075+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.406509925925926, 50.03447234088457, 5.406863901234568, 50.03482582524271], "id": "af1703d02a8050ffb86b8c1634749ce1", "geometry": {"type": "Polygon", "coordinates": [[[5.40651, 50.034826, 0.0], [5.40651, 50.034472, 0.0], [5.406864, 50.034472, 0.0], [5.406864, 50.034826, 0.0], [5.40651, 50.034826, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2124.8, 1740.8], [2124.8, 1843.2], [2227.2, 1843.2], [2227.2, 1740.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4066869135802476, "center_latitude": 50.03464908306364, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:28.597262+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.407837333333333, 50.03447234088457, 5.4081913086419755, 50.03482582524271], "id": "093fb232fd0e910ddb9820dfe1293905", "geometry": {"type": "Polygon", "coordinates": [[[5.407837, 50.034826, 0.0], [5.407837, 50.034472, 0.0], [5.408191, 50.034472, 0.0], [5.408191, 50.034826, 0.0], [5.407837, 50.034826, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2508.8, 1740.8], [2508.8, 1843.2], [2611.2, 1843.2], [2611.2, 1740.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.408014320987655, "center_latitude": 50.03464908306364, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:28.668536+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.407837333333333, 50.039774606256735, 5.4081913086419755, 50.040128090614886], "id": "bf9abc4a3c1bc96b9f67fbd59b5e96e6", "geometry": {"type": "Polygon", "coordinates": [[[5.407837, 50.040128, 0.0], [5.407837, 50.039775, 0.0], [5.408191, 50.039775, 0.0], [5.408191, 50.040128, 0.0], [5.407837, 50.040128, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2508.8, 204.8], [2508.8, 307.2], [2611.2, 307.2], [2611.2, 204.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.408014320987655, "center_latitude": 50.039951348435814, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:24.877081+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.399872888888889, 50.038449039913694, 5.400226864197531, 50.038802524271844], "id": "df906361ff6acf7be130de92a34e1238", "geometry": {"type": "Polygon", "coordinates": [[[5.399873, 50.038803, 0.0], [5.399873, 50.038449, 0.0], [5.400227, 50.038449, 0.0], [5.400227, 50.038803, 0.0], [5.399873, 50.038803, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[204.8, 588.8], [204.8, 691.2], [307.2, 691.2], [307.2, 588.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.40004987654321, "center_latitude": 50.038625782092765, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:25.052035+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.399872888888889, 50.03447234088457, 5.400226864197531, 50.03482582524271], "id": "f803e20e6549bc4a6923cb1c4502edd6", "geometry": {"type": "Polygon", "coordinates": [[[5.399873, 50.034826, 0.0], [5.399873, 50.034472, 0.0], [5.400227, 50.034472, 0.0], [5.400227, 50.034826, 0.0], [5.399873, 50.034826, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[204.8, 1740.8], [204.8, 1843.2], [307.2, 1843.2], [307.2, 1740.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.40004987654321, "center_latitude": 50.03464908306364, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:28.130059+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.402527703703704, 50.03579790722761, 5.402881679012346, 50.036151391585754], "id": "fdcc6cb6a22a9600bd6634f02fd0a9e0", "geometry": {"type": "Polygon", "coordinates": [[[5.402528, 50.036151, 0.0], [5.402528, 50.035798, 0.0], [5.402882, 50.035798, 0.0], [5.402882, 50.036151, 0.0], [5.402528, 50.036151, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[972.8, 1356.8], [972.8, 1459.2], [1075.2, 1459.2], [1075.2, 1356.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.402704691358025, "center_latitude": 50.03597464940669, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:27.596797+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.406509925925926, 50.032318295577134, 5.406863901234568, 50.03250608414239], "id": "051d51bb5172b19e0ce897ca1e065422", "geometry": {"type": "Polygon", "coordinates": [[[5.40651, 50.032506, 0.0], [5.40651, 50.032318, 0.0], [5.406864, 50.032318, 0.0], [5.406864, 50.032506, 0.0], [5.40651, 50.032506, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2124.8, 2412.8], [2124.8, 2467.2], [2227.2, 2467.2], [2227.2, 2412.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4066869135802476, "center_latitude": 50.032412189859755, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:30.329500+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.409164740740741, 50.039774606256735, 5.409518716049383, 50.040128090614886], "id": "aa438de7bbdf36920b323621f42c2da6", "geometry": {"type": "Polygon", "coordinates": [[[5.409165, 50.040128, 0.0], [5.409165, 50.039775, 0.0], [5.409519, 50.039775, 0.0], [5.409519, 50.040128, 0.0], [5.409165, 50.040128, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2892.8, 204.8], [2892.8, 307.2], [2995.2, 307.2], [2995.2, 204.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.409341728395062, "center_latitude": 50.039951348435814, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:24.978071+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.399872888888889, 50.032318295577134, 5.400226864197531, 50.03250608414239], "id": "f56e28926051db0b2c55e08ec44d8a66", "geometry": {"type": "Polygon", "coordinates": [[[5.399873, 50.032506, 0.0], [5.399873, 50.032318, 0.0], [5.400227, 50.032318, 0.0], [5.400227, 50.032506, 0.0], [5.399873, 50.032506, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[204.8, 2412.8], [204.8, 2467.2], [307.2, 2467.2], [307.2, 2412.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.40004987654321, "center_latitude": 50.032412189859755, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:30.020815+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.4038551111111115, 50.039774606256735, 5.404209086419753, 50.040128090614886], "id": "8b8c4d0e6fcb72c315cf2ff8b9c9ebac", "geometry": {"type": "Polygon", "coordinates": [[[5.403855, 50.040128, 0.0], [5.403855, 50.039775, 0.0], [5.404209, 50.039775, 0.0], [5.404209, 50.040128, 0.0], [5.403855, 50.040128, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1356.8, 204.8], [1356.8, 307.2], [1459.2, 307.2], [1459.2, 204.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.404032098765432, "center_latitude": 50.039951348435814, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:24.563297+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.402527703703704, 50.03447234088457, 5.402881679012346, 50.03482582524271], "id": "1b73a89eb2f4d59ef7046ef89661f26d", "geometry": {"type": "Polygon", "coordinates": [[[5.402528, 50.034826, 0.0], [5.402528, 50.034472, 0.0], [5.402882, 50.034472, 0.0], [5.402882, 50.034826, 0.0], [5.402528, 50.034826, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[972.8, 1740.8], [972.8, 1843.2], [1075.2, 1843.2], [1075.2, 1740.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.402704691358025, "center_latitude": 50.03464908306364, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:28.340398+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.402527703703704, 50.039774606256735, 5.402881679012346, 50.040128090614886], "id": "8665281f73ff148014389d3b70979fec", "geometry": {"type": "Polygon", "coordinates": [[[5.402528, 50.040128, 0.0], [5.402528, 50.039775, 0.0], [5.402882, 50.039775, 0.0], [5.402882, 50.040128, 0.0], [5.402528, 50.040128, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[972.8, 204.8], [972.8, 307.2], [1075.2, 307.2], [1075.2, 204.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.402704691358025, "center_latitude": 50.039951348435814, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:24.494879+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.406509925925926, 50.03579790722761, 5.406863901234568, 50.036151391585754], "id": "65c086e692decbb944d4346f41f66855", "geometry": {"type": "Polygon", "coordinates": [[[5.40651, 50.036151, 0.0], [5.40651, 50.035798, 0.0], [5.406864, 50.035798, 0.0], [5.406864, 50.036151, 0.0], [5.40651, 50.036151, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2124.8, 1356.8], [2124.8, 1459.2], [2227.2, 1459.2], [2227.2, 1356.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4066869135802476, "center_latitude": 50.03597464940669, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:27.853932+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.405182518518519, 50.039774606256735, 5.405536493827161, 50.040128090614886], "id": "e00a65458c162b0be0667b7e34bb8db0", "geometry": {"type": "Polygon", "coordinates": [[[5.405183, 50.040128, 0.0], [5.405183, 50.039775, 0.0], [5.405536, 50.039775, 0.0], [5.405536, 50.040128, 0.0], [5.405183, 50.040128, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1740.8, 204.8], [1740.8, 307.2], [1843.2, 307.2], [1843.2, 204.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4053595061728394, "center_latitude": 50.039951348435814, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:24.648533+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.399872888888889, 50.03712347357065, 5.400226864197531, 50.037476957928796], "id": "2376c30bc87f25e390c2b5b55b18ba26", "geometry": {"type": "Polygon", "coordinates": [[[5.399873, 50.037477, 0.0], [5.399873, 50.037123, 0.0], [5.400227, 50.037123, 0.0], [5.400227, 50.037477, 0.0], [5.399873, 50.037477, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[204.8, 972.8], [204.8, 1075.2], [307.2, 1075.2], [307.2, 972.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.40004987654321, "center_latitude": 50.037300215749724, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:25.936531+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.407837333333333, 50.03579790722761, 5.4081913086419755, 50.036151391585754], "id": "f9d7fc6628c6fab4d84360fcc344e787", "geometry": {"type": "Polygon", "coordinates": [[[5.407837, 50.036151, 0.0], [5.407837, 50.035798, 0.0], [5.408191, 50.035798, 0.0], [5.408191, 50.036151, 0.0], [5.407837, 50.036151, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2508.8, 1356.8], [2508.8, 1459.2], [2611.2, 1459.2], [2611.2, 1356.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.408014320987655, "center_latitude": 50.03597464940669, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:27.926179+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.401200296296296, 50.038449039913694, 5.401554271604939, 50.038802524271844], "id": "6643745cbf1917e52678dd497a1537ca", "geometry": {"type": "Polygon", "coordinates": [[[5.4012, 50.038803, 0.0], [5.4012, 50.038449, 0.0], [5.401554, 50.038449, 0.0], [5.401554, 50.038803, 0.0], [5.4012, 50.038803, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[588.8, 588.8], [588.8, 691.2], [691.2, 691.2], [691.2, 588.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.401377283950618, "center_latitude": 50.038625782092765, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:25.127376+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.399872888888889, 50.03314677454153, 5.400226864197531, 50.03350025889967], "id": "cfc2f855f533066444423a7ff004acec", "geometry": {"type": "Polygon", "coordinates": [[[5.399873, 50.0335, 0.0], [5.399873, 50.033147, 0.0], [5.400227, 50.033147, 0.0], [5.400227, 50.0335, 0.0], [5.399873, 50.0335, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[204.8, 2124.8], [204.8, 2227.2], [307.2, 2227.2], [307.2, 2124.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.40004987654321, "center_latitude": 50.0333235167206, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:28.913332+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.405182518518519, 50.03712347357065, 5.405536493827161, 50.037476957928796], "id": "36240253f7dab902eff8a3063d0cf4f5", "geometry": {"type": "Polygon", "coordinates": [[[5.405183, 50.037477, 0.0], [5.405183, 50.037123, 0.0], [5.405536, 50.037123, 0.0], [5.405536, 50.037477, 0.0], [5.405183, 50.037477, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1740.8, 972.8], [1740.8, 1075.2], [1843.2, 1075.2], [1843.2, 972.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4053595061728394, "center_latitude": 50.037300215749724, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:26.633962+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.406509925925926, 50.039774606256735, 5.406863901234568, 50.040128090614886], "id": "c5b446f8592a0cac947a4473282c8634", "geometry": {"type": "Polygon", "coordinates": [[[5.40651, 50.040128, 0.0], [5.40651, 50.039775, 0.0], [5.406864, 50.039775, 0.0], [5.406864, 50.040128, 0.0], [5.40651, 50.040128, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2124.8, 204.8], [2124.8, 307.2], [2227.2, 307.2], [2227.2, 204.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4066869135802476, "center_latitude": 50.039951348435814, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:24.790981+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.407837333333333, 50.03314677454153, 5.4081913086419755, 50.03350025889967], "id": "8a46fb2418a57c78f4e13300ab1b9ae8", "geometry": {"type": "Polygon", "coordinates": [[[5.407837, 50.0335, 0.0], [5.407837, 50.033147, 0.0], [5.408191, 50.033147, 0.0], [5.408191, 50.0335, 0.0], [5.407837, 50.0335, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2508.8, 2124.8], [2508.8, 2227.2], [2611.2, 2227.2], [2611.2, 2124.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.408014320987655, "center_latitude": 50.0333235167206, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:29.782862+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.401200296296296, 50.03314677454153, 5.401554271604939, 50.03350025889967], "id": "2505348fcc58a2e8d55abf4a060ab045", "geometry": {"type": "Polygon", "coordinates": [[[5.4012, 50.0335, 0.0], [5.4012, 50.033147, 0.0], [5.401554, 50.033147, 0.0], [5.401554, 50.0335, 0.0], [5.4012, 50.0335, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[588.8, 2124.8], [588.8, 2227.2], [691.2, 2227.2], [691.2, 2124.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.401377283950618, "center_latitude": 50.0333235167206, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:29.031372+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.410204543209876, 50.03712347357065, 5.410414716049383, 50.037476957928796], "id": "8e2fa5c6a2874893b51fdfdbc72fccea", "geometry": {"type": "Polygon", "coordinates": [[[5.410205, 50.037477, 0.0], [5.410205, 50.037123, 0.0], [5.410415, 50.037123, 0.0], [5.410415, 50.037477, 0.0], [5.410205, 50.037477, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[3193.6, 972.8], [3193.6, 1075.2], [3254.4, 1075.2], [3254.4, 972.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.41030962962963, "center_latitude": 50.037300215749724, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:27.312928+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.405182518518519, 50.03447234088457, 5.405536493827161, 50.03482582524271], "id": "6326f30d6b7de4e7020e25f49b796f4b", "geometry": {"type": "Polygon", "coordinates": [[[5.405183, 50.034826, 0.0], [5.405183, 50.034472, 0.0], [5.405536, 50.034472, 0.0], [5.405536, 50.034826, 0.0], [5.405183, 50.034826, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1740.8, 1740.8], [1740.8, 1843.2], [1843.2, 1843.2], [1843.2, 1740.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4053595061728394, "center_latitude": 50.03464908306364, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:28.465306+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.409164740740741, 50.032318295577134, 5.409518716049383, 50.03250608414239], "id": "bd3e9cd005e204b714b447655bba7122", "geometry": {"type": "Polygon", "coordinates": [[[5.409165, 50.032506, 0.0], [5.409165, 50.032318, 0.0], [5.409519, 50.032318, 0.0], [5.409519, 50.032506, 0.0], [5.409165, 50.032506, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2892.8, 2412.8], [2892.8, 2467.2], [2995.2, 2467.2], [2995.2, 2412.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.409341728395062, "center_latitude": 50.032412189859755, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:30.425249+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.409164740740741, 50.03712347357065, 5.409518716049383, 50.037476957928796], "id": "e6acb23682d7fc16292bcf623845e077", "geometry": {"type": "Polygon", "coordinates": [[[5.409165, 50.037477, 0.0], [5.409165, 50.037123, 0.0], [5.409519, 50.037123, 0.0], [5.409519, 50.037477, 0.0], [5.409165, 50.037477, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2892.8, 972.8], [2892.8, 1075.2], [2995.2, 1075.2], [2995.2, 972.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.409341728395062, "center_latitude": 50.037300215749724, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:27.257500+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.401200296296296, 50.032318295577134, 5.401554271604939, 50.03250608414239], "id": "103752ac921d7eaa34639cc500f43956", "geometry": {"type": "Polygon", "coordinates": [[[5.4012, 50.032506, 0.0], [5.4012, 50.032318, 0.0], [5.401554, 50.032318, 0.0], [5.401554, 50.032506, 0.0], [5.4012, 50.032506, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[588.8, 2412.8], [588.8, 2467.2], [691.2, 2467.2], [691.2, 2412.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.401377283950618, "center_latitude": 50.032412189859755, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:30.064413+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.402527703703704, 50.03314677454153, 5.402881679012346, 50.03350025889967], "id": "825ea97cb2d02afd2d3d2c5ef296da99", "geometry": {"type": "Polygon", "coordinates": [[[5.402528, 50.0335, 0.0], [5.402528, 50.033147, 0.0], [5.402882, 50.033147, 0.0], [5.402882, 50.0335, 0.0], [5.402528, 50.0335, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[972.8, 2124.8], [972.8, 2227.2], [1075.2, 2227.2], [1075.2, 2124.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.402704691358025, "center_latitude": 50.0333235167206, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:29.249660+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.409164740740741, 50.038449039913694, 5.409518716049383, 50.038802524271844], "id": "9491c470861a266b5d014242c4af94be", "geometry": {"type": "Polygon", "coordinates": [[[5.409165, 50.038803, 0.0], [5.409165, 50.038449, 0.0], [5.409519, 50.038449, 0.0], [5.409519, 50.038803, 0.0], [5.409165, 50.038803, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[2892.8, 588.8], [2892.8, 691.2], [2995.2, 691.2], [2995.2, 588.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.409341728395062, "center_latitude": 50.038625782092765, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:25.759405+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.402527703703704, 50.032318295577134, 5.402881679012346, 50.03250608414239], "id": "f3e5670f80c3fa83930ca0e635447164", "geometry": {"type": "Polygon", "coordinates": [[[5.402528, 50.032506, 0.0], [5.402528, 50.032318, 0.0], [5.402882, 50.032318, 0.0], [5.402882, 50.032506, 0.0], [5.402528, 50.032506, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[972.8, 2412.8], [972.8, 2467.2], [1075.2, 2467.2], [1075.2, 2412.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.402704691358025, "center_latitude": 50.032412189859755, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:30.153640+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.4038551111111115, 50.03314677454153, 5.404209086419753, 50.03350025889967], "id": "5a278e191671f0912bbe1750c66a8a87", "geometry": {"type": "Polygon", "coordinates": [[[5.403855, 50.0335, 0.0], [5.403855, 50.033147, 0.0], [5.404209, 50.033147, 0.0], [5.404209, 50.0335, 0.0], [5.403855, 50.0335, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1356.8, 2124.8], [1356.8, 2227.2], [1459.2, 2227.2], [1459.2, 2124.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.404032098765432, "center_latitude": 50.0333235167206, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:29.357351+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.401200296296296, 50.039774606256735, 5.401554271604939, 50.040128090614886], "id": "4ee335c93b0ebe43b6ea4a46899a803d", "geometry": {"type": "Polygon", "coordinates": [[[5.4012, 50.040128, 0.0], [5.4012, 50.039775, 0.0], [5.401554, 50.039775, 0.0], [5.401554, 50.040128, 0.0], [5.4012, 50.040128, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[588.8, 204.8], [588.8, 307.2], [691.2, 307.2], [691.2, 204.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.401377283950618, "center_latitude": 50.039951348435814, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:24.350353+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.401200296296296, 50.03579790722761, 5.401554271604939, 50.036151391585754], "id": "dc791d64c72e0e48e6057b7d0f55805e", "geometry": {"type": "Polygon", "coordinates": [[[5.4012, 50.036151, 0.0], [5.4012, 50.035798, 0.0], [5.401554, 50.035798, 0.0], [5.401554, 50.036151, 0.0], [5.4012, 50.036151, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[588.8, 1356.8], [588.8, 1459.2], [691.2, 1459.2], [691.2, 1356.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.401377283950618, "center_latitude": 50.03597464940669, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:27.463095+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.405182518518519, 50.03579790722761, 5.405536493827161, 50.036151391585754], "id": "f2e291192c72b87fdb61e86e47f69a46", "geometry": {"type": "Polygon", "coordinates": [[[5.405183, 50.036151, 0.0], [5.405183, 50.035798, 0.0], [5.405536, 50.035798, 0.0], [5.405536, 50.036151, 0.0], [5.405183, 50.036151, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[1740.8, 1356.8], [1740.8, 1459.2], [1843.2, 1459.2], [1843.2, 1356.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.4053595061728394, "center_latitude": 50.03597464940669, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:27.721558+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}, {"type": "Feature", "bbox": [5.410204543209876, 50.038449039913694, 5.410414716049383, 50.038802524271844], "id": "67cbf7267e8cf9973347c65d2f6d73de", "geometry": {"type": "Polygon", "coordinates": [[[5.410205, 50.038803, 0.0], [5.410205, 50.038449, 0.0], [5.410415, 50.038449, 0.0], [5.410415, 50.038803, 0.0], [5.410205, 50.038803, 0.0]]]}, "properties": {"detection": {"type": "Polygon", "pixelCoordinates": [[3193.6, 588.8], [3193.6, 691.2], [3254.4, 691.2], [3254.4, 588.8]], "ontology": [{"iri": "sample_object", "detectionScore": 1.0}], "coordinates": []}, "center_longitude": 5.41030962962963, "center_latitude": 50.038625782092765, "inferenceMetadata": {"jobId": "7fcb43e5-7e0e-483c-9c37-878fb280434c", "filePath": "s3://test-images-409719124294/wibd.ntf", "receiveTime": "2023-11-10T03:01:23.526073", "inferenceTime": "2023-11-10T03:01:25.787725+00:00", "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"}, "source": [{"fileType": "NITF", "info": {"imageCategory": "VIS", "metadata": {"sourceId": "", "sourceDt": "2002-12-16T15:16:29", "classification": "UNCLASSIFIED"}}}]}}]}
diff --git a/src/data/centerpoint_http.small.tif.geojson b/src/data/centerpoint_http.small.tif.geojson
new file mode 100644
index 0000000..b7b67cb
--- /dev/null
+++ b/src/data/centerpoint_http.small.tif.geojson
@@ -0,0 +1,4541 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4014160086272085,
+ 50.03656595014293,
+ 5.40177016044482,
+ 50.03692010196055
+ ],
+ "id": "8d14dc968dfdcb9e517acc90fd1bcda5",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.401416,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.03692,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 1164.8
+ ],
+ [
+ 684.8,
+ 1267.2
+ ],
+ [
+ 787.2,
+ 1267.2
+ ],
+ [
+ 787.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.401593084536014,
+ "center_latitude": 50.03674302605173,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.552804+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4030760952722625,
+ 50.03291375952381,
+ 5.403430247089872,
+ 50.033267911341426
+ ],
+ "id": "e4917322ca069a1fc518feef4d93424d",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.403076,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.033268,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 2220.8
+ ],
+ [
+ 1164.8,
+ 2323.2
+ ],
+ [
+ 1267.2,
+ 2323.2
+ ],
+ [
+ 1267.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.403253171181067,
+ "center_latitude": 50.03309083543262,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:40.064628+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4030760952722625,
+ 50.03404261844245,
+ 5.403430247089872,
+ 50.03413115639685
+ ],
+ "id": "1491d4cdbb5c322912f166e3b154503e",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.403076,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.034131,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 1971.2
+ ],
+ [
+ 1164.8,
+ 1996.8
+ ],
+ [
+ 1267.2,
+ 1996.8
+ ],
+ [
+ 1267.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.403253171181067,
+ "center_latitude": 50.03408688741965,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.723430+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.409893517761279,
+ 50.034905863497876,
+ 5.410170198868787,
+ 50.03526001531549
+ ],
+ "id": "a581a9e6c9f4447663eef6bacd24adab",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.409894,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.03526,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3136,
+ 1644.8
+ ],
+ [
+ 3136,
+ 1747.2
+ ],
+ [
+ 3216,
+ 1747.2
+ ],
+ [
+ 3216,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.410031858315033,
+ "center_latitude": 50.03508293940668,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.986528+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.404736181917315,
+ 50.039886123433035,
+ 5.405090333734925,
+ 50.040240275250646
+ ],
+ "id": "53ee8d0c655fc5cecb8ac1f3148c99c1",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.404736,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.04024,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 204.8
+ ],
+ [
+ 1644.8,
+ 307.2
+ ],
+ [
+ 1747.2,
+ 307.2
+ ],
+ [
+ 1747.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.40491325782612,
+ "center_latitude": 50.04006319934184,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.412693+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4030760952722625,
+ 50.034905863497876,
+ 5.403430247089872,
+ 50.03526001531549
+ ],
+ "id": "0f35275466413f3a4494f608cbded6a3",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.403076,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.03526,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 1644.8
+ ],
+ [
+ 1164.8,
+ 1747.2
+ ],
+ [
+ 1267.2,
+ 1747.2
+ ],
+ [
+ 1267.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.403253171181067,
+ "center_latitude": 50.03508293940668,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.676629+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.409893517761279,
+ 50.039886123433035,
+ 5.410170198868787,
+ 50.040240275250646
+ ],
+ "id": "f09b8182b240c9c87680283826644f8a",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.409894,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.04024,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3136,
+ 204.8
+ ],
+ [
+ 3136,
+ 307.2
+ ],
+ [
+ 3216,
+ 307.2
+ ],
+ [
+ 3216,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.410031858315033,
+ "center_latitude": 50.04006319934184,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.690029+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.406728285891377,
+ 50.03822603678798,
+ 5.407082437708989,
+ 50.03858018860559
+ ],
+ "id": "a350e311db3cbafe062814e48ee154f4",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.406728,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.03858,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 684.8
+ ],
+ [
+ 2220.8,
+ 787.2
+ ],
+ [
+ 2323.2,
+ 787.2
+ ],
+ [
+ 2323.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.406905361800184,
+ "center_latitude": 50.038403112696784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.747327+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.40586504083595,
+ 50.03822603678798,
+ 5.405953578790353,
+ 50.03858018860559
+ ],
+ "id": "678080f3654fae062182d9b764df237d",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.405865,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.03858,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 684.8
+ ],
+ [
+ 1971.2,
+ 787.2
+ ],
+ [
+ 1996.8,
+ 787.2
+ ],
+ [
+ 1996.8,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.405909309813151,
+ "center_latitude": 50.038403112696784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.496015+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.404736181917315,
+ 50.03291375952381,
+ 5.405090333734925,
+ 50.033267911341426
+ ],
+ "id": "89057484953242879830b6409d2e3504",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.404736,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.033268,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 2220.8
+ ],
+ [
+ 1644.8,
+ 2323.2
+ ],
+ [
+ 1747.2,
+ 2323.2
+ ],
+ [
+ 1747.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.40491325782612,
+ "center_latitude": 50.03309083543262,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:40.068275+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.404736181917315,
+ 50.03404261844245,
+ 5.405090333734925,
+ 50.03413115639685
+ ],
+ "id": "5d616f3440dbab0bc4989106507bdadd",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.404736,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.034131,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 1971.2
+ ],
+ [
+ 1644.8,
+ 1996.8
+ ],
+ [
+ 1747.2,
+ 1996.8
+ ],
+ [
+ 1747.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.40491325782612,
+ "center_latitude": 50.03408688741965,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.730246+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4014160086272085,
+ 50.03822603678798,
+ 5.40177016044482,
+ 50.03858018860559
+ ],
+ "id": "30a06eb7eefe6383d31cdd62c2aed154",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.401416,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.03858,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 684.8
+ ],
+ [
+ 684.8,
+ 787.2
+ ],
+ [
+ 787.2,
+ 787.2
+ ],
+ [
+ 787.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.401593084536014,
+ "center_latitude": 50.038403112696784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.483250+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4014160086272085,
+ 50.039886123433035,
+ 5.40177016044482,
+ 50.040240275250646
+ ],
+ "id": "d5095a1cfdea5b77cd92b5ef9ee0983a",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.401416,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.04024,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 204.8
+ ],
+ [
+ 684.8,
+ 307.2
+ ],
+ [
+ 787.2,
+ 307.2
+ ],
+ [
+ 787.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.401593084536014,
+ "center_latitude": 50.04006319934184,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.386678+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.40586504083595,
+ 50.039886123433035,
+ 5.405953578790353,
+ 50.040240275250646
+ ],
+ "id": "86c21c5c925c6bd7c588452d268f8727",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.405865,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.04024,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 204.8
+ ],
+ [
+ 1971.2,
+ 307.2
+ ],
+ [
+ 1996.8,
+ 307.2
+ ],
+ [
+ 1996.8,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.405909309813151,
+ "center_latitude": 50.04006319934184,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.424876+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.406728285891377,
+ 50.039886123433035,
+ 5.407082437708989,
+ 50.040240275250646
+ ],
+ "id": "cb3848f243bde35bd35fb0ce5d9e1644",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.406728,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.04024,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 204.8
+ ],
+ [
+ 2220.8,
+ 307.2
+ ],
+ [
+ 2323.2,
+ 307.2
+ ],
+ [
+ 2323.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.406905361800184,
+ "center_latitude": 50.04006319934184,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.659945+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.399755921982155,
+ 50.03404261844245,
+ 5.400110073799767,
+ 50.03413115639685
+ ],
+ "id": "71dcba6aa16f1bbcb735bd8e4e58d3e0",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.399756,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.034131,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 1971.2
+ ],
+ [
+ 204.8,
+ 1996.8
+ ],
+ [
+ 307.2,
+ 1996.8
+ ],
+ [
+ 307.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.399932997890962,
+ "center_latitude": 50.03408688741965,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.706015+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.399755921982155,
+ 50.03291375952381,
+ 5.400110073799767,
+ 50.033267911341426
+ ],
+ "id": "cba4ff50b2f8f2fec401ca3cb641d690",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.399756,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.033268,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 2220.8
+ ],
+ [
+ 204.8,
+ 2323.2
+ ],
+ [
+ 307.2,
+ 2323.2
+ ],
+ [
+ 307.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.399932997890962,
+ "center_latitude": 50.03309083543262,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:40.011919+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.409893517761279,
+ 50.03404261844245,
+ 5.410170198868787,
+ 50.03413115639685
+ ],
+ "id": "ed515ff8a7aebe578790bfe5a923614e",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.409894,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.034131,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3136,
+ 1971.2
+ ],
+ [
+ 3136,
+ 1996.8
+ ],
+ [
+ 3216,
+ 1996.8
+ ],
+ [
+ 3216,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.410031858315033,
+ "center_latitude": 50.03408688741965,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:40.006641+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.409893517761279,
+ 50.03291375952381,
+ 5.410170198868787,
+ 50.033267911341426
+ ],
+ "id": "68488e2fded99a0dfa74f209e0ecaf6d",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.409894,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.033268,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3136,
+ 2220.8
+ ],
+ [
+ 3136,
+ 2323.2
+ ],
+ [
+ 3216,
+ 2323.2
+ ],
+ [
+ 3216,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.410031858315033,
+ "center_latitude": 50.03309083543262,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.896666+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4014160086272085,
+ 50.03215011966709,
+ 5.40177016044482,
+ 50.03220545588859
+ ],
+ "id": "2e7e606ae3cb96c71397cbded2e96ac4",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.401416,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.032205,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 2528
+ ],
+ [
+ 684.8,
+ 2544
+ ],
+ [
+ 787.2,
+ 2544
+ ],
+ [
+ 787.2,
+ 2528
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.401593084536014,
+ "center_latitude": 50.03217778777784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:40.100033+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.408388372536431,
+ 50.03215011966709,
+ 5.408742524354042,
+ 50.03220545588859
+ ],
+ "id": "53ce1240bde42da40a31e18be4a99827",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.408388,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.032205,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 2528
+ ],
+ [
+ 2700.8,
+ 2544
+ ],
+ [
+ 2803.2,
+ 2544
+ ],
+ [
+ 2803.2,
+ 2528
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.408565448445236,
+ "center_latitude": 50.03217778777784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.921558+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.404736181917315,
+ 50.03215011966709,
+ 5.405090333734925,
+ 50.03220545588859
+ ],
+ "id": "dca815e02915d21a42769a5fadae3ac9",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.404736,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.032205,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 2528
+ ],
+ [
+ 1644.8,
+ 2544
+ ],
+ [
+ 1747.2,
+ 2544
+ ],
+ [
+ 1747.2,
+ 2528
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.40491325782612,
+ "center_latitude": 50.03217778777784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:40.118665+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.406728285891377,
+ 50.03215011966709,
+ 5.407082437708989,
+ 50.03220545588859
+ ],
+ "id": "46c1b683ed6e8567f7693ba7b41bb7d8",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.406728,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.032205,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 2528
+ ],
+ [
+ 2220.8,
+ 2544
+ ],
+ [
+ 2323.2,
+ 2544
+ ],
+ [
+ 2323.2,
+ 2528
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.406905361800184,
+ "center_latitude": 50.03217778777784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.891177+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.40586504083595,
+ 50.03215011966709,
+ 5.405953578790353,
+ 50.03220545588859
+ ],
+ "id": "af136ed3b5634d39696630878effcc43",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.405865,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.032205,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 2528
+ ],
+ [
+ 1971.2,
+ 2544
+ ],
+ [
+ 1996.8,
+ 2544
+ ],
+ [
+ 1996.8,
+ 2528
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.405909309813151,
+ "center_latitude": 50.03217778777784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:40.116335+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.40586504083595,
+ 50.03291375952381,
+ 5.405953578790353,
+ 50.033267911341426
+ ],
+ "id": "c220908a4f2ed66553a022879b8e5b61",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.405865,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.033268,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 2220.8
+ ],
+ [
+ 1971.2,
+ 2323.2
+ ],
+ [
+ 1996.8,
+ 2323.2
+ ],
+ [
+ 1996.8,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.405909309813151,
+ "center_latitude": 50.03309083543262,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:40.084782+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.40586504083595,
+ 50.03404261844245,
+ 5.405953578790353,
+ 50.03413115639685
+ ],
+ "id": "9c26be5af7eaa8af1c3f4b350c314c98",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.405865,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.034131,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 1971.2
+ ],
+ [
+ 1971.2,
+ 1996.8
+ ],
+ [
+ 1996.8,
+ 1996.8
+ ],
+ [
+ 1996.8,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.405909309813151,
+ "center_latitude": 50.03408688741965,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.733404+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.406728285891377,
+ 50.03404261844245,
+ 5.407082437708989,
+ 50.03413115639685
+ ],
+ "id": "a4b632106e034c563bf4513c0d679e0b",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.406728,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.034131,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 1971.2
+ ],
+ [
+ 2220.8,
+ 1996.8
+ ],
+ [
+ 2323.2,
+ 1996.8
+ ],
+ [
+ 2323.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.406905361800184,
+ "center_latitude": 50.03408688741965,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.986642+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.406728285891377,
+ 50.03291375952381,
+ 5.407082437708989,
+ 50.033267911341426
+ ],
+ "id": "aa99d6c33b3564da6b6007f771e66e02",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.406728,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.033268,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 2220.8
+ ],
+ [
+ 2220.8,
+ 2323.2
+ ],
+ [
+ 2323.2,
+ 2323.2
+ ],
+ [
+ 2323.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.406905361800184,
+ "center_latitude": 50.03309083543262,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.851533+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.40586504083595,
+ 50.03656595014293,
+ 5.405953578790353,
+ 50.03692010196055
+ ],
+ "id": "6e3636cdcfb76ef5ad5a36587b11e304",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.405865,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.03692,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 1164.8
+ ],
+ [
+ 1971.2,
+ 1267.2
+ ],
+ [
+ 1996.8,
+ 1267.2
+ ],
+ [
+ 1996.8,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.405909309813151,
+ "center_latitude": 50.03674302605173,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.599607+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.409893517761279,
+ 50.03656595014293,
+ 5.410170198868787,
+ 50.03692010196055
+ ],
+ "id": "3c356db1b86d7c88d3204f8f64d32964",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.409894,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.03692,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3136,
+ 1164.8
+ ],
+ [
+ 3136,
+ 1267.2
+ ],
+ [
+ 3216,
+ 1267.2
+ ],
+ [
+ 3216,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.410031858315033,
+ "center_latitude": 50.03674302605173,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.916155+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.399755921982155,
+ 50.034905863497876,
+ 5.400110073799767,
+ 50.03526001531549
+ ],
+ "id": "b7db61bfa4725001b11f2f176a845b72",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.399756,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.03526,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 1644.8
+ ],
+ [
+ 204.8,
+ 1747.2
+ ],
+ [
+ 307.2,
+ 1747.2
+ ],
+ [
+ 307.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.399932997890962,
+ "center_latitude": 50.03508293940668,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.633413+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4030760952722625,
+ 50.03822603678798,
+ 5.403430247089872,
+ 50.03858018860559
+ ],
+ "id": "23dbabb43a9f38bacea0ca8fd2bbb51c",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.403076,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.03858,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 684.8
+ ],
+ [
+ 1164.8,
+ 787.2
+ ],
+ [
+ 1267.2,
+ 787.2
+ ],
+ [
+ 1267.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.403253171181067,
+ "center_latitude": 50.038403112696784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.489772+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4030760952722625,
+ 50.03215011966709,
+ 5.403430247089872,
+ 50.03220545588859
+ ],
+ "id": "6030ca3968e8fde9be5288dc3b77871d",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.403076,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.032205,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 2528
+ ],
+ [
+ 1164.8,
+ 2544
+ ],
+ [
+ 1267.2,
+ 2544
+ ],
+ [
+ 1267.2,
+ 2528
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.403253171181067,
+ "center_latitude": 50.03217778777784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:40.102265+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.404736181917315,
+ 50.03822603678798,
+ 5.405090333734925,
+ 50.03858018860559
+ ],
+ "id": "948cbb66415e123c8300782335fe8f32",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.404736,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.03858,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 684.8
+ ],
+ [
+ 1644.8,
+ 787.2
+ ],
+ [
+ 1747.2,
+ 787.2
+ ],
+ [
+ 1747.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.40491325782612,
+ "center_latitude": 50.038403112696784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.493820+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.408388372536431,
+ 50.034905863497876,
+ 5.408742524354042,
+ 50.03526001531549
+ ],
+ "id": "7bc4c4bcbaac5ff7321c90ba5c09a3c6",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.408388,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.03526,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 1644.8
+ ],
+ [
+ 2700.8,
+ 1747.2
+ ],
+ [
+ 2803.2,
+ 1747.2
+ ],
+ [
+ 2803.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.408565448445236,
+ "center_latitude": 50.03508293940668,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.961804+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.399755921982155,
+ 50.039886123433035,
+ 5.400110073799767,
+ 50.040240275250646
+ ],
+ "id": "353e574ce77881254334064f40ac6abc",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.399756,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.04024,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 204.8
+ ],
+ [
+ 204.8,
+ 307.2
+ ],
+ [
+ 307.2,
+ 307.2
+ ],
+ [
+ 307.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.399932997890962,
+ "center_latitude": 50.04006319934184,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.352461+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.409893517761279,
+ 50.03822603678798,
+ 5.410170198868787,
+ 50.03858018860559
+ ],
+ "id": "77793fcb331221b8883437c9abaa22bb",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.409894,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.03858,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3136,
+ 684.8
+ ],
+ [
+ 3136,
+ 787.2
+ ],
+ [
+ 3216,
+ 787.2
+ ],
+ [
+ 3216,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.410031858315033,
+ "center_latitude": 50.038403112696784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.747454+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.408388372536431,
+ 50.039886123433035,
+ 5.408742524354042,
+ 50.040240275250646
+ ],
+ "id": "fc20a879ba92fe9d8744d094ff918f39",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.408388,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.04024,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 204.8
+ ],
+ [
+ 2700.8,
+ 307.2
+ ],
+ [
+ 2803.2,
+ 307.2
+ ],
+ [
+ 2803.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.408565448445236,
+ "center_latitude": 50.04006319934184,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.667517+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.409893517761279,
+ 50.03215011966709,
+ 5.410170198868787,
+ 50.03220545588859
+ ],
+ "id": "89fc7746487a60f2381685b18ea7faff",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.409894,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.41017,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.409894,
+ 50.032205,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 3136,
+ 2528
+ ],
+ [
+ 3136,
+ 2544
+ ],
+ [
+ 3216,
+ 2544
+ ],
+ [
+ 3216,
+ 2528
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.410031858315033,
+ "center_latitude": 50.03217778777784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.924266+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.399755921982155,
+ 50.03822603678798,
+ 5.400110073799767,
+ 50.03858018860559
+ ],
+ "id": "75ca86928eea012a06c4d1146e8d6fc0",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.399756,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.03858,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 684.8
+ ],
+ [
+ 204.8,
+ 787.2
+ ],
+ [
+ 307.2,
+ 787.2
+ ],
+ [
+ 307.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.399932997890962,
+ "center_latitude": 50.038403112696784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.456273+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.399755921982155,
+ 50.03656595014293,
+ 5.400110073799767,
+ 50.03692010196055
+ ],
+ "id": "ce6c9eb448e6ea83bcfae466309953fc",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.399756,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.03692,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 1164.8
+ ],
+ [
+ 204.8,
+ 1267.2
+ ],
+ [
+ 307.2,
+ 1267.2
+ ],
+ [
+ 307.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.399932997890962,
+ "center_latitude": 50.03674302605173,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.529375+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.399755921982155,
+ 50.03215011966709,
+ 5.400110073799767,
+ 50.03220545588859
+ ],
+ "id": "aadab2423f3914bba677d961164ae633",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.399756,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.03215,
+ 0
+ ],
+ [
+ 5.40011,
+ 50.032205,
+ 0
+ ],
+ [
+ 5.399756,
+ 50.032205,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 204.8,
+ 2528
+ ],
+ [
+ 204.8,
+ 2544
+ ],
+ [
+ 307.2,
+ 2544
+ ],
+ [
+ 307.2,
+ 2528
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.399932997890962,
+ "center_latitude": 50.03217778777784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:40.096158+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4030760952722625,
+ 50.03656595014293,
+ 5.403430247089872,
+ 50.03692010196055
+ ],
+ "id": "eba386b93cd4658c20d09c3b509ac5d7",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.403076,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.03692,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 1164.8
+ ],
+ [
+ 1164.8,
+ 1267.2
+ ],
+ [
+ 1267.2,
+ 1267.2
+ ],
+ [
+ 1267.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.403253171181067,
+ "center_latitude": 50.03674302605173,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.570092+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.406728285891377,
+ 50.03656595014293,
+ 5.407082437708989,
+ 50.03692010196055
+ ],
+ "id": "e42ec37f1fad343692ec128b7186da2d",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.406728,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.03692,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 1164.8
+ ],
+ [
+ 2220.8,
+ 1267.2
+ ],
+ [
+ 2323.2,
+ 1267.2
+ ],
+ [
+ 2323.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.406905361800184,
+ "center_latitude": 50.03674302605173,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.870712+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.408388372536431,
+ 50.03404261844245,
+ 5.408742524354042,
+ 50.03413115639685
+ ],
+ "id": "514598da6007828a258d26f3976952ed",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.408388,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.034131,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 1971.2
+ ],
+ [
+ 2700.8,
+ 1996.8
+ ],
+ [
+ 2803.2,
+ 1996.8
+ ],
+ [
+ 2803.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.408565448445236,
+ "center_latitude": 50.03408688741965,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.992740+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.408388372536431,
+ 50.03291375952381,
+ 5.408742524354042,
+ 50.033267911341426
+ ],
+ "id": "dd92a82fac751a3f8634f1c027e6c7e1",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.408388,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.033268,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 2220.8
+ ],
+ [
+ 2700.8,
+ 2323.2
+ ],
+ [
+ 2803.2,
+ 2323.2
+ ],
+ [
+ 2803.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.408565448445236,
+ "center_latitude": 50.03309083543262,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.902984+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.406728285891377,
+ 50.034905863497876,
+ 5.407082437708989,
+ 50.03526001531549
+ ],
+ "id": "7e1c88f96ef5fc05a70edeb344e82eb6",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.406728,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.407082,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.406728,
+ 50.03526,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2220.8,
+ 1644.8
+ ],
+ [
+ 2220.8,
+ 1747.2
+ ],
+ [
+ 2323.2,
+ 1747.2
+ ],
+ [
+ 2323.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.406905361800184,
+ "center_latitude": 50.03508293940668,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.951556+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.40586504083595,
+ 50.034905863497876,
+ 5.405953578790353,
+ 50.03526001531549
+ ],
+ "id": "c6d0bb70cdb63a76f1e16e5b1b9191f8",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.405865,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.405954,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.405865,
+ 50.03526,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1971.2,
+ 1644.8
+ ],
+ [
+ 1971.2,
+ 1747.2
+ ],
+ [
+ 1996.8,
+ 1747.2
+ ],
+ [
+ 1996.8,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.405909309813151,
+ "center_latitude": 50.03508293940668,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.700599+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.408388372536431,
+ 50.03822603678798,
+ 5.408742524354042,
+ 50.03858018860559
+ ],
+ "id": "766e2702f244a32ae12f04e0dbeeec91",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.408388,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.038226,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.03858,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.03858,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 684.8
+ ],
+ [
+ 2700.8,
+ 787.2
+ ],
+ [
+ 2803.2,
+ 787.2
+ ],
+ [
+ 2803.2,
+ 684.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.408565448445236,
+ "center_latitude": 50.038403112696784,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.753867+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.408388372536431,
+ 50.03656595014293,
+ 5.408742524354042,
+ 50.03692010196055
+ ],
+ "id": "5bab37c8488d68cb58bd1a62c6bd5162",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.408388,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.408743,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.408388,
+ 50.03692,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 2700.8,
+ 1164.8
+ ],
+ [
+ 2700.8,
+ 1267.2
+ ],
+ [
+ 2803.2,
+ 1267.2
+ ],
+ [
+ 2803.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.408565448445236,
+ "center_latitude": 50.03674302605173,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.902256+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.404736181917315,
+ 50.03656595014293,
+ 5.405090333734925,
+ 50.03692010196055
+ ],
+ "id": "0c59fb25628f63c173fab6295351d19c",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.404736,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.036566,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.03692,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.03692,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 1164.8
+ ],
+ [
+ 1644.8,
+ 1267.2
+ ],
+ [
+ 1747.2,
+ 1267.2
+ ],
+ [
+ 1747.2,
+ 1164.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.40491325782612,
+ "center_latitude": 50.03674302605173,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.594125+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4014160086272085,
+ 50.034905863497876,
+ 5.40177016044482,
+ 50.03526001531549
+ ],
+ "id": "0bb289892b6abf298df1df61194c25e7",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.401416,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.03526,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 1644.8
+ ],
+ [
+ 684.8,
+ 1747.2
+ ],
+ [
+ 787.2,
+ 1747.2
+ ],
+ [
+ 787.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.401593084536014,
+ "center_latitude": 50.03508293940668,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.657915+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4030760952722625,
+ 50.039886123433035,
+ 5.403430247089872,
+ 50.040240275250646
+ ],
+ "id": "b19b123dfd7e5bbc1927e94e6931e503",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.403076,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.039886,
+ 0
+ ],
+ [
+ 5.40343,
+ 50.04024,
+ 0
+ ],
+ [
+ 5.403076,
+ 50.04024,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1164.8,
+ 204.8
+ ],
+ [
+ 1164.8,
+ 307.2
+ ],
+ [
+ 1267.2,
+ 307.2
+ ],
+ [
+ 1267.2,
+ 204.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.403253171181067,
+ "center_latitude": 50.04006319934184,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.400219+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4014160086272085,
+ 50.03404261844245,
+ 5.40177016044482,
+ 50.03413115639685
+ ],
+ "id": "9440d03f29ff61d1d2098bf90e1c0257",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.401416,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.034043,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.034131,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.034131,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 1971.2
+ ],
+ [
+ 684.8,
+ 1996.8
+ ],
+ [
+ 787.2,
+ 1996.8
+ ],
+ [
+ 787.2,
+ 1971.2
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.401593084536014,
+ "center_latitude": 50.03408688741965,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.718103+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.4014160086272085,
+ 50.03291375952381,
+ 5.40177016044482,
+ 50.033267911341426
+ ],
+ "id": "91ce656b5b8fd917491cafa587a59687",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.401416,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.032914,
+ 0
+ ],
+ [
+ 5.40177,
+ 50.033268,
+ 0
+ ],
+ [
+ 5.401416,
+ 50.033268,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 684.8,
+ 2220.8
+ ],
+ [
+ 684.8,
+ 2323.2
+ ],
+ [
+ 787.2,
+ 2323.2
+ ],
+ [
+ 787.2,
+ 2220.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.401593084536014,
+ "center_latitude": 50.03309083543262,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:40.024561+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ },
+ {
+ "type": "Feature",
+ "bbox": [
+ 5.404736181917315,
+ 50.034905863497876,
+ 5.405090333734925,
+ 50.03526001531549
+ ],
+ "id": "b75a666308949046541295c6a6ac6efd",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 5.404736,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.034906,
+ 0
+ ],
+ [
+ 5.40509,
+ 50.03526,
+ 0
+ ],
+ [
+ 5.404736,
+ 50.03526,
+ 0
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "detection": {
+ "type": "Polygon",
+ "pixelCoordinates": [
+ [
+ 1644.8,
+ 1644.8
+ ],
+ [
+ 1644.8,
+ 1747.2
+ ],
+ [
+ 1747.2,
+ 1747.2
+ ],
+ [
+ 1747.2,
+ 1644.8
+ ]
+ ],
+ "ontology": [
+ {
+ "iri": "sample_object",
+ "detectionScore": 1
+ }
+ ],
+ "coordinates": []
+ },
+ "center_longitude": 5.40491325782612,
+ "center_latitude": 50.03508293940668,
+ "inferenceMetadata": {
+ "jobId": "3313c6095a5cb9547bffd4e51fd646c6",
+ "filePath": "s3://test-images-123456789123/small.tif",
+ "receiveTime": "2023-04-12T16:10:39.014396",
+ "inferenceTime": "2023-04-12T16:10:39.699464+00:00",
+ "tileOverlapFeatureSelection": "{\"algorithm\": \"NMS\", \"iou_threshold\": 0.75, \"skip_box_threshold\": 0.0001, \"sigma\": 0.1}"
+ }
+ }
+ }
+ ]
+}
diff --git a/test/__init__.py b/test/__init__.py
new file mode 100644
index 0000000..52242bf
--- /dev/null
+++ b/test/__init__.py
@@ -0,0 +1 @@
+# Copyright 2023 Amazon.com, Inc. or its affiliates.
diff --git a/tox.ini b/tox.ini
index b7c8236..e6066d0 100755
--- a/tox.ini
+++ b/tox.ini
@@ -5,7 +5,7 @@
[tox]
envlist =
# Basic configurations: Run the tests for each python version.
- py{39, 310, 311}-dev
+ py{39, 310, 311}
# Build and test the docs with sphinx.
docs
@@ -15,9 +15,11 @@ envlist =
# Pre distribution checks for the package
twine
+requires = tox-conda
skip_missing_interpreters = False
[testenv]
+conda_env = {toxinidir}/environment.yml
deps =
pytest==7.2.1
pytest-cov==4.0.0
@@ -27,7 +29,7 @@ deps =
# {posargs} can be passed in by additional arguments specified when invoking tox.
# Can be used to specify which tests to run, e.g.: tox -- -s
commands =
- pytest --cov-config .coveragerc --cov aws.osml --cov-report term-missing {posargs}
+ pytest --cov-config .coveragerc --cov test --cov-report term-missing {posargs}
{env:IGNORE_COVERAGE:} coverage report --rcfile .coveragerc
{env:IGNORE_COVERAGE:} coverage html --rcfile .coveragerc