diff --git a/README.md b/README.md index dafc2fe8..658f8454 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,16 @@ AI for precise geospatial data analysis and visualization. pip install blue-geo ``` +πŸ”Ή 🧊 [datacube](https://github.com/kamangir/blue-geo/tree/2024-07-18-datacubes-a/blue_geo/.abcli/datacube) πŸ”Ή + | | | | |-|-|-| | 🌐 [QGIS](https://github.com/kamangir/blue-geo/blob/main/blue_geo/.abcli/QGIS/README.md) | πŸ‡ΊπŸ‡¦ [ukraine-timemap](https://github.com/kamangir/blue-geo/blob/main/blue_geo/.abcli/ukraine-timemap/README.md) | 🌈 [vancouver-watching](https://github.com/kamangir/Vancouver-Watching) | | [![image](https://raw.githubusercontent.com/kamangir/assets/main/blue-geo/QGIS.jpg)](https://github.com/kamangir/blue-geo/blob/main/blue_geo/.abcli/QGIS/README.md) | [![image](https://github.com/kamangir/assets/blob/main/nbs/ukraine-timemap/QGIS.png?raw=true)](https://github.com/kamangir/blue-geo/blob/main/blue_geo/.abcli/ukraine-timemap/README.md) | [![image](https://kamangir-public.s3.ca-central-1.amazonaws.com/test_vancouver_watching_ingest/animation.gif?raw=true)](https://github.com/kamangir/Vancouver-Watching) | | an AI terraform for [QGIS](https://www.qgis.org/). | `ingest` for the [Bellingcat](https://www.bellingcat.com/) [Civilian Harm in Ukraine TimeMap](https://github.com/bellingcat/ukraine-timemap) dataset, available through [this UI](https://ukraine.bellingcat.com/) and [this API](https://bellingcat-embeds.ams3.cdn.digitaloceanspaces.com/production/ukr/timemap/api.json). | 🌈 Vancouver watching with AI, last build: [πŸ”—](https://kamangir-public.s3.ca-central-1.amazonaws.com/test_vancouver_watching_ingest/animation.gif). | | | | | | -| 🌐 [firms](https://github.com/kamangir/blue-geo/blob/main/blue_geo/firms/README.md) | | | -| [![image](https://raw.githubusercontent.com/kamangir/assets/main/blue-geo/firms.jpg)](https://github.com/kamangir/blue-geo/blob/main/blue_geo/firms/README.md) | | | +| 🌐 [firms](https://github.com/kamangir/blue-geo/blob/main/blue_geo/.abcli/datacube/firms/README.md) | | | +| [![image](https://raw.githubusercontent.com/kamangir/assets/main/blue-geo/firms.jpg)](https://github.com/kamangir/blue-geo/blob/main/blue_geo/.abcli/datacube/firms/README.md) | | | | `ingest` for [FIRMS](https://firms.modaps.eosdis.nasa.gov): Fire Information for Resource Management System. | | | --- diff --git a/blue_geo/.abcli/alias.sh b/blue_geo/.abcli/alias.sh new file mode 100644 index 00000000..10f61d83 --- /dev/null +++ b/blue_geo/.abcli/alias.sh @@ -0,0 +1,3 @@ +#! /usr/bin/env bash + +alias @datacube=blue_geo_datacube diff --git a/blue_geo/.abcli/datacube.sh b/blue_geo/.abcli/datacube.sh new file mode 100644 index 00000000..e2286b7e --- /dev/null +++ b/blue_geo/.abcli/datacube.sh @@ -0,0 +1,25 @@ +#! /usr/bin/env bash + +function blue_geo_datacube() { + local task=$(abcli_unpack_keyword $1 help) + + if [ "$task" == "help" ]; then + blue_geo_datacube_browse "$@" + blue_geo_datacube_get "$@" + blue_geo_datacube_ingest "$@" + blue_geo_datacube_list "$@" + blue_geo_datacube_query "$@" + return + fi + + local function_name=blue_geo_datacube_$task + if [[ $(type -t $function_name) == "function" ]]; then + $function_name "${@:2}" + return + fi + + abcli_log_error "-blue_geo: datacube: $task: command not found." + return 1 +} + +abcli_source_path - caller,suffix=/datacube diff --git a/blue_geo/.abcli/datacube/README.md b/blue_geo/.abcli/datacube/README.md new file mode 100644 index 00000000..361f710e --- /dev/null +++ b/blue_geo/.abcli/datacube/README.md @@ -0,0 +1,44 @@ +# 🧊 + +`datacube`s are [objects](https://kamangir-public.s3.ca-central-1.amazonaws.com/giza-v1/giza.pdf) that can be [queried](#query) and [ingested](#ingest). + +## query + +run an `@datacube query`, then `@datacube query read` the `datacube-id`(s) as object names and use them with commands. + +```bash + > @datacube query help +@datacube query \ + \ + download,ingest,select,upload \ + -| \ + \ + + . -query-> . +@datacube query read \ + [all,download,len] \ + [.|] \ + [--count ] \ + [--delim ] \ + [--index ] \ + [--prefix ] \ + [--suffix ] \ + [--contains ] \ + [--notcontains ] + . read query results in . +``` + +supported ``s: [firms_area](./firms_area/). + +## ingest + +run `@datacube ingest` to ingest a datacube, or `@datacube query ingest,...`. + +```bash + > @datacube ingest help +@datacube ingest \ + [assets=all|,dryrun,suffix=,upload] \ + [.|] \ + + . ingest . + ``` \ No newline at end of file diff --git a/blue_geo/.abcli/datacube/browse.sh b/blue_geo/.abcli/datacube/browse.sh new file mode 100644 index 00000000..109f7011 --- /dev/null +++ b/blue_geo/.abcli/datacube/browse.sh @@ -0,0 +1,18 @@ +#! /usr/bin/env bash + +function blue_geo_datacube_browse() { + local catalog=${1:firms_area} + + if [ $(abcli_option_int "$catalog" help 0) == 1 ]; then + abcli_show_usage "@datacube browse$ABCUL$ABCUL" \ + "browse ." + return + fi + + if [[ ",$blue_geo_datacube_list_of_catalogs," != *",$catalog,"* ]]; then + abcli_log_error "-@datacube: browse: $catalog: catalog not found." + return 1 + fi + + blue_geo_datacube_${catalog}_browse "${@:2}" +} diff --git a/blue_geo/.abcli/datacube/catalogs.sh b/blue_geo/.abcli/datacube/catalogs.sh new file mode 100644 index 00000000..05e362c1 --- /dev/null +++ b/blue_geo/.abcli/datacube/catalogs.sh @@ -0,0 +1,40 @@ +#! /usr/bin/env bash + +function blue_geo_datacube_list() { + local options=$1 + + if [ $(abcli_option_int "$options" help 0) == 1 ]; then + options="catalogs" + local args="[--delim space]$ABCUL[--log 0]" + abcli_show_usage "@datacube list$ABCUL[$options]$ABCUL$args" \ + "list catalogs." + return + fi + + python3 -m blue_geo.datacube \ + list_of_catalogs \ + "${@:2}" +} + +function blue_geo_datacube_ls() { + blue_geo_datacube_list "$@" +} + +function blue_geo_datacube_load_catalogs() { + abcli_log_list $blue_geo_datacube_list_of_catalogs \ + --delim , \ + --before "🌐 loading" \ + --after "datacube catalog(s)" + + local catalog + for catalog in $(echo $blue_geo_datacube_list_of_catalogs | tr , " "); do + abcli_log "🧊 $catalog" + abcli_source_path - caller,civilized,suffix=/$catalog + done + + return 0 +} + +export blue_geo_datacube_list_of_catalogs=$(blue_geo_datacube_list catalogs --log 0) + +blue_geo_datacube_load_catalogs diff --git a/blue_geo/.abcli/datacube/firms_area/README.md b/blue_geo/.abcli/datacube/firms_area/README.md new file mode 100644 index 00000000..d5317533 --- /dev/null +++ b/blue_geo/.abcli/datacube/firms_area/README.md @@ -0,0 +1,53 @@ +# 🌐 firms-area + +the `firms-area` catalog covers [FIRMS](https://firms.modaps.eosdis.nasa.gov): Fire Information for Resource Management System. see [datacube](../README.md) for usage instructions. + +## query + +```bash + > @datacube query firms_area help +@datacube query firms_area \ + [download,ingest,select,upload] \ + [-|] \ + [dryrun] \ + [--date 2024-07-21] \ + [--depth 1] \ + [--area east|north|south|west|world] \ + [--source LANDSAT_NRT|MODIS_NRT|MODIS_SP|VIIRS_NOAA20_NRT|VIIRS_NOAA21_NRT|VIIRS_SNPP_NRT|VIIRS_SNPP_SP] \ + [--log 1] + . firms_area -query-> . +``` + +## example use + +```bash +@datacube query firms_area \ + ingest,select - - \ + --date 2024-07-18 + +@open QGIS . +@publish tar . +``` + +```yaml +datacube: + area: WORLD + date: '2024-07-18' + depth: 1 + id: datacube-firms_area-world-MODIS_NRT-2024-07-18-1 + len: 23627 + source: MODIS_NRT +``` + + +![image](https://raw.githubusercontent.com/kamangir/assets/main/blue-geo/datacube-firms_area-ingest.png) + +[datacube-firms_area-world-MODIS_NRT-2024-07-18-1.tar.gz](https://kamangir-public.s3.ca-central-1.amazonaws.com/datacube-firms_area-world-MODIS_NRT-2024-07-18-1.tar.gz) + +![image](https://raw.githubusercontent.com/kamangir/assets/main/blue-geo/datacube-firms_area.jpg) + +--- + +map-key: https://firms.modaps.eosdis.nasa.gov/api/map_key/ + +area api: https://firms.modaps.eosdis.nasa.gov/api/area/ diff --git a/blue_geo/.abcli/datacube/firms_area/browse.sh b/blue_geo/.abcli/datacube/firms_area/browse.sh new file mode 100644 index 00000000..2d9e1769 --- /dev/null +++ b/blue_geo/.abcli/datacube/firms_area/browse.sh @@ -0,0 +1,23 @@ +#! /usr/bin/env bash + +function blue_geo_datacube_firms_area_browse() { + local options=$1 + + if [ $(abcli_option_int "$options" help 0) == 1 ]; then + options="|map_key|api" + abcli_show_usage "@datacube browse firms_area$ABCUL$options" \ + "browse firms_area datacubes." + return + fi + + local do_map_key=$(abcli_option_int "$options" map_key 0) + local do_area_api=$(abcli_option_int "$options" api 0) + + local url="https://firms.modaps.eosdis.nasa.gov/" + [[ "$do_map_key" == 1 ]] && + url="https://firms.modaps.eosdis.nasa.gov/api/map_key/" + [[ "$do_area_api" == 1 ]] && + url="https://firms.modaps.eosdis.nasa.gov/api/area/" + + abcli_browse $url +} diff --git a/blue_geo/.abcli/datacube/firms_area/ingest.sh b/blue_geo/.abcli/datacube/firms_area/ingest.sh new file mode 100644 index 00000000..15ce963d --- /dev/null +++ b/blue_geo/.abcli/datacube/firms_area/ingest.sh @@ -0,0 +1,23 @@ +#! /usr/bin/env bash + +function blue_geo_datacube_ingest_firms_area() { + local options=$1 + + if [ $(abcli_option_int "$options" help 0) == 1 ]; then + options=$blue_geo_datacube_ingest_options + "$EOP~copy_template,dryrun,$EOPE" + abcli_show_usage "blue_geo ingest firms_area$ABCUL[$options]$ABCUL[.|]$ABCUL" \ + "firms -ingest-> ." + return + fi + + local do_dryrun=$(abcli_option_int "$options" dryrun 0) + + local object_name=$(abcli_clarify_object $2 .) + + abcli_eval dryrun=$do_dryrun \ + python3 -m blue_geo.datacube.firms.area \ + ingest \ + --object_name $object_name \ + "${@:3}" +} diff --git a/blue_geo/.abcli/datacube/firms_area/query.sh b/blue_geo/.abcli/datacube/firms_area/query.sh new file mode 100644 index 00000000..120d6238 --- /dev/null +++ b/blue_geo/.abcli/datacube/firms_area/query.sh @@ -0,0 +1,40 @@ +#! /usr/bin/env bash + +function blue_geo_datacube_firms_area_query() { + local options=$1 + + if [ $(abcli_option_int "$options" help 0) == 1 ]; then + options="dryrun" + + local date=$(abcli_string_timestamp_short \ + --include_time 0 \ + --unique 0) + local area=$(python3 -m blue_geo.datacube.firms.area \ + get \ + --what area \ + --delim \|) + local source=$(python3 -m blue_geo.datacube.firms.area \ + get \ + --what source \ + --values 1 \ + --delim \|) + + local args="[--date $date]$ABCUL[--depth 1]$ABCUL[--area $area]$ABCUL[--source $source]$ABCUL[--log 1]" + + abcli_show_usage "@datacube query firms_area$ABCUL[$blue_geo_datacube_query_options]$ABCUL[-|]$ABCUL[$options]$ABCUL$args" \ + "firms_area -query-> ." + return + fi + + local do_dryrun=$(abcli_option_int "$options" dryrun 0) + + local object_name=$(abcli_clarify_object $2 -) + + abcli_eval dryrun=$do_dryrun \ + python3 -m blue_geo.datacube.firms.area \ + query \ + --object_name $object_name \ + "${@:3}" + + return 0 +} diff --git a/blue_geo/.abcli/datacube/get.sh b/blue_geo/.abcli/datacube/get.sh new file mode 100644 index 00000000..5854462e --- /dev/null +++ b/blue_geo/.abcli/datacube/get.sh @@ -0,0 +1,39 @@ +#! /usr/bin/env bash + +function blue_geo_datacube_get() { + local what=$1 + + if [[ "$what" == "help" ]]; then + options="catalog" + abcli_show_usage "@datacube get$ABCUL[$options]$ABCUL.|" \ + "get catalog." + + options="template" + abcli_show_usage "@datacube get$ABCUL[$options]$ABCUL" \ + "get template." + + return + fi + + local extra_args="" + + if [[ "$what" == "catalog" ]]; then + local object_name=$(abcli_clarify_object $2 .) + python3 -m blue_geo.datacube \ + get \ + --what "$what" \ + --object_name $object_name \ + "${@:3}" + elif [[ "$what" == "template" ]]; then + python3 -m blue_geo.datacube \ + get \ + --what "$what" \ + --catalog "$2" \ + "${@:3}" + else + python3 -m blue_geo.datacube \ + get \ + --what "$what" \ + "${@:2}" + fi +} diff --git a/blue_geo/.abcli/datacube/ingest.sh b/blue_geo/.abcli/datacube/ingest.sh new file mode 100644 index 00000000..2c10f6a0 --- /dev/null +++ b/blue_geo/.abcli/datacube/ingest.sh @@ -0,0 +1,45 @@ +#! /usr/bin/env bash + +export blue_geo_datacube_ingest_options="assets=all|,dryrun,suffix=,upload" + +function blue_geo_datacube_ingest() { + local options=$1 + + if [ $(abcli_option_int "$options" help 0) == 1 ]; then + options=$blue_geo_datacube_ingest_options + abcli_show_usage "@datacube ingest$ABCUL[$options]$ABCUL[.|]$ABCUL" \ + "ingest ." + return + fi + + local do_upload=$(abcli_option_int "$options" upload 0) + + local object_name=$(abcli_clarify_object $2 .) + + local catalog=$(blue_geo_datacube get catalog $object_name) + if [[ ",$blue_geo_datacube_list_of_catalogs," != *",$catalog,"* ]]; then + abcli_log_error "-@datacube: ingest: $catalog: catalog not found." + return 1 + fi + + abcli_log "🧊 catalog: $catalog" + + local template_object_name=$(blue_geo_datacube get template $catalog) + local do_copy_template=1 + [[ "$template_object_name" == "unknown-template" ]] && + do_copy_template=0 + do_copy_template=$(abcli_option_int "$options" copy_template $do_copy_template) + + [[ "$do_copy_template" == 1 ]] && + abcli_clone \ + $template_object_name \ + $object_name \ + ~meta + + blue_geo_datacube_ingest_${catalog} "$@" + + [[ "$do_upload" == 1 ]] && + abcli_upload - $object_name + + return 0 +} diff --git a/blue_geo/.abcli/datacube/query.sh b/blue_geo/.abcli/datacube/query.sh new file mode 100644 index 00000000..2c20d0b4 --- /dev/null +++ b/blue_geo/.abcli/datacube/query.sh @@ -0,0 +1,70 @@ +#! /usr/bin/env bash + +export blue_geo_datacube_query_options="download,ingest,select,upload" + +function blue_geo_datacube_query() { + local catalog=${1:firms_area} + + local options=$2 + + if [ $(abcli_option_int "$catalog" help 0) == 1 ]; then + options=$blue_geo_datacube_query_options + abcli_show_usage "@datacube query$ABCUL$ABCUL$options$ABCUL-|$ABCUL$ABCUL" \ + " -query-> ." + + blue_geo_datacube_query_read "$@" + return + fi + + local function_name=blue_geo_datacube_query_$catalog + if [[ $(type -t $function_name) == "function" ]]; then + $function_name "${@:2}" + return + fi + + local do_download=$(abcli_option_int "$options" download 0) + local do_ingest=$(abcli_option_int "$options" ingest 0) + local do_select=$(abcli_option_int "$options" select 0) + local do_upload=$(abcli_option_int "$options" upload 0) + + if [[ ",$blue_geo_datacube_list_of_catalogs," != *",$catalog,"* ]]; then + abcli_log_error "-@datacube: query: $catalog: catalog not found." + return 1 + fi + + if [[ $(abcli_option_int "$options" help 0) == 1 ]]; then + blue_geo_datacube_${catalog}_query "${@:2}" + return + fi + + local object_name=$(abcli_clarify_object $3 query-$catalog-$(abcli_string_timestamp)) + + [[ "$do_download" == 1 ]] && + abcli_download - $object_name + + local query_options=$4 + blue_geo_datacube_${catalog}_query \ + ,$query_options \ + $object_name \ + "${@:5}" + + [[ "$do_upload" == 1 ]] && + abcli_upload - $object_name + + [[ "$do_ingest" == 0 ]] && [[ "$do_select" == 0 ]] && + return 0 + + local datacube_id=$(blue_geo_datacube_query_read - $object_name) + abcli_log "🧊 $datacube_id" + + [[ "$do_ingest" == 1 ]] && + blue_geo_datacube_ingest - $datacube_id + + [[ "$do_select" == 1 ]] && + abcli_select $datacube_id + + return 0 + +} + +abcli_source_path - caller,suffix=/query diff --git a/blue_geo/.abcli/datacube/query/read.sh b/blue_geo/.abcli/datacube/query/read.sh new file mode 100644 index 00000000..8227358f --- /dev/null +++ b/blue_geo/.abcli/datacube/query/read.sh @@ -0,0 +1,33 @@ +#! /usr/bin/env bash + +function blue_geo_datacube_query_read() { + local options=$1 + + if [ $(abcli_option_int "$options" help 0) == 1 ]; then + options="all,download,len" + local args="[--count ]$ABCUL[--delim ]$ABCUL[--index ]$ABCUL[--prefix ]$ABCUL[--suffix ]$ABCUL[--contains ]$ABCUL[--notcontains ]" + abcli_show_usage "@datacube query read$ABCUL[$options]$ABCUL[.|]$ABCUL$args" \ + "read query results in ." + return + fi + + local do_download=$(abcli_option_int "$options" download 0) + local show_len=$(abcli_option_int "$options" len 0) + local do_all=$(abcli_option_int "$options" all 0) + + local object_name=$(abcli_clarify_object $2 .) + + [[ "$do_download" == 1 ]] && + abcli_download - $object_name + + local extra_args="" + [[ "$do_all" == 1 ]] && + extra_args="--count -1" + + python3 -m blue_geo.datacube.query \ + read \ + --object_name $object_name \ + --show_len $show_len \ + $extra_args \ + "${@:3}" +} diff --git a/blue_geo/.abcli/ingest.sh b/blue_geo/.abcli/ingest.sh deleted file mode 100644 index d25073e6..00000000 --- a/blue_geo/.abcli/ingest.sh +++ /dev/null @@ -1,21 +0,0 @@ -#! /usr/bin/env bash - -function blue_geo_ingest() { - local task=$(abcli_unpack_keyword $1 help) - - if [ "$task" == "help" ]; then - blue_geo_ingest_firms "$@" - return - fi - - local function_name=blue_geo_ingest_$task - if [[ $(type -t $function_name) == "function" ]]; then - $function_name "${@:2}" - return - fi - - abcli_log_error "-blue_geo: ingest: $task: command not found." - return 1 -} - -abcli_source_path - caller,suffix=/ingest diff --git a/blue_geo/.abcli/ingest/firms.sh b/blue_geo/.abcli/ingest/firms.sh deleted file mode 100644 index 9424230e..00000000 --- a/blue_geo/.abcli/ingest/firms.sh +++ /dev/null @@ -1,41 +0,0 @@ -#! /usr/bin/env bash - -function blue_geo_ingest_firms() { - local options=$1 - - if [ $(abcli_option_int "$options" help 0) == 1 ]; then - options="dryrun,~upload" - local date=$(abcli_string_timestamp_short \ - --include_time 0 \ - --unique 0) - local area=$(python3 -m blue_geo.firms.api.area \ - get \ - --what area \ - --delim \|) - local source=$(python3 -m blue_geo.firms.api.area \ - get \ - --what source \ - --values 1 \ - --delim \|) - local args="[--date $date]$ABCUL[depth 1]$ABCUL[--area $area]$ABCUL[--source $source]$ABCUL[--log 1]" - abcli_show_usage "blue_geo ingest firms$ABCUL[$options]$ABCUL[.|]$ABCUL$args" \ - "firms -ingest-> ." - return - fi - - local do_dryrun=$(abcli_option_int "$options" dryrun 0) - local do_upload=$(abcli_option_int "$options" upload $(abcli_not $do_dryrun)) - - local object_name=$(abcli_clarify_object $2 .) - - abcli_eval dryrun=$do_dryrun \ - python3 -m blue_geo.firms.api.area \ - ingest \ - --object_name $object_name \ - "${@:4}" - - [[ "$do_upload" == 1 ]] && - abcli_upload - $object_name - - return 0 -} diff --git a/blue_geo/.abcli/install.sh b/blue_geo/.abcli/install.sh deleted file mode 100644 index 2a60bce4..00000000 --- a/blue_geo/.abcli/install.sh +++ /dev/null @@ -1,9 +0,0 @@ -#! /usr/bin/env bash - -function abcli_install_blue_geo() { - : -} - -abcli_install_module blue_geo 1.1.1 - - diff --git a/blue_geo/.abcli/tests/datacube_catalog.sh b/blue_geo/.abcli/tests/datacube_catalog.sh new file mode 100644 index 00000000..0c8ebe32 --- /dev/null +++ b/blue_geo/.abcli/tests/datacube_catalog.sh @@ -0,0 +1,6 @@ +#! /usr/bin/env bash + +function test_blue_geo_datacube_catalog() { + abcli_eval dryrun=$do_dryrun \ + blue_geo datacube list catalogs +} diff --git a/blue_geo/.abcli/tests/datacube_firms_area.sh b/blue_geo/.abcli/tests/datacube_firms_area.sh new file mode 100644 index 00000000..8629cc80 --- /dev/null +++ b/blue_geo/.abcli/tests/datacube_firms_area.sh @@ -0,0 +1,19 @@ +#! /usr/bin/env bash + +function test_blue_geo_datacube_firms_area() { + local options=$1 + + local object_name=firms-$(abcli_string_timestamp_short) + + blue_geo datacube query firms_area \ + ingest $object_name - \ + --date 2024-07-18 + + abcli_assert \ + $(blue_geo datacube query read len $object_name) \ + 1 + + abcli_assert \ + $(blue_geo datacube query read - $object_name) \ + datacube-firms_area-world-MODIS_NRT-2024-07-18-1 +} diff --git a/blue_geo/.abcli/tests/datacube_get.sh b/blue_geo/.abcli/tests/datacube_get.sh new file mode 100644 index 00000000..11536f8f --- /dev/null +++ b/blue_geo/.abcli/tests/datacube_get.sh @@ -0,0 +1,29 @@ +#! /usr/bin/env bash + +function test_blue_geo_datacube_get_catalog() { + abcli_assert \ + $(blue_geo_datacube_get catalog void) \ + unknown-catalog + + abcli_assert \ + $(blue_geo_datacube_get catalog datacube-generic) \ + generic + + abcli_assert \ + $(blue_geo_datacube_get catalog datacube-firms_area-world-MODIS_NRT-2024-07-20-1) \ + firms_area +} + +function test_blue_geo_datacube_get_template() { + abcli_assert \ + $(blue_geo_datacube_get template unknown-catalog) \ + unknown-template + + abcli_assert \ + $(blue_geo_datacube_get template generic) \ + unknown-template + + abcli_assert \ + $(blue_geo_datacube_get template firms_area) \ + $BLUE_GEO_FIRMS_AREA_QGIS_TEMPLATE +} diff --git a/blue_geo/.abcli/tests/ingest.sh b/blue_geo/.abcli/tests/ingest.sh deleted file mode 100644 index b454d212..00000000 --- a/blue_geo/.abcli/tests/ingest.sh +++ /dev/null @@ -1,10 +0,0 @@ -#! /usr/bin/env bash - -function test_blue_geo_ingest() { - local object_name=ingest-$(abcli_string_timestamp_short) - - abcli_eval dryrun=$do_dryrun \ - blue_geo ingest firms - \ - $object_name \ - "${@:2}" -} diff --git a/blue_geo/.abcli/ukraine-timemap/browse.sh b/blue_geo/.abcli/ukraine-timemap/browse.sh index a51bba60..a3b47da9 100644 --- a/blue_geo/.abcli/ukraine-timemap/browse.sh +++ b/blue_geo/.abcli/ukraine-timemap/browse.sh @@ -4,8 +4,8 @@ function ukraine_timemap_browse() { local options=$1 if [ $(abcli_option_int "$options" help 0) == 1 ]; then - options="dataset|github" - abcli_show_usage "ukraine_timemap browse$ABCUL[$options]" \ + options="home$EOP|dataset|github$EOPE" + abcli_show_usage "ukraine_timemap browse$ABCUL$options" \ "browse ukraine-timemap." return fi @@ -20,5 +20,4 @@ function ukraine_timemap_browse() { url="https://bellingcat-embeds.ams3.cdn.digitaloceanspaces.com/production/ukr/timemap/api.json" abcli_browse $url - } diff --git a/blue_geo/.abcli/ukraine-timemap/ingest.sh b/blue_geo/.abcli/ukraine-timemap/ingest.sh index cca0e6db..a2d9ffd0 100644 --- a/blue_geo/.abcli/ukraine-timemap/ingest.sh +++ b/blue_geo/.abcli/ukraine-timemap/ingest.sh @@ -4,7 +4,7 @@ function ukraine_timemap_ingest() { local options=$1 if [ $(abcli_option_int "$options" help 0) == 1 ]; then - options="${EOP}~copy_template,dryrun,~upload$EOPE" + options="$EOP~copy_template,dryrun,~upload$EOPE" local open_options="open$EOP,~QGIS$EOPE" abcli_show_usage "ukraine_timemap ingest$ABCUL$options$ABCUL-$EOP|$EOPE$ABCUL$open_options" \ "ingest the latest dataset from https://github.com/bellingcat/ukraine-timemap." @@ -19,7 +19,7 @@ function ukraine_timemap_ingest() { if [[ "$do_copy_template" == 1 ]]; then abcli_clone \ - $UKRAINE_TIMEMAP_TEMPLATE \ + $BLUE_GEO_UKRAINE_TIMEMAP_QGIS_TEMPLATE \ $object_name \ ~meta rm -v \ diff --git a/blue_geo/QGIS/console/QGIS.py b/blue_geo/QGIS/console/QGIS.py index 2fbd7092..7fbbd9e7 100644 --- a/blue_geo/QGIS/console/QGIS.py +++ b/blue_geo/QGIS/console/QGIS.py @@ -23,7 +23,6 @@ class ABCLI_QGIS(object): def __init__(self): self.app_list = [] - self.object_name = self.timestamp() def add_application(self, app): self.app_list += [app] @@ -59,13 +58,15 @@ def clear(self): self.intro() + seed("clear") + def create_video(self, filename="QGIS", object_name=""): seed( [ "abcli", "create_video", f"png,fps=2,filename={filename},gif", - object_name if object_name else self.object_name, + object_name if object_name else project.name, ] ) @@ -88,7 +89,6 @@ def help(self, clear=False): if clear: self.clear() - log("object", self.object_name, icon="πŸ“‚") log("Q.clear()", "clear Python Console.") log("Q.create_video()", "create a video.") layer.help() @@ -101,7 +101,6 @@ def help(self, clear=False): if verbose: log("Q.refresh()", "refresh.") log("Q.reload()", "reload all layers.") - log('Q.select("")', "select .") if verbose: log("Q.unload(layer_name)", "unload layer_name.") log('Q.upload("||layer|project|qgz")', "upload.") @@ -179,7 +178,7 @@ def load( def object_path(self, object_name=""): output = os.path.join( abcli_object_root, - object_name if object_name else self.object_name, + object_name if object_name else project.name, ) os.makedirs(output, exist_ok=True) return output @@ -212,13 +211,6 @@ def reload(self): for layer_ in tqdm(QgsProject.instance().mapLayers().values()): layer_.dataProvider().reloadData() - def select(self, object_name=""): - self.object_name = object_name if object_name else self.timestamp() - log(f"object_name: {self.object_name}", icon="πŸ“‚") - log(f"object_path: {self.object_path()}", icon="πŸ“‚") - - os.makedirs(self.object_path(), exist_ok=True) - def timestamp(self): return time.strftime( f"%Y-%m-%d-%H-%M-%S-{random.randrange(100000):05d}", @@ -246,7 +238,7 @@ def upload(self, object_name=""): else ( layer.object_name if object_name in ["layer", layer] - else object_name if object_name else self.object_name + else object_name if object_name else project.name ) ), ] @@ -255,4 +247,13 @@ def upload(self, object_name=""): QGIS = ABCLI_QGIS() + +def clear(): + QGIS.clear() + + +def upload(self, object_name=""): + QGIS.upload(object_name) + + Q = QGIS diff --git a/blue_geo/__init__.py b/blue_geo/__init__.py index 55e049ff..827e3016 100644 --- a/blue_geo/__init__.py +++ b/blue_geo/__init__.py @@ -4,7 +4,7 @@ DESCRIPTION = f"{ICON} AI for precise geospatial data analysis and visualization." -VERSION = "4.57.1" +VERSION = "4.117.1" REPO_NAME = "blue-geo" diff --git a/blue_geo/config.env b/blue_geo/config.env index a468cf27..2136ac75 100644 --- a/blue_geo/config.env +++ b/blue_geo/config.env @@ -1 +1,3 @@ -UKRAINE_TIMEMAP_TEMPLATE=ukraine-timemap-template-v11 \ No newline at end of file +BLUE_GEO_UKRAINE_TIMEMAP_QGIS_TEMPLATE=ukraine-timemap-template-v11 + +BLUE_GEO_FIRMS_AREA_QGIS_TEMPLATE=firms_area-template-v1 \ No newline at end of file diff --git a/blue_geo/firms/__init__.py b/blue_geo/datacube/__init__.py similarity index 50% rename from blue_geo/firms/__init__.py rename to blue_geo/datacube/__init__.py index 26a61ef1..1dcd7db8 100644 --- a/blue_geo/firms/__init__.py +++ b/blue_geo/datacube/__init__.py @@ -1,3 +1,3 @@ from blue_geo import NAME -NAME = f"{NAME}.firms" +NAME = f"{NAME}.datacube" diff --git a/blue_geo/datacube/__main__.py b/blue_geo/datacube/__main__.py new file mode 100644 index 00000000..a2d7d65a --- /dev/null +++ b/blue_geo/datacube/__main__.py @@ -0,0 +1,70 @@ +import argparse +from blue_geo import VERSION +from blue_geo.datacube.catalogs import list_of_datacube_classes +from blue_geo import env +from blue_geo.datacube.catalogs import catalog_of +from blue_geo.datacube import NAME +from blue_geo.logger import logger +from blueness.argparse.generic import sys_exit + +parser = argparse.ArgumentParser(NAME, description=f"{NAME}-{VERSION}") +parser.add_argument( + "task", + type=str, + help="get|list_of_catalogs", +) +parser.add_argument( + "--delim", + type=str, + default=",", +) +parser.add_argument( + "--log", + default=1, + type=int, + help="0|1", +) +parser.add_argument( + "--what", + default="", + type=str, + help="catalog|template", +) +parser.add_argument( + "--object_name", + type=str, + default="", +) +parser.add_argument( + "--catalog", + type=str, + default="", +) +args = parser.parse_args() + +delim = " " if args.delim == "space" else args.delim + +success = False +if args.task == "get": + success = True + output = f"unknown-{args.what}" + if args.what == "template": + output = env.QGIS_TEMPLATES.get(args.catalog, output) + elif args.what == "catalog": + _, output = catalog_of(datacube_id=args.object_name) + + print(output) +elif args.task == "list_of_catalogs": + success = True + output = list( + {datacube_class.catalog for datacube_class in list_of_datacube_classes} + ) + + if args.log: + logger.info(f"{len(output):,} catalog(s): {delim.join(output)}") + else: + print(delim.join(output)) +else: + success = None + +sys_exit(logger, NAME, args.task, success) diff --git a/blue_geo/datacube/catalogs.py b/blue_geo/datacube/catalogs.py new file mode 100644 index 00000000..b9ad388d --- /dev/null +++ b/blue_geo/datacube/catalogs.py @@ -0,0 +1,18 @@ +from typing import Tuple, List +from blue_geo.datacube.generic import GenericDatacube +from blue_geo.datacube.firms.area import FirmsAreaDatacube + + +list_of_datacube_classes: List[GenericDatacube] = [ + GenericDatacube, + FirmsAreaDatacube, +] + + +def catalog_of(datacube_id: str) -> Tuple[bool, str]: + for datacube_class in list_of_datacube_classes: + success, _ = datacube_class.parse_datacube_id(datacube_id) + if success: + return True, datacube_class.catalog + + return False, "unknown-catalog" diff --git a/blue_geo/datacube/firms/__init__.py b/blue_geo/datacube/firms/__init__.py new file mode 100644 index 00000000..9aa5c045 --- /dev/null +++ b/blue_geo/datacube/firms/__init__.py @@ -0,0 +1,3 @@ +from blue_geo.datacube import NAME + +NAME = f"{NAME}.firms" diff --git a/blue_geo/firms/api/area/__init__.py b/blue_geo/datacube/firms/area/__init__.py similarity index 51% rename from blue_geo/firms/api/area/__init__.py rename to blue_geo/datacube/firms/area/__init__.py index eaab5db5..ba698232 100644 --- a/blue_geo/firms/api/area/__init__.py +++ b/blue_geo/datacube/firms/area/__init__.py @@ -1,5 +1,7 @@ -from blue_geo.firms.api import NAME +from blue_geo.datacube.firms import NAME NAME = f"{NAME}.area" REFERENCE = "https://firms.modaps.eosdis.nasa.gov/api/area/" + +from .classes import FirmsAreaDatacube diff --git a/blue_geo/firms/api/area/__main__.py b/blue_geo/datacube/firms/area/__main__.py similarity index 73% rename from blue_geo/firms/api/area/__main__.py rename to blue_geo/datacube/firms/area/__main__.py index b8ae8c7b..0366b3b2 100644 --- a/blue_geo/firms/api/area/__main__.py +++ b/blue_geo/datacube/firms/area/__main__.py @@ -1,9 +1,10 @@ import argparse from datetime import datetime, timedelta from blue_geo import VERSION -from blue_geo.firms.api.area import NAME -from blue_geo.firms.api.area.enums import Area, Source -from blue_geo.firms.api.area.classes import APIRequest +from abcli.plugins.metadata import post_to_object +from blue_geo.datacube.firms.area import NAME +from blue_geo.datacube.firms.area.enums import Area, Source +from blue_geo.datacube.firms.area.classes import FirmsAreaDatacube from blue_geo.logger import logger from blueness.argparse.generic import sys_exit @@ -11,7 +12,7 @@ parser.add_argument( "task", type=str, - help="get|ingest", + help="get|ingest|query", ) parser.add_argument( "--object_name", @@ -69,14 +70,23 @@ print((delim.join(what.values()) if args.values else what.name) if what else None) success = True elif args.task == "ingest": - api_request = APIRequest( + datacube = FirmsAreaDatacube(datacube_id=args.object_name) + success, _ = datacube.ingest(object_name=args.object_name) +elif args.task == "query": + datacube = FirmsAreaDatacube( area=Area[args.area], source=Source[args.source], depth=args.depth, date=args.date, ) - success, _ = api_request.ingest(object_name=args.object_name) + logger.info(f"🧊 {datacube.datacube_id}") + + success = post_to_object( + args.object_name, + "datacube_id", + [datacube.datacube_id], + ) else: success = None diff --git a/blue_geo/datacube/firms/area/classes.py b/blue_geo/datacube/firms/area/classes.py new file mode 100644 index 00000000..f0afd2dd --- /dev/null +++ b/blue_geo/datacube/firms/area/classes.py @@ -0,0 +1,172 @@ +from typing import Tuple, Dict, Any +from datetime import datetime, timedelta +import pandas as pd +import geopandas as gpd +from shapely.geometry import Point +from .enums import Area, Source +from abcli import file +from abcli.modules import objects +from abcli.plugins import metadata +from blue_geo.datacube.generic import GenericDatacube +from blue_geo import env +from blue_geo.logger import logger + + +class FirmsAreaDatacube(GenericDatacube): + catalog = "firms_area" + + def __init__( + self, + source: Source = Source.default(), + area: Area = Area.default(), + date: str = "", + depth: int = 1, + datacube_id: str = "", + log: bool = True, + ): + super().__init__( + datacube_id=datacube_id, + log=log, + ) + + self.url_prefix = "https://firms.modaps.eosdis.nasa.gov/api/area" + self.map_key = env.FIRMS_MAP_KEY + + if datacube_id: + success, args = FirmsAreaDatacube.parse_datacube_id(datacube_id) + assert success + + area = args["area"] + source = args["source"] + depth = args["depth"] + date = args["date"] + + self.area: Area = area + self.source: Source = source + + self.depth: int = depth + + self.date: str = ( + date if date else (datetime.now() - timedelta(days=5)).strftime("%Y-%m-%d") + ) + + if log: + logger.info(self.description) + + @property + def description(self) -> str: + return "{}, area:{}, source:{} ({})".format( + super().description, + self.area.name.lower(), + self.source.name, + self.source.description, + ) + + @property + def datacube_id(self) -> str: + return "{}-{}-{}-{}-{}".format( + super().datacube_id, + self.area.name.lower(), + self.source.name, + self.date, + self.depth, + ) + + @classmethod + def parse_datacube_id(cls, datacube_id: str) -> Tuple[ + bool, + Dict[str, Any], + ]: + success, _ = super().parse_datacube_id(datacube_id) + if not success: + return False, {} + + # datacube-firm_area-- + segments = datacube_id.split("-") + if len(segments) < 8: + return False, {} + + area_str = segments[2] + if area_str not in Area.values(): + return False, {} + + source_str = segments[3] + if source_str not in Source.values(): + return False, {} + + date = "{}-{}-{}".format(segments[4], segments[5], segments[6]) + + depth_str = segments[7] + if not depth_str.isdigit(): + return False, {} + + return ( + True, + { + "area": Area[area_str.upper()], + "source": Source[source_str], + "date": date, + "depth": int(depth_str), + }, + ) + + def ingest(self, object_name: str) -> Tuple[ + bool, + gpd.GeoDataFrame, + ]: + super().ingest(object_name) + + csv_filename = objects.path_of("firms_area.csv", object_name, create=True) + if not file.download( + self.ingest_url(), + csv_filename, + ): + return False, gpd.GeoDataFrame() + + data = pd.read_csv(csv_filename) + logger.info(f"loaded {len(data):,} point(s).") + + gdf = gpd.GeoDataFrame( + data, + geometry=[ + Point(xy) + for xy in zip( + data.longitude, + data.latitude, + ) + ], + crs="EPSG:4326", # WGS84 + ) + + if not file.save_geojson( + objects.path_of("firms_area.geojson", object_name), + gdf, + ): + return False, gdf + + if not metadata.post_to_object( + object_name, + "datacube", + { + "id": self.datacube_id, + "source": self.source.name, + "area": self.area.name, + "date": self.date, + "depth": self.depth, + "len": len(gdf), + }, + ): + return False, gdf + + return True, gdf + + def ingest_url(self, html: bool = False) -> str: + return "{}/{}/{}/{}/{}/{}/{}".format( + self.url_prefix, + "html" if html else "csv", + self.map_key, + self.source.name, + self.area.name.lower(), + self.depth, # day_range + self.date, + ) diff --git a/blue_geo/firms/api/area/enums.py b/blue_geo/datacube/firms/area/enums.py similarity index 100% rename from blue_geo/firms/api/area/enums.py rename to blue_geo/datacube/firms/area/enums.py diff --git a/blue_geo/datacube/generic.py b/blue_geo/datacube/generic.py new file mode 100644 index 00000000..0968a82e --- /dev/null +++ b/blue_geo/datacube/generic.py @@ -0,0 +1,50 @@ +from typing import Any, Tuple, Dict +from . import NAME +from blue_geo.logger import logger + + +class GenericDatacube: + catalog = "generic" + + def __init__( + self, + datacube_id: str = "", + log: bool = True, + ): + pass + + @property + def datacube_id(self) -> str: + return f"datacube-{self.catalog}" + + @property + def description(self) -> str: + return "{}.{}@{}[{}]:".format( + NAME, + self.__class__.__name__, + self.catalog, + self.datacube_id, + ) + + def ingest(self, object_name: str) -> Tuple[bool, Any]: + logger.info( + "{}.{} -> {}".format( + NAME, + self.__class__.__name__, + object_name, + ) + ) + return True, None + + @classmethod + def parse_datacube_id(cls, datacube_id: str) -> Tuple[ + bool, + Dict[str, Any], + ]: + # datacube-- + segments = datacube_id.split("-") + ["", ""] + + return ( + segments[0] == "datacube" and segments[1] == cls.catalog, + {}, + ) diff --git a/blue_geo/datacube/query.py b/blue_geo/datacube/query.py new file mode 100644 index 00000000..2e516e5e --- /dev/null +++ b/blue_geo/datacube/query.py @@ -0,0 +1,104 @@ +import argparse +from blue_geo import VERSION +from abcli.plugins.metadata import get_from_object +from blue_geo.datacube import NAME +from blue_geo.logger import logger +from blueness.argparse.generic import sys_exit + +parser = argparse.ArgumentParser(NAME, description=f"{NAME}-{VERSION}") +parser.add_argument( + "task", + type=str, + help="read", +) +parser.add_argument( + "--count", + type=int, + default=1, +) +parser.add_argument( + "--delim", + type=str, + default=",", +) +parser.add_argument( + "--offset", + type=int, + default=0, +) +parser.add_argument( + "--prefix", + type=str, + default="", +) +parser.add_argument( + "--suffix", + type=str, + default="", +) +parser.add_argument( + "--contains", + type=str, + default="", +) +parser.add_argument( + "--notcontains", + type=str, + default="", +) +parser.add_argument( + "--object_name", + type=str, +) +parser.add_argument( + "--log", + default=0, + type=int, + help="0|1", +) +parser.add_argument( + "--show_len", + default=0, + type=int, + help="0|1", +) +args = parser.parse_args() + +delim = " " if args.delim == "space" else args.delim + +success = False +if args.task == "read": + success = True + output = get_from_object( + args.object_name, + "datacube_id", + [], + ) + + output = [ + datacube_id + for datacube_id in output + if (not args.prefix or datacube_id.startswith(args.prefix)) + and (not args.suffix or datacube_id.endswith(args.suffix)) + and (not args.contains or args.contains in datacube_id) + and (not args.notcontains or args.notcontains not in datacube_id) + ] + + output = output[args.offset :] + + if args.count != -1: + output = output[: args.count] + + if args.log: + logger.info( + "{:,} datacube-id(s){}".format( + len(output), + "" if args.show_len else f": {delim.join(output)}", + ) + ) + else: + print(len(output) if args.show_len else delim.join(output)) +else: + success = None + +sys_exit(logger, NAME, args.task, success) diff --git a/blue_geo/env.py b/blue_geo/env.py index 8d2b4013..7c6ad06a 100644 --- a/blue_geo/env.py +++ b/blue_geo/env.py @@ -5,6 +5,17 @@ load_config(__name__) -UKRAINE_TIMEMAP_TEMPLATE = os.getenv("UKRAINE_TIMEMAP_TEMPLATE", "") +BLUE_GEO_UKRAINE_TIMEMAP_QGIS_TEMPLATE = os.getenv( + "BLUE_GEO_UKRAINE_TIMEMAP_QGIS_TEMPLATE", "" +) + +BLUE_GEO_FIRMS_AREA_QGIS_TEMPLATE = os.getenv( + "BLUE_GEO_FIRMS_AREA_QGIS_TEMPLATE", + "", +) FIRMS_MAP_KEY = os.getenv("FIRMS_MAP_KEY", "") + +QGIS_TEMPLATES = { + "firms_area": BLUE_GEO_FIRMS_AREA_QGIS_TEMPLATE, +} diff --git a/blue_geo/firms/README.md b/blue_geo/firms/README.md deleted file mode 100644 index 74385cbb..00000000 --- a/blue_geo/firms/README.md +++ /dev/null @@ -1,35 +0,0 @@ -# 🌐 firms - -[FIRMS](https://firms.modaps.eosdis.nasa.gov): Fire Information for Resource Management System. - -map-key: https://firms.modaps.eosdis.nasa.gov/api/map_key/ - -area api: https://firms.modaps.eosdis.nasa.gov/api/area/ - -```bash -pip install blue-geo -``` - -```bash - > blue_geo ingest firms \ - [dryrun,~upload] \ - [.|] \ - [--date 2024-07-16] \ - [depth 1] \ - [--area east|north|south|west|world] \ - [--source LANDSAT_NRT|MODIS_NRT|MODIS_SP|VIIRS_NOAA20_NRT|VIIRS_NOAA21_NRT|VIIRS_SNPP_NRT|VIIRS_SNPP_SP] \ - [--log 1] - . firms -ingest-> . -``` - -```bash -@select firms-$(@@timestamp) -blue_geo ingest firms - . -@publish tar . -``` - -πŸ”₯ log - -![image](https://raw.githubusercontent.com/kamangir/assets/main/blue-geo/firms.jpg) - -πŸ”₯ public link \ No newline at end of file diff --git a/blue_geo/firms/api/__init__.py b/blue_geo/firms/api/__init__.py deleted file mode 100644 index f096e766..00000000 --- a/blue_geo/firms/api/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -from blue_geo.firms import NAME - -NAME = f"{NAME}.api" diff --git a/blue_geo/firms/api/area/classes.py b/blue_geo/firms/api/area/classes.py deleted file mode 100644 index 2e12291e..00000000 --- a/blue_geo/firms/api/area/classes.py +++ /dev/null @@ -1,112 +0,0 @@ -from typing import Tuple -from datetime import datetime, timedelta -import pandas as pd -import geopandas as gpd -from shapely.geometry import Point -from . import NAME -from .enums import Area, Source -from abcli import file -from abcli.modules import objects -from blue_geo import env -from blue_geo.logger import logger - - -class APIRequest: - def __init__( - self, - source: Source = Source.default(), - area: Area = Area.default(), - date: str = "", - depth: int = 1, - log: bool = True, - ): - self.prefix = "https://firms.modaps.eosdis.nasa.gov" - self.map_key = env.FIRMS_MAP_KEY - - self.area: Area = area - self.source: Source = source - - self.depth: int = depth - - self.date: str = ( - date if date else (datetime.now() - timedelta(days=5)).strftime("%Y-%m-%d") - ) - - if log: - logger.info(self.as_str()) - - def as_str(self) -> str: - return "{}.{}, area:{}, source: {} ({})".format( - NAME, - self.__class__.__name__, - self.area.name.lower(), - self.source.name, - self.source.description, - ) - - @property - def datacube_id(self) -> str: - return "blue-geo-firms-{}-{}".format( - self.area.name.lower(), - self.source.name, - ) - - def ingest(self, object_name: str) -> Tuple[ - bool, - gpd.GeoDataFrame, - ]: - logger.info( - "{}.{} -> {}".format( - NAME, - self.__class__.__name__, - object_name, - ) - ) - - csv_filename = objects.path_of( - f"{object_name}.csv", - object_name, - create=True, - ) - if not file.download( - self.url(), - csv_filename, - ): - return False, gpd.GeoDataFrame() - - data = pd.read_csv(csv_filename) - logger.info(f"loaded {len(data):,} point(s).") - - gdf = gpd.GeoDataFrame( - data, - geometry=[ - Point(xy) - for xy in zip( - data.longitude, - data.latitude, - ) - ], - crs="EPSG:4326", # WGS84 - ) - - return ( - file.save_geojson( - objects.path_of( - f"{object_name}.geojson", - object_name, - ), - gdf, - ), - gdf, - ) - - def url(self, html: bool = False) -> str: - return "{}/api/area/{}/{}/{}/{}/{}/{}".format( - self.prefix, - "html" if html else "csv", - self.map_key, - self.source.name, - self.area.name.lower(), - self.depth, # day_range - self.date, - ) diff --git a/blue_geo/tests/__init__.py b/blue_geo/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/blue_geo/tests/assets.py b/blue_geo/tests/assets.py new file mode 100644 index 00000000..57453621 --- /dev/null +++ b/blue_geo/tests/assets.py @@ -0,0 +1,14 @@ +datacube_generic_parse_datacube_id = [ + ["void", False], + ["void-void-void-void-void-void-void-void", False], + ["datacube-void-void-void", False], + ["datacube-generic", True], +] + +datacube_firms_area_parse_datacube_id = [ + ["datacube-firms_void-void-void-void-void", False], + ["datacube-firms_area-void-void-void-void", False], + ["datacube-firms_area-world-void-2024-07-20-1", False], + ["datacube-firms_area-void-MODIS_NRT-2024-07-20-1", False], + ["datacube-firms_area-world-MODIS_NRT-2024-07-20-1", True], +] diff --git a/blue_geo/tests/test_datacube_catalogs.py b/blue_geo/tests/test_datacube_catalogs.py new file mode 100644 index 00000000..ca4f5e89 --- /dev/null +++ b/blue_geo/tests/test_datacube_catalogs.py @@ -0,0 +1,34 @@ +import pytest +from blue_geo.tests import assets +from blue_geo.datacube.catalogs import catalog_of + + +@pytest.mark.parametrize( + ["datacube_id", "expected_success", "expected_catalog"], + [ + asset + + [ + "generic", + ] + for asset in assets.datacube_generic_parse_datacube_id + ] + + [ + asset + + [ + "firms_area", + ] + for asset in assets.datacube_firms_area_parse_datacube_id + ], +) +def test_catalog_of( + datacube_id: str, + expected_success: bool, + expected_catalog: str, +): + success, catalog = catalog_of(datacube_id) + + assert success == expected_success + if success: + assert catalog == expected_catalog + else: + assert catalog == "unknown-catalog" diff --git a/blue_geo/tests/test_datacube_firms_area.py b/blue_geo/tests/test_datacube_firms_area.py new file mode 100644 index 00000000..a77712d8 --- /dev/null +++ b/blue_geo/tests/test_datacube_firms_area.py @@ -0,0 +1,75 @@ +import pytest +import geopandas as gpd +from abcli.modules.objects import unique_object +from blue_geo.tests import assets +from blue_geo.datacube.firms.area import enums, FirmsAreaDatacube + + +@pytest.mark.parametrize( + ["area", "source"], + [ + [ + enums.Area.default(), + enums.Source.default(), + ], + ], +) +def test_datacube_from_query( + area: enums.Area, + source: enums.Source, +): + object_name = unique_object() + + datacube = FirmsAreaDatacube(area=area, source=source) + + assert datacube.description + + assert datacube.ingest_url() + + assert datacube.ingest_url(html=True) + + success, gdf = datacube.ingest(object_name) + assert success + assert isinstance(gdf, gpd.GeoDataFrame) + + assert datacube.datacube_id + + +@pytest.mark.parametrize( + ["datacube_id"], + [ + ["datacube-firms_area-world-MODIS_NRT-2024-07-20-1"], + ], +) +def test_datacube_from_datacube_id( + datacube_id: str, +): + object_name = unique_object() + + datacube = FirmsAreaDatacube(datacube_id=datacube_id) + + assert datacube.description + + assert datacube.ingest_url() + + assert datacube.ingest_url(html=True) + + success, gdf = datacube.ingest(object_name) + assert success + assert isinstance(gdf, gpd.GeoDataFrame) + + assert datacube.datacube_id + + +@pytest.mark.parametrize( + ["datacube_id", "expected_success"], + assets.datacube_firms_area_parse_datacube_id, +) +def test_parse_datacube_id( + datacube_id: str, + expected_success: bool, +): + success, segments = FirmsAreaDatacube.parse_datacube_id(datacube_id) + assert success == expected_success + if success: + assert segments diff --git a/blue_geo/tests/test_datacube_generic.py b/blue_geo/tests/test_datacube_generic.py new file mode 100644 index 00000000..a7d4512d --- /dev/null +++ b/blue_geo/tests/test_datacube_generic.py @@ -0,0 +1,48 @@ +import pytest +from abcli.modules.objects import unique_object +from blue_geo.tests import assets +from blue_geo.datacube.generic import GenericDatacube + + +def test_datacube(): + object_name = unique_object() + + datacube = GenericDatacube() + + assert datacube.datacube_id + + assert datacube.description + + success, _ = datacube.ingest(object_name) + assert success + + +@pytest.mark.parametrize( + ["datacube_id"], + [ + ["datacube-generic"], + ], +) +def test_datacube_from_datacube_id(datacube_id: str): + object_name = unique_object() + + datacube = GenericDatacube(datacube_id) + + assert datacube.datacube_id + + assert datacube.description + + success, _ = datacube.ingest(object_name) + assert success + + +@pytest.mark.parametrize( + ["datacube_id", "expected_success"], + assets.datacube_generic_parse_datacube_id, +) +def test_parse_datacube_id( + datacube_id: str, + expected_success: bool, +): + success, _ = GenericDatacube.parse_datacube_id(datacube_id) + assert success == expected_success diff --git a/blue_geo/tests/test_env.py b/blue_geo/tests/test_env.py index 718ede48..1d629455 100644 --- a/blue_geo/tests/test_env.py +++ b/blue_geo/tests/test_env.py @@ -7,5 +7,6 @@ def test_abcli_env(): def test_blue_geo_env(): - assert env.UKRAINE_TIMEMAP_TEMPLATE + assert env.BLUE_GEO_UKRAINE_TIMEMAP_QGIS_TEMPLATE + assert env.BLUE_GEO_FIRMS_AREA_QGIS_TEMPLATE assert env.FIRMS_MAP_KEY diff --git a/blue_geo/tests/test_firms_api_area.py b/blue_geo/tests/test_firms_api_area.py deleted file mode 100644 index 3a070fd4..00000000 --- a/blue_geo/tests/test_firms_api_area.py +++ /dev/null @@ -1,35 +0,0 @@ -import pytest -from blue_geo.firms.api.area import enums -from abcli.modules.objects import unique_object -from blue_geo.firms.api.area.classes import APIRequest -import geopandas as gpd - - -@pytest.mark.parametrize( - ["area", "source"], - [ - [ - enums.Area.default(), - enums.Source.default(), - ], - ], -) -def test_blue_geo_firms_api_area( - area: enums.Area, - source: enums.Source, -): - object_name = unique_object() - - api_request = APIRequest(area=area, source=source) - - assert api_request.as_str() - - assert api_request.url() - - assert api_request.url(html=True) - - success, gdf = api_request.ingest(object_name) - assert success - assert isinstance(gdf, gpd.GeoDataFrame) - - assert api_request.datacube_id diff --git a/notebooks/firms-area-api.ipynb b/notebooks/firms-area-api.ipynb index 860bf74e..d5ea76d8 100644 --- a/notebooks/firms-area-api.ipynb +++ b/notebooks/firms-area-api.ipynb @@ -7,7 +7,7 @@ "source": [ "# FIRMS Area API\n", "\n", - "https://github.com/kamangir/blue-geo/blob/main/blue_geo/firms/README.md" + "https://github.com/kamangir/blue-geo/blob/main/blue_geo/.abcli/datacube/firms/README.md" ] }, { @@ -29,14 +29,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "🌐 abcli-9.163.1, built on 16 July 2024, 20:31:32\n" + "🌐 abcli-9.171.1, built on 20 July 2024, 13:35:11\n" ] } ], "source": [ "from abcli import fullname\n", "from abcli import string\n", - "from blue_geo.firms.api.area.classes import APIRequest\n", + "from blue_geo.datacube.firms.area import FirmsAreaDatacube\n", "from blue_geo.notebooks import show_on_map\n", "from blue_geo.logger import logger\n", "\n", @@ -69,16 +69,18 @@ "name": "stderr", "output_type": "stream", "text": [ - "🌐 blue_geo.firms.api.area.APIRequest, area:world, source: MODIS_NRT (MODIS Near Real-Time, Real-Time and Ultra Real-Time)\n", - "🌐 blue_geo.firms.api.area.APIRequest -> firms-2024-07-16-20-31-32-12539\n", - ":: abcli.file: https://firms.modaps.eosdis.nasa.gov/api/area/csv/916ad54ef3787ac6c73802eed8c61735/MODIS_NRT/world/1/2024-07-11 -> /Users/kamangir/storage/abcli/firms-2024-07-16-20-31-32-12539/firms-2024-07-16-20-31-32-12539.csv\n", - "🌐 loaded 22,722 point(s).\n" + "🌐 blue_geo.datacube.FirmsAreaDatacube: firms_area, area:world, source: MODIS_NRT (MODIS Near Real-Time, Real-Time and Ultra Real-Time)\n", + "🌐 blue_geo.datacube.FirmsAreaDatacube -> firms-2024-07-20-13-35-11-27671\n", + ":: abcli.file: https://firms.modaps.eosdis.nasa.gov/api/area/csv/916ad54ef3787ac6c73802eed8c61735/MODIS_NRT/world/1/2024-07-15 -> /Users/kamangir/storage/abcli/firms-2024-07-20-13-35-11-27671/firms.csv\n", + "🌐 loaded 19,786 point(s).\n", + ":: abcli.plugins.metadata.post[/Users/kamangir/storage/abcli/firms-2024-07-20-13-35-11-27671/metadata.yaml]: datacube\n", + ":: save_yaml: datacube -> /Users/kamangir/storage/abcli/firms-2024-07-20-13-35-11-27671/metadata.yaml.\n" ] } ], "source": [ - "api_request = APIRequest()\n", - "success, gdf = api_request.ingest(object_name)\n", + "datacube = FirmsAreaDatacube()\n", + "success, gdf = datacube.ingest(object_name)\n", "assert success" ] }, @@ -128,93 +130,93 @@ " \n", " \n", " 0\n", - " 63.81613\n", - " 157.91534\n", - " 312.05\n", - " 1.02\n", - " 1.01\n", - " 2024-07-11\n", - " 26\n", + " 30.48004\n", + " 140.30499\n", + " 310.67\n", + " 3.57\n", + " 1.77\n", + " 2024-07-15\n", + " 3\n", " Terra\n", " MODIS\n", - " 34\n", + " 42\n", " 6.1NRT\n", - " 299.89\n", - " 5.14\n", + " 294.83\n", + " 45.73\n", " D\n", - " POINT (157.91534 63.81613)\n", + " POINT (140.30499 30.48004)\n", " \n", " \n", " 1\n", - " 67.54002\n", - " 145.64272\n", - " 322.42\n", - " 1.78\n", - " 1.31\n", - " 2024-07-11\n", - " 26\n", + " -9.68397\n", + " 148.52379\n", + " 305.43\n", + " 2.42\n", + " 1.50\n", + " 2024-07-15\n", + " 11\n", " Terra\n", " MODIS\n", - " 0\n", + " 61\n", " 6.1NRT\n", - " 299.61\n", - " 35.96\n", + " 289.31\n", + " 17.60\n", " D\n", - " POINT (145.64272 67.54002)\n", + " POINT (148.52379 -9.68397)\n", " \n", " \n", " 2\n", - " 67.68925\n", - " 146.54396\n", - " 339.14\n", - " 1.68\n", - " 1.28\n", - " 2024-07-11\n", - " 26\n", + " -9.68000\n", + " 148.51765\n", + " 302.94\n", + " 2.42\n", + " 1.50\n", + " 2024-07-15\n", + " 11\n", " Terra\n", " MODIS\n", - " 85\n", + " 54\n", " 6.1NRT\n", - " 300.69\n", - " 79.54\n", + " 289.16\n", + " 12.90\n", " D\n", - " POINT (146.54396 67.68925)\n", + " POINT (148.51765 -9.68000)\n", " \n", " \n", " 3\n", - " 67.69433\n", - " 146.46527\n", - " 311.53\n", - " 1.69\n", - " 1.28\n", - " 2024-07-11\n", - " 26\n", + " -5.92378\n", + " 146.94067\n", + " 312.43\n", + " 1.59\n", + " 1.24\n", + " 2024-07-15\n", + " 11\n", " Terra\n", " MODIS\n", - " 50\n", + " 43\n", " 6.1NRT\n", - " 298.46\n", - " 14.50\n", + " 295.34\n", + " 11.40\n", " D\n", - " POINT (146.46527 67.69433)\n", + " POINT (146.94067 -5.92378)\n", " \n", " \n", " 4\n", - " 67.69547\n", - " 146.62668\n", - " 327.79\n", - " 1.68\n", - " 1.27\n", - " 2024-07-11\n", - " 26\n", + " -15.38558\n", + " 141.65868\n", + " 315.29\n", + " 1.04\n", + " 1.02\n", + " 2024-07-15\n", + " 13\n", " Terra\n", " MODIS\n", - " 84\n", + " 50\n", " 6.1NRT\n", - " 299.46\n", - " 45.75\n", + " 299.32\n", + " 7.43\n", " D\n", - " POINT (146.62668 67.69547)\n", + " POINT (141.65868 -15.38558)\n", " \n", " \n", "\n", @@ -222,25 +224,25 @@ ], "text/plain": [ " latitude longitude brightness scan track acq_date acq_time \\\n", - "0 63.81613 157.91534 312.05 1.02 1.01 2024-07-11 26 \n", - "1 67.54002 145.64272 322.42 1.78 1.31 2024-07-11 26 \n", - "2 67.68925 146.54396 339.14 1.68 1.28 2024-07-11 26 \n", - "3 67.69433 146.46527 311.53 1.69 1.28 2024-07-11 26 \n", - "4 67.69547 146.62668 327.79 1.68 1.27 2024-07-11 26 \n", + "0 30.48004 140.30499 310.67 3.57 1.77 2024-07-15 3 \n", + "1 -9.68397 148.52379 305.43 2.42 1.50 2024-07-15 11 \n", + "2 -9.68000 148.51765 302.94 2.42 1.50 2024-07-15 11 \n", + "3 -5.92378 146.94067 312.43 1.59 1.24 2024-07-15 11 \n", + "4 -15.38558 141.65868 315.29 1.04 1.02 2024-07-15 13 \n", "\n", " satellite instrument confidence version bright_t31 frp daynight \\\n", - "0 Terra MODIS 34 6.1NRT 299.89 5.14 D \n", - "1 Terra MODIS 0 6.1NRT 299.61 35.96 D \n", - "2 Terra MODIS 85 6.1NRT 300.69 79.54 D \n", - "3 Terra MODIS 50 6.1NRT 298.46 14.50 D \n", - "4 Terra MODIS 84 6.1NRT 299.46 45.75 D \n", + "0 Terra MODIS 42 6.1NRT 294.83 45.73 D \n", + "1 Terra MODIS 61 6.1NRT 289.31 17.60 D \n", + "2 Terra MODIS 54 6.1NRT 289.16 12.90 D \n", + "3 Terra MODIS 43 6.1NRT 295.34 11.40 D \n", + "4 Terra MODIS 50 6.1NRT 299.32 7.43 D \n", "\n", - " geometry \n", - "0 POINT (157.91534 63.81613) \n", - "1 POINT (145.64272 67.54002) \n", - "2 POINT (146.54396 67.68925) \n", - "3 POINT (146.46527 67.69433) \n", - "4 POINT (146.62668 67.69547) " + " geometry \n", + "0 POINT (140.30499 30.48004) \n", + "1 POINT (148.52379 -9.68397) \n", + "2 POINT (148.51765 -9.68000) \n", + "3 POINT (146.94067 -5.92378) \n", + "4 POINT (141.65868 -15.38558) " ] }, "execution_count": 5, @@ -287,7 +289,7 @@ " <meta name="viewport" content="width=device-width,\n", " initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />\n", " <style>\n", - " #map_71897978a005f7377ef500eb9c1b8336 {\n", + " #map_dec50c2e9912ed0baff54da87f21c4f7 {\n", " position: relative;\n", " width: 100.0%;\n", " height: 100.0%;\n", @@ -301,16 +303,16 @@ "<body>\n", " \n", " \n", - " <div class="folium-map" id="map_71897978a005f7377ef500eb9c1b8336" ></div>\n", + " <div class="folium-map" id="map_dec50c2e9912ed0baff54da87f21c4f7" ></div>\n", " \n", "</body>\n", "<script>\n", " \n", " \n", - " var map_71897978a005f7377ef500eb9c1b8336 = L.map(\n", - " "map_71897978a005f7377ef500eb9c1b8336",\n", + " var map_dec50c2e9912ed0baff54da87f21c4f7 = L.map(\n", + " "map_dec50c2e9912ed0baff54da87f21c4f7",\n", " {\n", - " center: [38.53448234999998, 97.95304642999996],\n", + " center: [42.42952081000002, 81.64892269000002],\n", " crs: L.CRS.EPSG3857,\n", " zoom: 5,\n", " zoomControl: true,\n", @@ -322,41 +324,41 @@ "\n", " \n", " \n", - " var tile_layer_b641077635f1eeeb860cfead4efa9ac4 = L.tileLayer(\n", + " var tile_layer_2b02e89cdf1d8744b824476667cc7d51 = L.tileLayer(\n", " "https://tile.openstreetmap.org/{z}/{x}/{y}.png",\n", " {"attribution": "\\u0026copy; \\u003ca href=\\"https://www.openstreetmap.org/copyright\\"\\u003eOpenStreetMap\\u003c/a\\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}\n", " );\n", " \n", " \n", - " tile_layer_b641077635f1eeeb860cfead4efa9ac4.addTo(map_71897978a005f7377ef500eb9c1b8336);\n", + " tile_layer_2b02e89cdf1d8744b824476667cc7d51.addTo(map_dec50c2e9912ed0baff54da87f21c4f7);\n", " \n", " \n", "\n", - " function geo_json_44bff450c24ee607d2f0debc86197ed0_onEachFeature(feature, layer) {\n", + " function geo_json_b0be9b43188cb0eab858ecb7a3988c88_onEachFeature(feature, layer) {\n", " layer.on({\n", " });\n", " };\n", - " var geo_json_44bff450c24ee607d2f0debc86197ed0 = L.geoJson(null, {\n", - " onEachFeature: geo_json_44bff450c24ee607d2f0debc86197ed0_onEachFeature,\n", + " var geo_json_b0be9b43188cb0eab858ecb7a3988c88 = L.geoJson(null, {\n", + " onEachFeature: geo_json_b0be9b43188cb0eab858ecb7a3988c88_onEachFeature,\n", " \n", " });\n", "\n", - " function geo_json_44bff450c24ee607d2f0debc86197ed0_add (data) {\n", - " geo_json_44bff450c24ee607d2f0debc86197ed0\n", + " function geo_json_b0be9b43188cb0eab858ecb7a3988c88_add (data) {\n", + " geo_json_b0be9b43188cb0eab858ecb7a3988c88\n", " .addData(data);\n", " }\n", - " geo_json_44bff450c24ee607d2f0debc86197ed0_add({"bbox": [-66.00459, -25.15834, 157.91534, 70.33776], "features": [{"bbox": [157.91534, 63.81613, 157.91534, 63.81613], "geometry": {"coordinates": [157.91534, 63.81613], "type": "Point"}, "id": "0", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.89, "brightness": 312.05, "confidence": 34, "daynight": "D", "frp": 5.14, "instrument": "MODIS", "latitude": 63.81613, "longitude": 157.91534, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.64272, 67.54002, 145.64272, 67.54002], "geometry": {"coordinates": [145.64272, 67.54002], "type": "Point"}, "id": "1", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.61, "brightness": 322.42, "confidence": 0, "daynight": "D", "frp": 35.96, "instrument": "MODIS", "latitude": 67.54002, "longitude": 145.64272, "satellite": "Terra", "scan": 1.78, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.54396, 67.68925, 146.54396, 67.68925], "geometry": {"coordinates": [146.54396, 67.68925], "type": "Point"}, "id": "2", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.69, "brightness": 339.14, "confidence": 85, "daynight": "D", "frp": 79.54, "instrument": "MODIS", "latitude": 67.68925, "longitude": 146.54396, "satellite": "Terra", "scan": 1.68, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.46527, 67.69433, 146.46527, 67.69433], "geometry": {"coordinates": [146.46527, 67.69433], "type": "Point"}, "id": "3", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 298.46, "brightness": 311.53, "confidence": 50, "daynight": "D", "frp": 14.5, "instrument": "MODIS", "latitude": 67.69433, "longitude": 146.46527, "satellite": "Terra", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.62668, 67.69547, 146.62668, 67.69547], "geometry": {"coordinates": [146.62668, 67.69547], "type": "Point"}, "id": "4", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.46, "brightness": 327.79, "confidence": 84, "daynight": "D", "frp": 45.75, "instrument": "MODIS", "latitude": 67.69547, "longitude": 146.62668, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.58769, 67.69802, 146.58769, 67.69802], "geometry": {"coordinates": [146.58769, 67.69802], "type": "Point"}, "id": "5", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.56, "brightness": 325.78, "confidence": 77, "daynight": "D", "frp": 40.3, "instrument": "MODIS", "latitude": 67.69802, "longitude": 146.58769, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.54872, 67.70056, 146.54872, 67.70056], "geometry": {"coordinates": [146.54872, 67.70056], "type": "Point"}, "id": "6", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.44, "brightness": 343.57, "confidence": 81, "daynight": "D", "frp": 95.06, "instrument": "MODIS", "latitude": 67.70056, "longitude": 146.54872, "satellite": "Terra", "scan": 1.68, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.50961, 67.7031, 146.50961, 67.7031], "geometry": {"coordinates": [146.50961, 67.7031], "type": "Point"}, "id": "7", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.44, "brightness": 357.2, "confidence": 75, "daynight": "D", "frp": 161.05, "instrument": "MODIS", "latitude": 67.7031, "longitude": 146.50961, "satellite": "Terra", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.63161, 67.70673, 146.63161, 67.70673], "geometry": {"coordinates": [146.63161, 67.70673], "type": "Point"}, "id": "8", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 298.53, "brightness": 312.57, "confidence": 63, "daynight": "D", "frp": 15.55, "instrument": "MODIS", "latitude": 67.70673, "longitude": 146.63161, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.63651, 67.718, 146.63651, 67.718], "geometry": {"coordinates": [146.63651, 67.718], "type": "Point"}, "id": "9", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 296.93, "brightness": 309.13, "confidence": 23, "daynight": "D", "frp": 10.15, "instrument": "MODIS", "latitude": 67.718, "longitude": 146.63651, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.43001, 67.73333, 145.43001, 67.73333], "geometry": {"coordinates": [145.43001, 67.73333], "type": "Point"}, "id": "10", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.16, "brightness": 317.85, "confidence": 0, "daynight": "D", "frp": 27.48, "instrument": "MODIS", "latitude": 67.73333, "longitude": 145.43001, "satellite": "Terra", "scan": 1.82, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.63704, 67.79739, 146.63704, 67.79739], "geometry": {"coordinates": [146.63704, 67.79739], "type": "Point"}, "id": "11", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 298.29, "brightness": 310.74, "confidence": 0, "daynight": "D", "frp": 12.08, "instrument": "MODIS", "latitude": 67.79739, "longitude": 146.63704, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.35466, 67.80397, 146.35466, 67.80397], "geometry": {"coordinates": [146.35466, 67.80397], "type": "Point"}, "id": "12", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.53, "brightness": 311.44, "confidence": 58, "daynight": "D", "frp": 12.54, "instrument": "MODIS", "latitude": 67.80397, "longitude": 146.35466, "satellite": "Terra", "scan": 1.71, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.31416, 67.80653, 146.31416, 67.80653], "geometry": {"coordinates": [146.31416, 67.80653], "type": "Point"}, "id": "13", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.65, "brightness": 313.17, "confidence": 64, "daynight": "D", "frp": 15.72, "instrument": "MODIS", "latitude": 67.80653, "longitude": 146.31416, "satellite": "Terra", "scan": 1.72, "track": 1.29, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.62854, 67.85402, 146.62854, 67.85402], "geometry": {"coordinates": [146.62854, 67.85402], "type": "Point"}, "id": "14", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 298.46, "brightness": 323.75, "confidence": 65, "daynight": "D", "frp": 33.92, "instrument": "MODIS", "latitude": 67.85402, "longitude": 146.62854, "satellite": "Terra", "scan": 1.68, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.58893, 67.85656, 146.58893, 67.85656], "geometry": {"coordinates": [146.58893, 67.85656], "type": "Point"}, "id": "15", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.56, "brightness": 324.96, "confidence": 64, "daynight": "D", "frp": 35.8, "instrument": "MODIS", "latitude": 67.85656, "longitude": 146.58893, "satellite": "Terra", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.92528, 67.86208, 145.92528, 67.86208], "geometry": {"coordinates": [145.92528, 67.86208], "type": "Point"}, "id": "16", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 301.16, "brightness": 318.73, "confidence": 40, "daynight": "D", "frp": 21.73, "instrument": "MODIS", "latitude": 67.86208, "longitude": 145.92528, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.96138, 67.86391, 145.96138, 67.86391], "geometry": {"coordinates": [145.96138, 67.86391], "type": "Point"}, "id": "17", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.9, "brightness": 325.64, "confidence": 45, "daynight": "D", "frp": 33.57, "instrument": "MODIS", "latitude": 67.86391, "longitude": 145.96138, "satellite": "Terra", "scan": 1.76, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.91965, 67.8665, 145.91965, 67.8665], "geometry": {"coordinates": [145.91965, 67.8665], "type": "Point"}, "id": "18", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.53, "brightness": 333.64, "confidence": 80, "daynight": "D", "frp": 58.96, "instrument": "MODIS", "latitude": 67.8665, "longitude": 145.91965, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.59386, 67.86787, 146.59386, 67.86787], "geometry": {"coordinates": [146.59386, 67.86787], "type": "Point"}, "id": "19", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.96, "brightness": 337.27, "confidence": 85, "daynight": "D", "frp": 68.22, "instrument": "MODIS", "latitude": 67.86787, "longitude": 146.59386, "satellite": "Terra", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.97173, 67.87116, 145.97173, 67.87116], "geometry": {"coordinates": [145.97173, 67.87116], "type": "Point"}, "id": "20", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.58, "brightness": 341.25, "confidence": 69, "daynight": "D", "frp": 84.45, "instrument": "MODIS", "latitude": 67.87116, "longitude": 145.97173, "satellite": "Terra", "scan": 1.76, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.92995, 67.87363, 145.92995, 67.87363], "geometry": {"coordinates": [145.92995, 67.87363], "type": "Point"}, "id": "21", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 305.58, "brightness": 361.24, "confidence": 0, "daynight": "D", "frp": 183.98, "instrument": "MODIS", "latitude": 67.87363, "longitude": 145.92995, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.47437, 67.87551, 146.47437, 67.87551], "geometry": {"coordinates": [146.47437, 67.87551], "type": "Point"}, "id": "22", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 301.83, "brightness": 336.22, "confidence": 77, "daynight": "D", "frp": 70.7, "instrument": "MODIS", "latitude": 67.87551, "longitude": 146.47437, "satellite": "Terra", "scan": 1.7, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.88789, 67.87611, 145.88789, 67.87611], "geometry": {"coordinates": [145.88789, 67.87611], "type": "Point"}, "id": "23", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.1, "brightness": 342.75, "confidence": 0, "daynight": "D", "frp": 96.5, "instrument": "MODIS", "latitude": 67.87611, "longitude": 145.88789, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.43442, 67.87804, 146.43442, 67.87804], "geometry": {"coordinates": [146.43442, 67.87804], "type": "Point"}, "id": "24", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.91, "brightness": 346.57, "confidence": 89, "daynight": "D", "frp": 112.55, "instrument": "MODIS", "latitude": 67.87804, "longitude": 146.43442, "satellite": "Terra", "scan": 1.71, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.64378, 67.88788, 146.64378, 67.88788], "geometry": {"coordinates": [146.64378, 67.88788], "type": "Point"}, "id": "25", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 297.76, "brightness": 314.47, "confidence": 35, "daynight": "D", "frp": 16.21, "instrument": "MODIS", "latitude": 67.88788, "longitude": 146.64378, "satellite": "Terra", "scan": 1.68, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.65421, 67.89684, 146.65421, 67.89684], "geometry": {"coordinates": [146.65421, 67.89684], "type": "Point"}, "id": "26", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.01, "brightness": 335.17, "confidence": 88, "daynight": "D", "frp": 65.7, "instrument": "MODIS", "latitude": 67.89684, "longitude": 146.65421, "satellite": "Terra", "scan": 1.68, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.64909, 67.89915, 146.64909, 67.89915], "geometry": {"coordinates": [146.64909, 67.89915], "type": "Point"}, "id": "27", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.46, "brightness": 333.89, "confidence": 88, "daynight": "D", "frp": 62.29, "instrument": "MODIS", "latitude": 67.89915, "longitude": 146.64909, "satellite": "Terra", "scan": 1.68, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.61507, 67.89928, 146.61507, 67.89928], "geometry": {"coordinates": [146.61507, 67.89928], "type": "Point"}, "id": "28", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.78, "brightness": 316.25, "confidence": 56, "daynight": "D", "frp": 20.04, "instrument": "MODIS", "latitude": 67.89928, "longitude": 146.61507, "satellite": "Terra", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.94864, 67.91988, 145.94864, 67.91988], "geometry": {"coordinates": [145.94864, 67.91988], "type": "Point"}, "id": "29", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.56, "brightness": 328.52, "confidence": 0, "daynight": "D", "frp": 43.03, "instrument": "MODIS", "latitude": 67.91988, "longitude": 145.94864, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.95334, 67.93144, 145.95334, 67.93144], "geometry": {"coordinates": [145.95334, 67.93144], "type": "Point"}, "id": "30", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.73, "brightness": 322.13, "confidence": 0, "daynight": "D", "frp": 28.01, "instrument": "MODIS", "latitude": 67.93144, "longitude": 145.95334, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.08221, 67.93535, 146.08221, 67.93535], "geometry": {"coordinates": [146.08221, 67.93535], "type": "Point"}, "id": "31", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 304.0, "brightness": 335.46, "confidence": 67, "daynight": "D", "frp": 59.28, "instrument": "MODIS", "latitude": 67.93535, "longitude": 146.08221, "satellite": "Terra", "scan": 1.75, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.13313, 67.94042, 146.13313, 67.94042], "geometry": {"coordinates": [146.13313, 67.94042], "type": "Point"}, "id": "32", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 304.22, "brightness": 354.09, "confidence": 0, "daynight": "D", "frp": 141.15, "instrument": "MODIS", "latitude": 67.94042, "longitude": 146.13313, "satellite": "Terra", "scan": 1.75, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.09174, 67.94289, 146.09174, 67.94289], "geometry": {"coordinates": [146.09174, 67.94289], "type": "Point"}, "id": "33", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 305.44, "brightness": 368.41, "confidence": 87, "daynight": "D", "frp": 232.24, "instrument": "MODIS", "latitude": 67.94289, "longitude": 146.09174, "satellite": "Terra", "scan": 1.75, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.9579, 67.94301, 145.9579, 67.94301], "geometry": {"coordinates": [145.9579, 67.94301], "type": "Point"}, "id": "34", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.92, "brightness": 330.14, "confidence": 0, "daynight": "D", "frp": 42.56, "instrument": "MODIS", "latitude": 67.94301, "longitude": 145.9579, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.12849, 67.94426, 146.12849, 67.94426], "geometry": {"coordinates": [146.12849, 67.94426], "type": "Point"}, "id": "35", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.11, "brightness": 330.09, "confidence": 35, "daynight": "D", "frp": 41.87, "instrument": "MODIS", "latitude": 67.94426, "longitude": 146.12849, "satellite": "Terra", "scan": 1.75, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.05014, 67.94535, 146.05014, 67.94535], "geometry": {"coordinates": [146.05014, 67.94535], "type": "Point"}, "id": "36", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.88, "brightness": 346.05, "confidence": 71, "daynight": "D", "frp": 105.53, "instrument": "MODIS", "latitude": 67.94535, "longitude": 146.05014, "satellite": "Terra", "scan": 1.76, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.08704, 67.94685, 146.08704, 67.94685], "geometry": {"coordinates": [146.08704, 67.94685], "type": "Point"}, "id": "37", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.66, "brightness": 354.62, "confidence": 92, "daynight": "D", "frp": 140.05, "instrument": "MODIS", "latitude": 67.94685, "longitude": 146.08704, "satellite": "Terra", "scan": 1.75, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.04549, 67.94944, 146.04549, 67.94944], "geometry": {"coordinates": [146.04549, 67.94944], "type": "Point"}, "id": "38", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.43, "brightness": 340.33, "confidence": 69, "daynight": "D", "frp": 78.09, "instrument": "MODIS", "latitude": 67.94944, "longitude": 146.04549, "satellite": "Terra", "scan": 1.76, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.0549, 67.95688, 146.0549, 67.95688], "geometry": {"coordinates": [146.0549, 67.95688], "type": "Point"}, "id": "39", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 295.78, "brightness": 313.09, "confidence": 44, "daynight": "D", "frp": 14.95, "instrument": "MODIS", "latitude": 67.95688, "longitude": 146.0549, "satellite": "Terra", "scan": 1.76, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.01814, 67.97089, 146.01814, 67.97089], "geometry": {"coordinates": [146.01814, 67.97089], "type": "Point"}, "id": "40", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 297.28, "brightness": 337.54, "confidence": 0, "daynight": "D", "frp": 78.75, "instrument": "MODIS", "latitude": 67.97089, "longitude": 146.01814, "satellite": "Terra", "scan": 1.76, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.91226, 68.24572, 146.91226, 68.24572], "geometry": {"coordinates": [146.91226, 68.24572], "type": "Point"}, "id": "41", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 303.08, "brightness": 318.99, "confidence": 34, "daynight": "D", "frp": 21.48, "instrument": "MODIS", "latitude": 68.24572, "longitude": 146.91226, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.87225, 68.24836, 146.87225, 68.24836], "geometry": {"coordinates": [146.87225, 68.24836], "type": "Point"}, "id": "42", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 303.24, "brightness": 342.14, "confidence": 92, "daynight": "D", "frp": 84.92, "instrument": "MODIS", "latitude": 68.24836, "longitude": 146.87225, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.832, 68.251, 146.832, 68.251], "geometry": {"coordinates": [146.832, 68.251], "type": "Point"}, "id": "43", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.62, "brightness": 338.92, "confidence": 90, "daynight": "D", "frp": 75.62, "instrument": "MODIS", "latitude": 68.251, "longitude": 146.832, "satellite": "Terra", "scan": 1.68, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.95724, 68.25433, 146.95724, 68.25433], "geometry": {"coordinates": [146.95724, 68.25433], "type": "Point"}, "id": "44", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.38, "brightness": 331.42, "confidence": 51, "daynight": "D", "frp": 45.9, "instrument": "MODIS", "latitude": 68.25433, "longitude": 146.95724, "satellite": "Terra", "scan": 1.67, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.92174, 68.25498, 146.92174, 68.25498], "geometry": {"coordinates": [146.92174, 68.25498], "type": "Point"}, "id": "45", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 306.28, "brightness": 363.31, "confidence": 87, "daynight": "D", "frp": 186.09, "instrument": "MODIS", "latitude": 68.25498, "longitude": 146.92174, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.91742, 68.25698, 146.91742, 68.25698], "geometry": {"coordinates": [146.91742, 68.25698], "type": "Point"}, "id": "46", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 308.4, "brightness": 373.4, "confidence": 100, "daynight": "D", "frp": 257.62, "instrument": "MODIS", "latitude": 68.25698, "longitude": 146.91742, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.88164, 68.25752, 146.88164, 68.25752], "geometry": {"coordinates": [146.88164, 68.25752], "type": "Point"}, "id": "47", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 307.42, "brightness": 358.75, "confidence": 86, "daynight": "D", "frp": 157.76, "instrument": "MODIS", "latitude": 68.25752, "longitude": 146.88164, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.87737, 68.25964, 146.87737, 68.25964], "geometry": {"coordinates": [146.87737, 68.25964], "type": "Point"}, "id": "48", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 308.75, "brightness": 364.73, "confidence": 100, "daynight": "D", "frp": 192.64, "instrument": "MODIS", "latitude": 68.25964, "longitude": 146.87737, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.84135, 68.26006, 146.84135, 68.26006], "geometry": {"coordinates": [146.84135, 68.26006], "type": "Point"}, "id": "49", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 306.16, "brightness": 371.45, "confidence": 87, "daynight": "D", "frp": 246.53, "instrument": "MODIS", "latitude": 68.26006, "longitude": 146.84135, "satellite": "Terra", "scan": 1.68, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.83713, 68.26228, 146.83713, 68.26228], "geometry": {"coordinates": [146.83713, 68.26228], "type": "Point"}, "id": "50", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 307.15, "brightness": 373.2, "confidence": 100, "daynight": "D", "frp": 261.02, "instrument": "MODIS", "latitude": 68.26228, "longitude": 146.83713, "satellite": "Terra", "scan": 1.68, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.96693, 68.26368, 146.96693, 68.26368], "geometry": {"coordinates": [146.96693, 68.26368], "type": "Point"}, "id": "51", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.93, "brightness": 329.29, "confidence": 80, "daynight": "D", "frp": 45.88, "instrument": "MODIS", "latitude": 68.26368, "longitude": 146.96693, "satellite": "Terra", "scan": 1.67, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.92723, 68.26622, 146.92723, 68.26622], "geometry": {"coordinates": [146.92723, 68.26622], "type": "Point"}, "id": "52", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 305.28, "brightness": 374.89, "confidence": 100, "daynight": "D", "frp": 270.75, "instrument": "MODIS", "latitude": 68.26622, "longitude": 146.92723, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.88693, 68.26878, 146.88693, 68.26878], "geometry": {"coordinates": [146.88693, 68.26878], "type": "Point"}, "id": "53", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 301.79, "brightness": 349.25, "confidence": 90, "daynight": "D", "frp": 115.87, "instrument": "MODIS", "latitude": 68.26878, "longitude": 146.88693, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.84654, 68.27134, 146.84654, 68.27134], "geometry": {"coordinates": [146.84654, 68.27134], "type": "Point"}, "id": "54", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 303.81, "brightness": 377.33, "confidence": 87, "daynight": "D", "frp": 297.56, "instrument": "MODIS", "latitude": 68.27134, "longitude": 146.84654, "satellite": "Terra", "scan": 1.68, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.07935, 68.36549, 146.07935, 68.36549], "geometry": {"coordinates": [146.07935, 68.36549], "type": "Point"}, "id": "55", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 298.05, "brightness": 312.38, "confidence": 64, "daynight": "D", "frp": 16.89, "instrument": "MODIS", "latitude": 68.36549, "longitude": 146.07935, "satellite": "Terra", "scan": 1.78, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.45387, 68.49338, 134.45387, 68.49338], "geometry": {"coordinates": [134.45387, 68.49338], "type": "Point"}, "id": "56", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 293.87, "brightness": 369.0, "confidence": 82, "daynight": "D", "frp": 780.46, "instrument": "MODIS", "latitude": 68.49338, "longitude": 134.45387, "satellite": "Terra", "scan": 3.92, "track": 1.84, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.4427, 68.50462, 134.4427, 68.50462], "geometry": {"coordinates": [134.4427, 68.50462], "type": "Point"}, "id": "57", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 296.28, "brightness": 359.75, "confidence": 94, "daynight": "D", "frp": 585.26, "instrument": "MODIS", "latitude": 68.50462, "longitude": 134.4427, "satellite": "Terra", "scan": 3.92, "track": 1.84, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.25072, 68.50867, 133.25072, 68.50867], "geometry": {"coordinates": [133.25072, 68.50867], "type": "Point"}, "id": "58", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 294.09, "brightness": 318.34, "confidence": 37, "daynight": "D", "frp": 79.18, "instrument": "MODIS", "latitude": 68.50867, "longitude": 133.25072, "satellite": "Terra", "scan": 4.25, "track": 1.91, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.35352, 68.51053, 133.35352, 68.51053], "geometry": {"coordinates": [133.35352, 68.51053], "type": "Point"}, "id": "59", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 296.09, "brightness": 322.02, "confidence": 53, "daynight": "D", "frp": 104.63, "instrument": "MODIS", "latitude": 68.51053, "longitude": 133.35352, "satellite": "Terra", "scan": 4.22, "track": 1.9, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.81294, 68.92354, 140.81294, 68.92354], "geometry": {"coordinates": [140.81294, 68.92354], "type": "Point"}, "id": "60", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 273.58, "brightness": 304.99, "confidence": 44, "daynight": "D", "frp": 25.61, "instrument": "MODIS", "latitude": 68.92354, "longitude": 140.81294, "satellite": "Terra", "scan": 2.56, "track": 1.54, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.07616, 68.92648, 143.07616, 68.92648], "geometry": {"coordinates": [143.07616, 68.92648], "type": "Point"}, "id": "61", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 298.6, "brightness": 332.74, "confidence": 82, "daynight": "D", "frp": 85.88, "instrument": "MODIS", "latitude": 68.92648, "longitude": 143.07616, "satellite": "Terra", "scan": 2.2, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.0217, 68.92858, 143.0217, 68.92858], "geometry": {"coordinates": [143.0217, 68.92858], "type": "Point"}, "id": "62", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 296.97, "brightness": 322.21, "confidence": 75, "daynight": "D", "frp": 49.35, "instrument": "MODIS", "latitude": 68.92858, "longitude": 143.0217, "satellite": "Terra", "scan": 2.21, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.96674, 68.93068, 142.96674, 68.93068], "geometry": {"coordinates": [142.96674, 68.93068], "type": "Point"}, "id": "63", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 295.19, "brightness": 319.62, "confidence": 73, "daynight": "D", "frp": 43.86, "instrument": "MODIS", "latitude": 68.93068, "longitude": 142.96674, "satellite": "Terra", "scan": 2.22, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.97064, 68.94357, 142.97064, 68.94357], "geometry": {"coordinates": [142.97064, 68.94357], "type": "Point"}, "id": "64", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 297.67, "brightness": 329.44, "confidence": 68, "daynight": "D", "frp": 70.4, "instrument": "MODIS", "latitude": 68.94357, "longitude": 142.97064, "satellite": "Terra", "scan": 2.22, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.20865, 68.98533, 143.20865, 68.98533], "geometry": {"coordinates": [143.20865, 68.98533], "type": "Point"}, "id": "65", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.3, "brightness": 316.16, "confidence": 54, "daynight": "D", "frp": 23.39, "instrument": "MODIS", "latitude": 68.98533, "longitude": 143.20865, "satellite": "Terra", "scan": 2.19, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.20297, 68.98631, 143.20297, 68.98631], "geometry": {"coordinates": [143.20297, 68.98631], "type": "Point"}, "id": "66", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.34, "brightness": 316.18, "confidence": 50, "daynight": "D", "frp": 24.24, "instrument": "MODIS", "latitude": 68.98631, "longitude": 143.20297, "satellite": "Terra", "scan": 2.19, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.70886, 68.99068, 142.70886, 68.99068], "geometry": {"coordinates": [142.70886, 68.99068], "type": "Point"}, "id": "67", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 291.16, "brightness": 330.56, "confidence": 41, "daynight": "D", "frp": 73.57, "instrument": "MODIS", "latitude": 68.99068, "longitude": 142.70886, "satellite": "Terra", "scan": 2.26, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.70357, 68.99303, 142.70357, 68.99303], "geometry": {"coordinates": [142.70357, 68.99303], "type": "Point"}, "id": "68", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 291.8, "brightness": 331.69, "confidence": 86, "daynight": "D", "frp": 87.33, "instrument": "MODIS", "latitude": 68.99303, "longitude": 142.70357, "satellite": "Terra", "scan": 2.26, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.64842, 68.99511, 142.64842, 68.99511], "geometry": {"coordinates": [142.64842, 68.99511], "type": "Point"}, "id": "69", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 291.56, "brightness": 318.76, "confidence": 52, "daynight": "D", "frp": 40.35, "instrument": "MODIS", "latitude": 68.99511, "longitude": 142.64842, "satellite": "Terra", "scan": 2.27, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.05261, 69.01729, 143.05261, 69.01729], "geometry": {"coordinates": [143.05261, 69.01729], "type": "Point"}, "id": "70", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.3, "brightness": 316.96, "confidence": 74, "daynight": "D", "frp": 24.34, "instrument": "MODIS", "latitude": 69.01729, "longitude": 143.05261, "satellite": "Terra", "scan": 2.21, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.73267, 69.06863, 142.73267, 69.06863], "geometry": {"coordinates": [142.73267, 69.06863], "type": "Point"}, "id": "71", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 297.67, "brightness": 342.81, "confidence": 92, "daynight": "D", "frp": 137.49, "instrument": "MODIS", "latitude": 69.06863, "longitude": 142.73267, "satellite": "Terra", "scan": 2.26, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.74274, 69.07903, 142.74274, 69.07903], "geometry": {"coordinates": [142.74274, 69.07903], "type": "Point"}, "id": "72", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 298.52, "brightness": 352.03, "confidence": 96, "daynight": "D", "frp": 196.68, "instrument": "MODIS", "latitude": 69.07903, "longitude": 142.74274, "satellite": "Terra", "scan": 2.26, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.68654, 69.08099, 142.68654, 69.08099], "geometry": {"coordinates": [142.68654, 69.08099], "type": "Point"}, "id": "73", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 297.36, "brightness": 324.54, "confidence": 56, "daynight": "D", "frp": 54.13, "instrument": "MODIS", "latitude": 69.08099, "longitude": 142.68654, "satellite": "Terra", "scan": 2.27, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.73604, 69.08165, 142.73604, 69.08165], "geometry": {"coordinates": [142.73604, 69.08165], "type": "Point"}, "id": "74", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 297.52, "brightness": 338.18, "confidence": 90, "daynight": "D", "frp": 113.34, "instrument": "MODIS", "latitude": 69.08165, "longitude": 142.73604, "satellite": "Terra", "scan": 2.26, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.67976, 69.08377, 142.67976, 69.08377], "geometry": {"coordinates": [142.67976, 69.08377], "type": "Point"}, "id": "75", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 296.71, "brightness": 323.69, "confidence": 72, "daynight": "D", "frp": 53.77, "instrument": "MODIS", "latitude": 69.08377, "longitude": 142.67976, "satellite": "Terra", "scan": 2.27, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.92393, 69.08908, 147.92393, 69.08908], "geometry": {"coordinates": [147.92393, 69.08908], "type": "Point"}, "id": "76", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 297.58, "brightness": 309.09, "confidence": 45, "daynight": "D", "frp": 9.08, "instrument": "MODIS", "latitude": 69.08908, "longitude": 147.92393, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.88385, 69.09183, 147.88385, 69.09183], "geometry": {"coordinates": [147.88385, 69.09183], "type": "Point"}, "id": "77", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 298.52, "brightness": 309.77, "confidence": 46, "daynight": "D", "frp": 10.28, "instrument": "MODIS", "latitude": 69.09183, "longitude": 147.88385, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.03326, 69.10768, 143.03326, 69.10768], "geometry": {"coordinates": [143.03326, 69.10768], "type": "Point"}, "id": "78", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 301.46, "brightness": 316.94, "confidence": 53, "daynight": "D", "frp": 22.46, "instrument": "MODIS", "latitude": 69.10768, "longitude": 143.03326, "satellite": "Terra", "scan": 2.22, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.97778, 69.10977, 142.97778, 69.10977], "geometry": {"coordinates": [142.97778, 69.10977], "type": "Point"}, "id": "79", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 298.59, "brightness": 325.7, "confidence": 81, "daynight": "D", "frp": 54.33, "instrument": "MODIS", "latitude": 69.10977, "longitude": 142.97778, "satellite": "Terra", "scan": 2.23, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.98668, 69.13554, 142.98668, 69.13554], "geometry": {"coordinates": [142.98668, 69.13554], "type": "Point"}, "id": "80", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.81, "brightness": 328.44, "confidence": 27, "daynight": "D", "frp": 56.48, "instrument": "MODIS", "latitude": 69.13554, "longitude": 142.98668, "satellite": "Terra", "scan": 2.23, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.83075, 69.14078, 147.83075, 69.14078], "geometry": {"coordinates": [147.83075, 69.14078], "type": "Point"}, "id": "81", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 298.68, "brightness": 323.53, "confidence": 0, "daynight": "D", "frp": 31.78, "instrument": "MODIS", "latitude": 69.14078, "longitude": 147.83075, "satellite": "Terra", "scan": 1.63, "track": 1.26, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.79022, 69.14347, 147.79022, 69.14347], "geometry": {"coordinates": [147.79022, 69.14347], "type": "Point"}, "id": "82", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.73, "brightness": 337.11, "confidence": 0, "daynight": "D", "frp": 67.41, "instrument": "MODIS", "latitude": 69.14347, "longitude": 147.79022, "satellite": "Terra", "scan": 1.64, "track": 1.26, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.37465, 69.14606, 143.37465, 69.14606], "geometry": {"coordinates": [143.37465, 69.14606], "type": "Point"}, "id": "83", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 298.66, "brightness": 316.23, "confidence": 42, "daynight": "D", "frp": 23.61, "instrument": "MODIS", "latitude": 69.14606, "longitude": 143.37465, "satellite": "Terra", "scan": 2.17, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.32051, 69.14828, 143.32051, 69.14828], "geometry": {"coordinates": [143.32051, 69.14828], "type": "Point"}, "id": "84", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 301.71, "brightness": 320.38, "confidence": 58, "daynight": "D", "frp": 32.2, "instrument": "MODIS", "latitude": 69.14828, "longitude": 143.32051, "satellite": "Terra", "scan": 2.18, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.99037, 69.14846, 142.99037, 69.14846], "geometry": {"coordinates": [142.99037, 69.14846], "type": "Point"}, "id": "85", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.68, "brightness": 336.84, "confidence": 79, "daynight": "D", "frp": 96.27, "instrument": "MODIS", "latitude": 69.14846, "longitude": 142.99037, "satellite": "Terra", "scan": 2.23, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.3786, 69.15881, 143.3786, 69.15881], "geometry": {"coordinates": [143.3786, 69.15881], "type": "Point"}, "id": "86", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.43, "brightness": 329.25, "confidence": 58, "daynight": "D", "frp": 59.36, "instrument": "MODIS", "latitude": 69.15881, "longitude": 143.3786, "satellite": "Terra", "scan": 2.17, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.99911, 69.15952, 142.99911, 69.15952], "geometry": {"coordinates": [142.99911, 69.15952], "type": "Point"}, "id": "87", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.35, "brightness": 346.93, "confidence": 94, "daynight": "D", "frp": 148.21, "instrument": "MODIS", "latitude": 69.15952, "longitude": 142.99911, "satellite": "Terra", "scan": 2.23, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.33023, 69.16008, 143.33023, 69.16008], "geometry": {"coordinates": [143.33023, 69.16008], "type": "Point"}, "id": "88", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.16, "brightness": 339.0, "confidence": 85, "daynight": "D", "frp": 97.66, "instrument": "MODIS", "latitude": 69.16008, "longitude": 143.33023, "satellite": "Terra", "scan": 2.18, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.32481, 69.16105, 143.32481, 69.16105], "geometry": {"coordinates": [143.32481, 69.16105], "type": "Point"}, "id": "89", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.32, "brightness": 337.84, "confidence": 90, "daynight": "D", "frp": 94.07, "instrument": "MODIS", "latitude": 69.16105, "longitude": 143.32481, "satellite": "Terra", "scan": 2.18, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.38252, 69.17158, 143.38252, 69.17158], "geometry": {"coordinates": [143.38252, 69.17158], "type": "Point"}, "id": "90", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.46, "brightness": 325.96, "confidence": 38, "daynight": "D", "frp": 47.21, "instrument": "MODIS", "latitude": 69.17158, "longitude": 143.38252, "satellite": "Terra", "scan": 2.17, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.33417, 69.17286, 143.33417, 69.17286], "geometry": {"coordinates": [143.33417, 69.17286], "type": "Point"}, "id": "91", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 302.11, "brightness": 354.26, "confidence": 97, "daynight": "D", "frp": 193.72, "instrument": "MODIS", "latitude": 69.17286, "longitude": 143.33417, "satellite": "Terra", "scan": 2.18, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.32869, 69.17384, 143.32869, 69.17384], "geometry": {"coordinates": [143.32869, 69.17384], "type": "Point"}, "id": "92", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 301.95, "brightness": 345.3, "confidence": 94, "daynight": "D", "frp": 134.03, "instrument": "MODIS", "latitude": 69.17384, "longitude": 143.32869, "satellite": "Terra", "scan": 2.18, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.94713, 69.17447, 142.94713, 69.17447], "geometry": {"coordinates": [142.94713, 69.17447], "type": "Point"}, "id": "93", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 297.84, "brightness": 336.73, "confidence": 60, "daynight": "D", "frp": 98.37, "instrument": "MODIS", "latitude": 69.17447, "longitude": 142.94713, "satellite": "Terra", "scan": 2.23, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.54361, 69.17545, 142.54361, 69.17545], "geometry": {"coordinates": [142.54361, 69.17545], "type": "Point"}, "id": "94", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 295.8, "brightness": 338.26, "confidence": 86, "daynight": "D", "frp": 110.71, "instrument": "MODIS", "latitude": 69.17545, "longitude": 142.54361, "satellite": "Terra", "scan": 2.29, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.53873, 69.17858, 142.53873, 69.17858], "geometry": {"coordinates": [142.53873, 69.17858], "type": "Point"}, "id": "95", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 296.7, "brightness": 347.29, "confidence": 90, "daynight": "D", "frp": 163.95, "instrument": "MODIS", "latitude": 69.17858, "longitude": 142.53873, "satellite": "Terra", "scan": 2.29, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.33813, 69.18564, 143.33813, 69.18564], "geometry": {"coordinates": [143.33813, 69.18564], "type": "Point"}, "id": "96", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.68, "brightness": 355.71, "confidence": 98, "daynight": "D", "frp": 204.16, "instrument": "MODIS", "latitude": 69.18564, "longitude": 143.33813, "satellite": "Terra", "scan": 2.18, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.54779, 69.18853, 142.54779, 69.18853], "geometry": {"coordinates": [142.54779, 69.18853], "type": "Point"}, "id": "97", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 296.19, "brightness": 353.16, "confidence": 97, "daynight": "D", "frp": 207.23, "instrument": "MODIS", "latitude": 69.18853, "longitude": 142.54779, "satellite": "Terra", "scan": 2.29, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.48935, 69.19051, 142.48935, 69.19051], "geometry": {"coordinates": [142.48935, 69.19051], "type": "Point"}, "id": "98", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 296.87, "brightness": 358.98, "confidence": 99, "daynight": "D", "frp": 260.67, "instrument": "MODIS", "latitude": 69.19051, "longitude": 142.48935, "satellite": "Terra", "scan": 2.3, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.54288, 69.19166, 142.54288, 69.19166], "geometry": {"coordinates": [142.54288, 69.19166], "type": "Point"}, "id": "99", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 296.3, "brightness": 362.58, "confidence": 100, "daynight": "D", "frp": 284.56, "instrument": "MODIS", "latitude": 69.19166, "longitude": 142.54288, "satellite": "Terra", "scan": 2.29, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.48459, 69.19379, 142.48459, 69.19379], "geometry": {"coordinates": [142.48459, 69.19379], "type": "Point"}, "id": "100", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 296.78, "brightness": 361.45, "confidence": 100, "daynight": "D", "frp": 280.91, "instrument": "MODIS", "latitude": 69.19379, "longitude": 142.48459, "satellite": "Terra", "scan": 2.3, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.34215, 69.19842, 143.34215, 69.19842], "geometry": {"coordinates": [143.34215, 69.19842], "type": "Point"}, "id": "101", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 299.33, "brightness": 339.18, "confidence": 89, "daynight": "D", "frp": 101.17, "instrument": "MODIS", "latitude": 69.19842, "longitude": 143.34215, "satellite": "Terra", "scan": 2.18, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.55241, 69.20159, 142.55241, 69.20159], "geometry": {"coordinates": [142.55241, 69.20159], "type": "Point"}, "id": "102", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 295.13, "brightness": 347.35, "confidence": 94, "daynight": "D", "frp": 172.09, "instrument": "MODIS", "latitude": 69.20159, "longitude": 142.55241, "satellite": "Terra", "scan": 2.29, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.49315, 69.20362, 142.49315, 69.20362], "geometry": {"coordinates": [142.49315, 69.20362], "type": "Point"}, "id": "103", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 295.38, "brightness": 355.19, "confidence": 98, "daynight": "D", "frp": 231.87, "instrument": "MODIS", "latitude": 69.20362, "longitude": 142.49315, "satellite": "Terra", "scan": 2.3, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.54765, 69.2047, 142.54765, 69.2047], "geometry": {"coordinates": [142.54765, 69.2047], "type": "Point"}, "id": "104", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 295.11, "brightness": 347.08, "confidence": 94, "daynight": "D", "frp": 162.07, "instrument": "MODIS", "latitude": 69.2047, "longitude": 142.54765, "satellite": "Terra", "scan": 2.29, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.48827, 69.20691, 142.48827, 69.20691], "geometry": {"coordinates": [142.48827, 69.20691], "type": "Point"}, "id": "105", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 294.46, "brightness": 341.63, "confidence": 91, "daynight": "D", "frp": 133.29, "instrument": "MODIS", "latitude": 69.20691, "longitude": 142.48827, "satellite": "Terra", "scan": 2.3, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.34583, 69.2112, 143.34583, 69.2112], "geometry": {"coordinates": [143.34583, 69.2112], "type": "Point"}, "id": "106", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 298.97, "brightness": 327.14, "confidence": 48, "daynight": "D", "frp": 51.65, "instrument": "MODIS", "latitude": 69.2112, "longitude": 143.34583, "satellite": "Terra", "scan": 2.18, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.5583, 69.21461, 142.5583, 69.21461], "geometry": {"coordinates": [142.5583, 69.21461], "type": "Point"}, "id": "107", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 294.9, "brightness": 363.02, "confidence": 100, "daynight": "D", "frp": 302.11, "instrument": "MODIS", "latitude": 69.21461, "longitude": 142.5583, "satellite": "Terra", "scan": 2.29, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.29623, 69.22615, 143.29623, 69.22615], "geometry": {"coordinates": [143.29623, 69.22615], "type": "Point"}, "id": "108", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 300.36, "brightness": 335.98, "confidence": 81, "daynight": "D", "frp": 86.66, "instrument": "MODIS", "latitude": 69.22615, "longitude": 143.29623, "satellite": "Terra", "scan": 2.19, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.07343, 69.23499, 143.07343, 69.23499], "geometry": {"coordinates": [143.07343, 69.23499], "type": "Point"}, "id": "109", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 306.56, "brightness": 381.09, "confidence": 100, "daynight": "D", "frp": 476.88, "instrument": "MODIS", "latitude": 69.23499, "longitude": 143.07343, "satellite": "Terra", "scan": 2.22, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.26416, 69.27826, 143.26416, 69.27826], "geometry": {"coordinates": [143.26416, 69.27826], "type": "Point"}, "id": "110", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 297.78, "brightness": 328.98, "confidence": 78, "daynight": "D", "frp": 69.55, "instrument": "MODIS", "latitude": 69.27826, "longitude": 143.26416, "satellite": "Terra", "scan": 2.19, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.20898, 69.2804, 143.20898, 69.2804], "geometry": {"coordinates": [143.20898, 69.2804], "type": "Point"}, "id": "111", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 298.77, "brightness": 318.51, "confidence": 31, "daynight": "D", "frp": 33.25, "instrument": "MODIS", "latitude": 69.2804, "longitude": 143.20898, "satellite": "Terra", "scan": 2.2, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.85153, 70.11002, 141.85153, 70.11002], "geometry": {"coordinates": [141.85153, 70.11002], "type": "Point"}, "id": "112", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 296.02, "brightness": 321.53, "confidence": 41, "daynight": "D", "frp": 47.6, "instrument": "MODIS", "latitude": 70.11002, "longitude": 141.85153, "satellite": "Terra", "scan": 2.45, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.85909, 70.11779, 141.85909, 70.11779], "geometry": {"coordinates": [141.85909, 70.11779], "type": "Point"}, "id": "113", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 295.56, "brightness": 322.92, "confidence": 62, "daynight": "D", "frp": 55.28, "instrument": "MODIS", "latitude": 70.11779, "longitude": 141.85909, "satellite": "Terra", "scan": 2.45, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.85472, 70.12351, 141.85472, 70.12351], "geometry": {"coordinates": [141.85472, 70.12351], "type": "Point"}, "id": "114", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 295.77, "brightness": 325.0, "confidence": 50, "daynight": "D", "frp": 60.03, "instrument": "MODIS", "latitude": 70.12351, "longitude": 141.85472, "satellite": "Terra", "scan": 2.45, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.86212, 70.13129, 141.86212, 70.13129], "geometry": {"coordinates": [141.86212, 70.13129], "type": "Point"}, "id": "115", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 295.52, "brightness": 335.9, "confidence": 77, "daynight": "D", "frp": 113.33, "instrument": "MODIS", "latitude": 70.13129, "longitude": 141.86212, "satellite": "Terra", "scan": 2.45, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.22797, 70.15198, 140.22797, 70.15198], "geometry": {"coordinates": [140.22797, 70.15198], "type": "Point"}, "id": "116", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 288.79, "brightness": 320.04, "confidence": 73, "daynight": "D", "frp": 62.81, "instrument": "MODIS", "latitude": 70.15198, "longitude": 140.22797, "satellite": "Terra", "scan": 2.71, "track": 1.58, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.23415, 70.15591, 140.23415, 70.15591], "geometry": {"coordinates": [140.23415, 70.15591], "type": "Point"}, "id": "117", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 289.12, "brightness": 322.9, "confidence": 80, "daynight": "D", "frp": 76.18, "instrument": "MODIS", "latitude": 70.15591, "longitude": 140.23415, "satellite": "Terra", "scan": 2.71, "track": 1.58, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.80359, 70.16016, 141.80359, 70.16016], "geometry": {"coordinates": [141.80359, 70.16016], "type": "Point"}, "id": "118", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 295.21, "brightness": 325.24, "confidence": 69, "daynight": "D", "frp": 69.15, "instrument": "MODIS", "latitude": 70.16016, "longitude": 141.80359, "satellite": "Terra", "scan": 2.46, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.47859, 70.18298, 141.47859, 70.18298], "geometry": {"coordinates": [141.47859, 70.18298], "type": "Point"}, "id": "119", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 294.96, "brightness": 309.47, "confidence": 22, "daynight": "D", "frp": 16.32, "instrument": "MODIS", "latitude": 70.18298, "longitude": 141.47859, "satellite": "Terra", "scan": 2.51, "track": 1.52, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.41278, 70.18477, 141.41278, 70.18477], "geometry": {"coordinates": [141.41278, 70.18477], "type": "Point"}, "id": "120", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 293.74, "brightness": 313.35, "confidence": 59, "daynight": "D", "frp": 27.24, "instrument": "MODIS", "latitude": 70.18477, "longitude": 141.41278, "satellite": "Terra", "scan": 2.52, "track": 1.53, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.24095, 70.21254, 140.24095, 70.21254], "geometry": {"coordinates": [140.24095, 70.21254], "type": "Point"}, "id": "121", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 282.91, "brightness": 307.1, "confidence": 50, "daynight": "D", "frp": 25.52, "instrument": "MODIS", "latitude": 70.21254, "longitude": 140.24095, "satellite": "Terra", "scan": 2.71, "track": 1.58, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.29494, 70.22173, 141.29494, 70.22173], "geometry": {"coordinates": [141.29494, 70.22173], "type": "Point"}, "id": "122", "properties": {"acq_date": "2024-07-11", "acq_time": 26, "bright_t31": 292.97, "brightness": 315.47, "confidence": 31, "daynight": "D", "frp": 37.15, "instrument": "MODIS", "latitude": 70.22173, "longitude": 141.29494, "satellite": "Terra", "scan": 2.54, "track": 1.53, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.87889, 27.23911, 140.87889, 27.23911], "geometry": {"coordinates": [140.87889, 27.23911], "type": "Point"}, "id": "123", "properties": {"acq_date": "2024-07-11", "acq_time": 39, "bright_t31": 304.75, "brightness": 320.68, "confidence": 28, "daynight": "D", "frp": 11.94, "instrument": "MODIS", "latitude": 27.23911, "longitude": 140.87889, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.89029, 27.24651, 140.89029, 27.24651], "geometry": {"coordinates": [140.89029, 27.24651], "type": "Point"}, "id": "124", "properties": {"acq_date": "2024-07-11", "acq_time": 39, "bright_t31": 304.33, "brightness": 318.97, "confidence": 23, "daynight": "D", "frp": 10.58, "instrument": "MODIS", "latitude": 27.24651, "longitude": 140.89029, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.88045, 27.24793, 140.88045, 27.24793], "geometry": {"coordinates": [140.88045, 27.24793], "type": "Point"}, "id": "125", "properties": {"acq_date": "2024-07-11", "acq_time": 39, "bright_t31": 308.82, "brightness": 325.63, "confidence": 73, "daynight": "D", "frp": 17.88, "instrument": "MODIS", "latitude": 27.24793, "longitude": 140.88045, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.60689, 67.68945, 146.60689, 67.68945], "geometry": {"coordinates": [146.60689, 67.68945], "type": "Point"}, "id": "126", "properties": {"acq_date": "2024-07-11", "acq_time": 41, "bright_t31": 295.51, "brightness": 312.85, "confidence": 66, "daynight": "D", "frp": 81.76, "instrument": "MODIS", "latitude": 67.68945, "longitude": 146.60689, "satellite": "Aqua", "scan": 4.64, "track": 1.97, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.60483, 67.69041, 146.60483, 67.69041], "geometry": {"coordinates": [146.60483, 67.69041], "type": "Point"}, "id": "127", "properties": {"acq_date": "2024-07-11", "acq_time": 41, "bright_t31": 295.43, "brightness": 312.8, "confidence": 66, "daynight": "D", "frp": 80.84, "instrument": "MODIS", "latitude": 67.69041, "longitude": 146.60483, "satellite": "Aqua", "scan": 4.64, "track": 1.97, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.55754, 67.8504, 146.55754, 67.8504], "geometry": {"coordinates": [146.55754, 67.8504], "type": "Point"}, "id": "128", "properties": {"acq_date": "2024-07-11", "acq_time": 41, "bright_t31": 295.73, "brightness": 314.43, "confidence": 54, "daynight": "D", "frp": 85.46, "instrument": "MODIS", "latitude": 67.8504, "longitude": 146.55754, "satellite": "Aqua", "scan": 4.54, "track": 1.96, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.61899, 67.88377, 146.61899, 67.88377], "geometry": {"coordinates": [146.61899, 67.88377], "type": "Point"}, "id": "129", "properties": {"acq_date": "2024-07-11", "acq_time": 41, "bright_t31": 295.79, "brightness": 316.59, "confidence": 65, "daynight": "D", "frp": 101.72, "instrument": "MODIS", "latitude": 67.88377, "longitude": 146.61899, "satellite": "Aqua", "scan": 4.5, "track": 1.95, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.54704, 67.85032, 146.54704, 67.85032], "geometry": {"coordinates": [146.54704, 67.85032], "type": "Point"}, "id": "130", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 295.5, "brightness": 311.42, "confidence": 46, "daynight": "D", "frp": 62.75, "instrument": "MODIS", "latitude": 67.85032, "longitude": 146.54704, "satellite": "Aqua", "scan": 4.54, "track": 1.96, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.60803, 67.88392, 146.60803, 67.88392], "geometry": {"coordinates": [146.60803, 67.88392], "type": "Point"}, "id": "131", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 295.63, "brightness": 314.72, "confidence": 62, "daynight": "D", "frp": 86.24, "instrument": "MODIS", "latitude": 67.88392, "longitude": 146.60803, "satellite": "Aqua", "scan": 4.5, "track": 1.95, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.08696, 67.91569, 146.08696, 67.91569], "geometry": {"coordinates": [146.08696, 67.91569], "type": "Point"}, "id": "132", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 298.4, "brightness": 323.99, "confidence": 0, "daynight": "D", "frp": 133.17, "instrument": "MODIS", "latitude": 67.91569, "longitude": 146.08696, "satellite": "Aqua", "scan": 4.57, "track": 1.96, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.09747, 67.91635, 146.09747, 67.91635], "geometry": {"coordinates": [146.09747, 67.91635], "type": "Point"}, "id": "133", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 298.46, "brightness": 325.6, "confidence": 0, "daynight": "D", "frp": 159.95, "instrument": "MODIS", "latitude": 67.91635, "longitude": 146.09747, "satellite": "Aqua", "scan": 4.57, "track": 1.96, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.05853, 67.92603, 146.05853, 67.92603], "geometry": {"coordinates": [146.05853, 67.92603], "type": "Point"}, "id": "134", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 297.82, "brightness": 344.67, "confidence": 0, "daynight": "D", "frp": 417.75, "instrument": "MODIS", "latitude": 67.92603, "longitude": 146.05853, "satellite": "Aqua", "scan": 4.57, "track": 1.96, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.90327, 68.23213, 146.90327, 68.23213], "geometry": {"coordinates": [146.90327, 68.23213], "type": "Point"}, "id": "135", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 297.91, "brightness": 318.54, "confidence": 0, "daynight": "D", "frp": 97.29, "instrument": "MODIS", "latitude": 68.23213, "longitude": 146.90327, "satellite": "Aqua", "scan": 4.22, "track": 1.9, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.84846, 68.24266, 146.84846, 68.24266], "geometry": {"coordinates": [146.84846, 68.24266], "type": "Point"}, "id": "136", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 297.91, "brightness": 332.9, "confidence": 58, "daynight": "D", "frp": 213.95, "instrument": "MODIS", "latitude": 68.24266, "longitude": 146.84846, "satellite": "Aqua", "scan": 4.22, "track": 1.9, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.82764, 68.25135, 146.82764, 68.25135], "geometry": {"coordinates": [146.82764, 68.25135], "type": "Point"}, "id": "137", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 298.65, "brightness": 371.68, "confidence": 75, "daynight": "D", "frp": 930.7, "instrument": "MODIS", "latitude": 68.25135, "longitude": 146.82764, "satellite": "Aqua", "scan": 4.22, "track": 1.9, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.96078, 68.26284, 146.96078, 68.26284], "geometry": {"coordinates": [146.96078, 68.26284], "type": "Point"}, "id": "138", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 296.53, "brightness": 318.74, "confidence": 0, "daynight": "D", "frp": 97.24, "instrument": "MODIS", "latitude": 68.26284, "longitude": 146.96078, "satellite": "Aqua", "scan": 4.19, "track": 1.9, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.88574, 68.28227, 146.88574, 68.28227], "geometry": {"coordinates": [146.88574, 68.28227], "type": "Point"}, "id": "139", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 294.99, "brightness": 335.12, "confidence": 0, "daynight": "D", "frp": 235.84, "instrument": "MODIS", "latitude": 68.28227, "longitude": 146.88574, "satellite": "Aqua", "scan": 4.19, "track": 1.9, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.8683, 68.2834, 146.8683, 68.2834], "geometry": {"coordinates": [146.8683, 68.2834], "type": "Point"}, "id": "140", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 294.42, "brightness": 337.38, "confidence": 68, "daynight": "D", "frp": 269.43, "instrument": "MODIS", "latitude": 68.2834, "longitude": 146.8683, "satellite": "Aqua", "scan": 4.19, "track": 1.9, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.08044, 68.92603, 143.08044, 68.92603], "geometry": {"coordinates": [143.08044, 68.92603], "type": "Point"}, "id": "141", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 294.34, "brightness": 310.4, "confidence": 19, "daynight": "D", "frp": 51.16, "instrument": "MODIS", "latitude": 68.92603, "longitude": 143.08044, "satellite": "Aqua", "scan": 4.34, "track": 1.92, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.99167, 68.94653, 142.99167, 68.94653], "geometry": {"coordinates": [142.99167, 68.94653], "type": "Point"}, "id": "142", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 293.11, "brightness": 309.65, "confidence": 31, "daynight": "D", "frp": 44.55, "instrument": "MODIS", "latitude": 68.94653, "longitude": 142.99167, "satellite": "Aqua", "scan": 4.34, "track": 1.92, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.82404, 69.13058, 147.82404, 69.13058], "geometry": {"coordinates": [147.82404, 69.13058], "type": "Point"}, "id": "143", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 295.34, "brightness": 309.88, "confidence": 0, "daynight": "D", "frp": 39.21, "instrument": "MODIS", "latitude": 69.13058, "longitude": 147.82404, "satellite": "Aqua", "scan": 3.55, "track": 1.77, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.79384, 69.13546, 147.79384, 69.13546], "geometry": {"coordinates": [147.79384, 69.13546], "type": "Point"}, "id": "144", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 296.02, "brightness": 332.86, "confidence": 0, "daynight": "D", "frp": 186.28, "instrument": "MODIS", "latitude": 69.13546, "longitude": 147.79384, "satellite": "Aqua", "scan": 3.55, "track": 1.77, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.32872, 69.13795, 143.32872, 69.13795], "geometry": {"coordinates": [143.32872, 69.13795], "type": "Point"}, "id": "145", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 298.48, "brightness": 323.71, "confidence": 70, "daynight": "D", "frp": 124.95, "instrument": "MODIS", "latitude": 69.13795, "longitude": 143.32872, "satellite": "Aqua", "scan": 4.17, "track": 1.89, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.31772, 69.14113, 143.31772, 69.14113], "geometry": {"coordinates": [143.31772, 69.14113], "type": "Point"}, "id": "146", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 298.85, "brightness": 322.58, "confidence": 73, "daynight": "D", "frp": 115.82, "instrument": "MODIS", "latitude": 69.14113, "longitude": 143.31772, "satellite": "Aqua", "scan": 4.17, "track": 1.89, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.37137, 69.17277, 143.37137, 69.17277], "geometry": {"coordinates": [143.37137, 69.17277], "type": "Point"}, "id": "147", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 296.89, "brightness": 316.99, "confidence": 42, "daynight": "D", "frp": 76.85, "instrument": "MODIS", "latitude": 69.17277, "longitude": 143.37137, "satellite": "Aqua", "scan": 4.14, "track": 1.88, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.33145, 69.18187, 143.33145, 69.18187], "geometry": {"coordinates": [143.33145, 69.18187], "type": "Point"}, "id": "148", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 297.15, "brightness": 328.76, "confidence": 61, "daynight": "D", "frp": 159.98, "instrument": "MODIS", "latitude": 69.18187, "longitude": 143.33145, "satellite": "Aqua", "scan": 4.14, "track": 1.88, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.06879, 69.23556, 143.06879, 69.23556], "geometry": {"coordinates": [143.06879, 69.23556], "type": "Point"}, "id": "149", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 298.09, "brightness": 338.42, "confidence": 62, "daynight": "D", "frp": 263.35, "instrument": "MODIS", "latitude": 69.23556, "longitude": 143.06879, "satellite": "Aqua", "scan": 4.14, "track": 1.88, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.25723, 69.28133, 143.25723, 69.28133], "geometry": {"coordinates": [143.25723, 69.28133], "type": "Point"}, "id": "150", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 294.11, "brightness": 329.52, "confidence": 86, "daynight": "D", "frp": 184.72, "instrument": "MODIS", "latitude": 69.28133, "longitude": 143.25723, "satellite": "Aqua", "scan": 4.08, "track": 1.87, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.44096, 70.15067, 140.44096, 70.15067], "geometry": {"coordinates": [140.44096, 70.15067], "type": "Point"}, "id": "151", "properties": {"acq_date": "2024-07-11", "acq_time": 43, "bright_t31": 283.19, "brightness": 303.98, "confidence": 34, "daynight": "D", "frp": 29.97, "instrument": "MODIS", "latitude": 70.15067, "longitude": 140.44096, "satellite": "Aqua", "scan": 3.87, "track": 1.83, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.62013, -18.65906, 133.62013, -18.65906], "geometry": {"coordinates": [133.62013, -18.65906], "type": "Point"}, "id": "152", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 297.56, "brightness": 309.89, "confidence": 24, "daynight": "D", "frp": 6.43, "instrument": "MODIS", "latitude": -18.65906, "longitude": 133.62013, "satellite": "Terra", "scan": 1.19, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.60901, -18.65762, 133.60901, -18.65762], "geometry": {"coordinates": [133.60901, -18.65762], "type": "Point"}, "id": "153", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.27, "brightness": 323.58, "confidence": 80, "daynight": "D", "frp": 21.39, "instrument": "MODIS", "latitude": -18.65762, "longitude": 133.60901, "satellite": "Terra", "scan": 1.19, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.59792, -18.65618, 133.59792, -18.65618], "geometry": {"coordinates": [133.59792, -18.65618], "type": "Point"}, "id": "154", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 298.98, "brightness": 318.84, "confidence": 57, "daynight": "D", "frp": 13.9, "instrument": "MODIS", "latitude": -18.65618, "longitude": 133.59792, "satellite": "Terra", "scan": 1.19, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.57718, -18.64368, 133.57718, -18.64368], "geometry": {"coordinates": [133.57718, -18.64368], "type": "Point"}, "id": "155", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.33, "brightness": 317.12, "confidence": 28, "daynight": "D", "frp": 11.21, "instrument": "MODIS", "latitude": -18.64368, "longitude": 133.57718, "satellite": "Terra", "scan": 1.19, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.56616, -18.64226, 133.56616, -18.64226], "geometry": {"coordinates": [133.56616, -18.64226], "type": "Point"}, "id": "156", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 298.67, "brightness": 312.89, "confidence": 22, "daynight": "D", "frp": 7.39, "instrument": "MODIS", "latitude": -18.64226, "longitude": 133.56616, "satellite": "Terra", "scan": 1.18, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.93148, -16.64998, 126.93148, -16.64998], "geometry": {"coordinates": [126.93148, -16.64998], "type": "Point"}, "id": "157", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.89, "brightness": 315.81, "confidence": 68, "daynight": "D", "frp": 15.87, "instrument": "MODIS", "latitude": -16.64998, "longitude": 126.93148, "satellite": "Terra", "scan": 1.52, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.23415, -16.203, 136.23415, -16.203], "geometry": {"coordinates": [136.23415, -16.203], "type": "Point"}, "id": "158", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.76, "brightness": 319.56, "confidence": 41, "daynight": "D", "frp": 15.81, "instrument": "MODIS", "latitude": -16.203, "longitude": 136.23415, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.22765, -16.20297, 136.22765, -16.20297], "geometry": {"coordinates": [136.22765, -16.20297], "type": "Point"}, "id": "159", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.78, "brightness": 324.93, "confidence": 79, "daynight": "D", "frp": 29.54, "instrument": "MODIS", "latitude": -16.20297, "longitude": 136.22765, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.21274, -16.2012, 136.21274, -16.2012], "geometry": {"coordinates": [136.21274, -16.2012], "type": "Point"}, "id": "160", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.02, "brightness": 315.07, "confidence": 47, "daynight": "D", "frp": 10.95, "instrument": "MODIS", "latitude": -16.2012, "longitude": 136.21274, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.21922, -16.20112, 136.21922, -16.20112], "geometry": {"coordinates": [136.21922, -16.20112], "type": "Point"}, "id": "161", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.01, "brightness": 323.78, "confidence": 68, "daynight": "D", "frp": 25.31, "instrument": "MODIS", "latitude": -16.20112, "longitude": 136.21922, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [127.34446, -16.1856, 127.34446, -16.1856], "geometry": {"coordinates": [127.34446, -16.1856], "type": "Point"}, "id": "162", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.11, "brightness": 318.6, "confidence": 68, "daynight": "D", "frp": 16.73, "instrument": "MODIS", "latitude": -16.1856, "longitude": 127.34446, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.24118, -16.14721, 136.24118, -16.14721], "geometry": {"coordinates": [136.24118, -16.14721], "type": "Point"}, "id": "163", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.94, "brightness": 318.9, "confidence": 70, "daynight": "D", "frp": 19.28, "instrument": "MODIS", "latitude": -16.14721, "longitude": 136.24118, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.90794, -15.95442, 126.90794, -15.95442], "geometry": {"coordinates": [126.90794, -15.95442], "type": "Point"}, "id": "164", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 298.7, "brightness": 316.84, "confidence": 54, "daynight": "D", "frp": 17.02, "instrument": "MODIS", "latitude": -15.95442, "longitude": 126.90794, "satellite": "Terra", "scan": 1.57, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.91522, -15.95314, 126.91522, -15.95314], "geometry": {"coordinates": [126.91522, -15.95314], "type": "Point"}, "id": "165", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.44, "brightness": 318.65, "confidence": 72, "daynight": "D", "frp": 21.18, "instrument": "MODIS", "latitude": -15.95314, "longitude": 126.91522, "satellite": "Terra", "scan": 1.57, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.12667, -15.77547, 126.12667, -15.77547], "geometry": {"coordinates": [126.12667, -15.77547], "type": "Point"}, "id": "166", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 297.59, "brightness": 310.15, "confidence": 42, "daynight": "D", "frp": 10.28, "instrument": "MODIS", "latitude": -15.77547, "longitude": 126.12667, "satellite": "Terra", "scan": 1.8, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.14503, -15.76664, 126.14503, -15.76664], "geometry": {"coordinates": [126.14503, -15.76664], "type": "Point"}, "id": "167", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 298.24, "brightness": 312.51, "confidence": 61, "daynight": "D", "frp": 14.67, "instrument": "MODIS", "latitude": -15.76664, "longitude": 126.14503, "satellite": "Terra", "scan": 1.8, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.79609, -15.43801, 126.79609, -15.43801], "geometry": {"coordinates": [126.79609, -15.43801], "type": "Point"}, "id": "168", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 298.18, "brightness": 315.01, "confidence": 65, "daynight": "D", "frp": 16.62, "instrument": "MODIS", "latitude": -15.43801, "longitude": 126.79609, "satellite": "Terra", "scan": 1.63, "track": 1.26, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.78129, -15.43556, 126.78129, -15.43556], "geometry": {"coordinates": [126.78129, -15.43556], "type": "Point"}, "id": "169", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.19, "brightness": 311.13, "confidence": 51, "daynight": "D", "frp": 10.67, "instrument": "MODIS", "latitude": -15.43556, "longitude": 126.78129, "satellite": "Terra", "scan": 1.64, "track": 1.26, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [125.9012, -15.42901, 125.9012, -15.42901], "geometry": {"coordinates": [125.9012, -15.42901], "type": "Point"}, "id": "170", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 298.01, "brightness": 309.19, "confidence": 44, "daynight": "D", "frp": 10.33, "instrument": "MODIS", "latitude": -15.42901, "longitude": 125.9012, "satellite": "Terra", "scan": 1.9, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.79536, -15.39138, 126.79536, -15.39138], "geometry": {"coordinates": [126.79536, -15.39138], "type": "Point"}, "id": "171", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.94, "brightness": 311.5, "confidence": 32, "daynight": "D", "frp": 9.86, "instrument": "MODIS", "latitude": -15.39138, "longitude": 126.79536, "satellite": "Terra", "scan": 1.64, "track": 1.26, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [125.84344, -15.27782, 125.84344, -15.27782], "geometry": {"coordinates": [125.84344, -15.27782], "type": "Point"}, "id": "172", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.57, "brightness": 331.28, "confidence": 85, "daynight": "D", "frp": 65.23, "instrument": "MODIS", "latitude": -15.27782, "longitude": 125.84344, "satellite": "Terra", "scan": 1.93, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [125.8257, -15.2748, 125.8257, -15.2748], "geometry": {"coordinates": [125.8257, -15.2748], "type": "Point"}, "id": "173", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.62, "brightness": 321.86, "confidence": 76, "daynight": "D", "frp": 36.83, "instrument": "MODIS", "latitude": -15.2748, "longitude": 125.8257, "satellite": "Terra", "scan": 1.94, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [125.7924, -15.02211, 125.7924, -15.02211], "geometry": {"coordinates": [125.7924, -15.02211], "type": "Point"}, "id": "174", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.05, "brightness": 323.49, "confidence": 78, "daynight": "D", "frp": 40.58, "instrument": "MODIS", "latitude": -15.02211, "longitude": 125.7924, "satellite": "Terra", "scan": 1.97, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [125.80016, -15.01859, 125.80016, -15.01859], "geometry": {"coordinates": [125.80016, -15.01859], "type": "Point"}, "id": "175", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 298.57, "brightness": 320.08, "confidence": 74, "daynight": "D", "frp": 33.87, "instrument": "MODIS", "latitude": -15.01859, "longitude": 125.80016, "satellite": "Terra", "scan": 1.97, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [125.7819, -15.01552, 125.7819, -15.01552], "geometry": {"coordinates": [125.7819, -15.01552], "type": "Point"}, "id": "176", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.91, "brightness": 312.63, "confidence": 60, "daynight": "D", "frp": 15.84, "instrument": "MODIS", "latitude": -15.01552, "longitude": 125.7819, "satellite": "Terra", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.41919, -14.68482, 134.41919, -14.68482], "geometry": {"coordinates": [134.41919, -14.68482], "type": "Point"}, "id": "177", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.65, "brightness": 316.12, "confidence": 62, "daynight": "D", "frp": 9.45, "instrument": "MODIS", "latitude": -14.68482, "longitude": 134.41919, "satellite": "Terra", "scan": 1.19, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.40831, -14.68341, 134.40831, -14.68341], "geometry": {"coordinates": [134.40831, -14.68341], "type": "Point"}, "id": "178", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.1, "brightness": 322.75, "confidence": 76, "daynight": "D", "frp": 18.17, "instrument": "MODIS", "latitude": -14.68341, "longitude": 134.40831, "satellite": "Terra", "scan": 1.19, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.39757, -14.682, 134.39757, -14.682], "geometry": {"coordinates": [134.39757, -14.682], "type": "Point"}, "id": "179", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.35, "brightness": 312.72, "confidence": 39, "daynight": "D", "frp": 6.42, "instrument": "MODIS", "latitude": -14.682, "longitude": 134.39757, "satellite": "Terra", "scan": 1.19, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.41508, -14.68079, 134.41508, -14.68079], "geometry": {"coordinates": [134.41508, -14.68079], "type": "Point"}, "id": "180", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.58, "brightness": 324.03, "confidence": 73, "daynight": "D", "frp": 16.83, "instrument": "MODIS", "latitude": -14.68079, "longitude": 134.41508, "satellite": "Terra", "scan": 1.19, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.94713, -14.63076, 131.94713, -14.63076], "geometry": {"coordinates": [131.94713, -14.63076], "type": "Point"}, "id": "181", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.11, "brightness": 310.2, "confidence": 27, "daynight": "D", "frp": 3.65, "instrument": "MODIS", "latitude": -14.63076, "longitude": 131.94713, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.05392, -14.58072, 130.05392, -14.58072], "geometry": {"coordinates": [130.05392, -14.58072], "type": "Point"}, "id": "182", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.3, "brightness": 316.84, "confidence": 67, "daynight": "D", "frp": 9.07, "instrument": "MODIS", "latitude": -14.58072, "longitude": 130.05392, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.38676, -14.51842, 132.38676, -14.51842], "geometry": {"coordinates": [132.38676, -14.51842], "type": "Point"}, "id": "183", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.25, "brightness": 316.5, "confidence": 66, "daynight": "D", "frp": 8.33, "instrument": "MODIS", "latitude": -14.51842, "longitude": 132.38676, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.75034, -14.37832, 129.75034, -14.37832], "geometry": {"coordinates": [129.75034, -14.37832], "type": "Point"}, "id": "184", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.55, "brightness": 319.27, "confidence": 26, "daynight": "D", "frp": 11.3, "instrument": "MODIS", "latitude": -14.37832, "longitude": 129.75034, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.74017, -14.37678, 129.74017, -14.37678], "geometry": {"coordinates": [129.74017, -14.37678], "type": "Point"}, "id": "185", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.86, "brightness": 326.67, "confidence": 79, "daynight": "D", "frp": 21.11, "instrument": "MODIS", "latitude": -14.37678, "longitude": 129.74017, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.42844, -14.36316, 129.42844, -14.36316], "geometry": {"coordinates": [129.42844, -14.36316], "type": "Point"}, "id": "186", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 298.72, "brightness": 309.91, "confidence": 33, "daynight": "D", "frp": 5.55, "instrument": "MODIS", "latitude": -14.36316, "longitude": 129.42844, "satellite": "Terra", "scan": 1.16, "track": 1.07, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.76344, -14.36118, 129.76344, -14.36118], "geometry": {"coordinates": [129.76344, -14.36118], "type": "Point"}, "id": "187", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.88, "brightness": 320.01, "confidence": 59, "daynight": "D", "frp": 12.7, "instrument": "MODIS", "latitude": -14.36118, "longitude": 129.76344, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.18614, -14.12963, 130.18614, -14.12963], "geometry": {"coordinates": [130.18614, -14.12963], "type": "Point"}, "id": "188", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.8, "brightness": 315.77, "confidence": 60, "daynight": "D", "frp": 7.42, "instrument": "MODIS", "latitude": -14.12963, "longitude": 130.18614, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.18765, -14.12045, 130.18765, -14.12045], "geometry": {"coordinates": [130.18765, -14.12045], "type": "Point"}, "id": "189", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.31, "brightness": 316.32, "confidence": 66, "daynight": "D", "frp": 8.2, "instrument": "MODIS", "latitude": -14.12045, "longitude": 130.18765, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.46036, -13.91334, 133.46036, -13.91334], "geometry": {"coordinates": [133.46036, -13.91334], "type": "Point"}, "id": "190", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 296.27, "brightness": 310.18, "confidence": 30, "daynight": "D", "frp": 5.62, "instrument": "MODIS", "latitude": -13.91334, "longitude": 133.46036, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.94112, -13.8281, 130.94112, -13.8281], "geometry": {"coordinates": [130.94112, -13.8281], "type": "Point"}, "id": "191", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.87, "brightness": 318.21, "confidence": 69, "daynight": "D", "frp": 8.28, "instrument": "MODIS", "latitude": -13.8281, "longitude": 130.94112, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.93181, -13.82671, 130.93181, -13.82671], "geometry": {"coordinates": [130.93181, -13.82671], "type": "Point"}, "id": "192", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.62, "brightness": 316.51, "confidence": 65, "daynight": "D", "frp": 6.91, "instrument": "MODIS", "latitude": -13.82671, "longitude": 130.93181, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.46968, -13.78566, 142.46968, -13.78566], "geometry": {"coordinates": [142.46968, -13.78566], "type": "Point"}, "id": "193", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 291.62, "brightness": 311.59, "confidence": 50, "daynight": "D", "frp": 64.48, "instrument": "MODIS", "latitude": -13.78566, "longitude": 142.46968, "satellite": "Terra", "scan": 4.57, "track": 1.96, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.47662, -13.78441, 142.47662, -13.78441], "geometry": {"coordinates": [142.47662, -13.78441], "type": "Point"}, "id": "194", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 291.48, "brightness": 312.13, "confidence": 53, "daynight": "D", "frp": 68.6, "instrument": "MODIS", "latitude": -13.78441, "longitude": 142.47662, "satellite": "Terra", "scan": 4.57, "track": 1.96, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.55275, -13.62274, 131.55275, -13.62274], "geometry": {"coordinates": [131.55275, -13.62274], "type": "Point"}, "id": "195", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.49, "brightness": 327.36, "confidence": 80, "daynight": "D", "frp": 17.78, "instrument": "MODIS", "latitude": -13.62274, "longitude": 131.55275, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.51633, -13.6174, 131.51633, -13.6174], "geometry": {"coordinates": [131.51633, -13.6174], "type": "Point"}, "id": "196", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.17, "brightness": 326.22, "confidence": 59, "daynight": "D", "frp": 15.91, "instrument": "MODIS", "latitude": -13.6174, "longitude": 131.51633, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.55409, -13.61385, 131.55409, -13.61385], "geometry": {"coordinates": [131.55409, -13.61385], "type": "Point"}, "id": "197", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.45, "brightness": 326.91, "confidence": 80, "daynight": "D", "frp": 17.09, "instrument": "MODIS", "latitude": -13.61385, "longitude": 131.55409, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.54498, -13.61251, 131.54498, -13.61251], "geometry": {"coordinates": [131.54498, -13.61251], "type": "Point"}, "id": "198", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.87, "brightness": 321.33, "confidence": 64, "daynight": "D", "frp": 10.28, "instrument": "MODIS", "latitude": -13.61251, "longitude": 131.54498, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.49939, -13.60583, 131.49939, -13.60583], "geometry": {"coordinates": [131.49939, -13.60583], "type": "Point"}, "id": "199", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.32, "brightness": 321.8, "confidence": 17, "daynight": "D", "frp": 11.73, "instrument": "MODIS", "latitude": -13.60583, "longitude": 131.49939, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.54628, -13.60362, 131.54628, -13.60362], "geometry": {"coordinates": [131.54628, -13.60362], "type": "Point"}, "id": "200", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.23, "brightness": 330.37, "confidence": 83, "daynight": "D", "frp": 20.59, "instrument": "MODIS", "latitude": -13.60362, "longitude": 131.54628, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.5007, -13.59693, 131.5007, -13.59693], "geometry": {"coordinates": [131.5007, -13.59693], "type": "Point"}, "id": "201", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.17, "brightness": 321.76, "confidence": 53, "daynight": "D", "frp": 12.03, "instrument": "MODIS", "latitude": -13.59693, "longitude": 131.5007, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.49158, -13.59559, 131.49158, -13.59559], "geometry": {"coordinates": [131.49158, -13.59559], "type": "Point"}, "id": "202", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.17, "brightness": 322.42, "confidence": 56, "daynight": "D", "frp": 13.06, "instrument": "MODIS", "latitude": -13.59559, "longitude": 131.49158, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.53847, -13.59339, 131.53847, -13.59339], "geometry": {"coordinates": [131.53847, -13.59339], "type": "Point"}, "id": "203", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.1, "brightness": 327.74, "confidence": 81, "daynight": "D", "frp": 17.84, "instrument": "MODIS", "latitude": -13.59339, "longitude": 131.53847, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.42377, -13.54921, 131.42377, -13.54921], "geometry": {"coordinates": [131.42377, -13.54921], "type": "Point"}, "id": "204", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.89, "brightness": 312.52, "confidence": 52, "daynight": "D", "frp": 5.36, "instrument": "MODIS", "latitude": -13.54921, "longitude": 131.42377, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.56207, -13.54105, 131.56207, -13.54105], "geometry": {"coordinates": [131.56207, -13.54105], "type": "Point"}, "id": "205", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.17, "brightness": 319.85, "confidence": 71, "daynight": "D", "frp": 10.58, "instrument": "MODIS", "latitude": -13.54105, "longitude": 131.56207, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.55295, -13.53971, 131.55295, -13.53971], "geometry": {"coordinates": [131.55295, -13.53971], "type": "Point"}, "id": "206", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.69, "brightness": 314.49, "confidence": 49, "daynight": "D", "frp": 5.41, "instrument": "MODIS", "latitude": -13.53971, "longitude": 131.55295, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.56339, -13.53215, 131.56339, -13.53215], "geometry": {"coordinates": [131.56339, -13.53215], "type": "Point"}, "id": "207", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.16, "brightness": 331.42, "confidence": 84, "daynight": "D", "frp": 23.55, "instrument": "MODIS", "latitude": -13.53215, "longitude": 131.56339, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.55426, -13.53082, 131.55426, -13.53082], "geometry": {"coordinates": [131.55426, -13.53082], "type": "Point"}, "id": "208", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.04, "brightness": 317.95, "confidence": 50, "daynight": "D", "frp": 8.17, "instrument": "MODIS", "latitude": -13.53082, "longitude": 131.55426, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.09634, -13.39814, 132.09634, -13.39814], "geometry": {"coordinates": [132.09634, -13.39814], "type": "Point"}, "id": "209", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.23, "brightness": 320.59, "confidence": 46, "daynight": "D", "frp": 9.07, "instrument": "MODIS", "latitude": -13.39814, "longitude": 132.09634, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.06918, -13.39421, 132.06918, -13.39421], "geometry": {"coordinates": [132.06918, -13.39421], "type": "Point"}, "id": "210", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.32, "brightness": 316.51, "confidence": 33, "daynight": "D", "frp": 5.33, "instrument": "MODIS", "latitude": -13.39421, "longitude": 132.06918, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.09766, -13.38927, 132.09766, -13.38927], "geometry": {"coordinates": [132.09766, -13.38927], "type": "Point"}, "id": "211", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.33, "brightness": 321.6, "confidence": 55, "daynight": "D", "frp": 10.35, "instrument": "MODIS", "latitude": -13.38927, "longitude": 132.09766, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.09122, -13.37022, 132.09122, -13.37022], "geometry": {"coordinates": [132.09122, -13.37022], "type": "Point"}, "id": "212", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.05, "brightness": 328.77, "confidence": 71, "daynight": "D", "frp": 17.66, "instrument": "MODIS", "latitude": -13.37022, "longitude": 132.09122, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.08217, -13.36891, 132.08217, -13.36891], "geometry": {"coordinates": [132.08217, -13.36891], "type": "Point"}, "id": "213", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.23, "brightness": 331.51, "confidence": 76, "daynight": "D", "frp": 20.49, "instrument": "MODIS", "latitude": -13.36891, "longitude": 132.08217, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.07442, -13.35873, 132.07442, -13.35873], "geometry": {"coordinates": [132.07442, -13.35873], "type": "Point"}, "id": "214", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.22, "brightness": 340.58, "confidence": 90, "daynight": "D", "frp": 35.59, "instrument": "MODIS", "latitude": -13.35873, "longitude": 132.07442, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.06537, -13.35742, 132.06537, -13.35742], "geometry": {"coordinates": [132.06537, -13.35742], "type": "Point"}, "id": "215", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.35, "brightness": 316.88, "confidence": 15, "daynight": "D", "frp": 6.27, "instrument": "MODIS", "latitude": -13.35742, "longitude": 132.06537, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.07573, -13.34986, 132.07573, -13.34986], "geometry": {"coordinates": [132.07573, -13.34986], "type": "Point"}, "id": "216", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.33, "brightness": 318.98, "confidence": 55, "daynight": "D", "frp": 8.16, "instrument": "MODIS", "latitude": -13.34986, "longitude": 132.07573, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.33173, -13.34893, 132.33173, -13.34893], "geometry": {"coordinates": [132.33173, -13.34893], "type": "Point"}, "id": "217", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.63, "brightness": 313.85, "confidence": 29, "daynight": "D", "frp": 4.25, "instrument": "MODIS", "latitude": -13.34893, "longitude": 132.33173, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.06668, -13.34855, 132.06668, -13.34855], "geometry": {"coordinates": [132.06668, -13.34855], "type": "Point"}, "id": "218", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.58, "brightness": 326.21, "confidence": 79, "daynight": "D", "frp": 15.68, "instrument": "MODIS", "latitude": -13.34855, "longitude": 132.06668, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.11043, -13.34418, 132.11043, -13.34418], "geometry": {"coordinates": [132.11043, -13.34418], "type": "Point"}, "id": "219", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.62, "brightness": 318.86, "confidence": 64, "daynight": "D", "frp": 8.66, "instrument": "MODIS", "latitude": -13.34418, "longitude": 132.11043, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.10136, -13.34286, 132.10136, -13.34286], "geometry": {"coordinates": [132.10136, -13.34286], "type": "Point"}, "id": "220", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.46, "brightness": 326.66, "confidence": 79, "daynight": "D", "frp": 15.79, "instrument": "MODIS", "latitude": -13.34286, "longitude": 132.10136, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.09232, -13.34155, 132.09232, -13.34155], "geometry": {"coordinates": [132.09232, -13.34155], "type": "Point"}, "id": "221", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.76, "brightness": 325.78, "confidence": 71, "daynight": "D", "frp": 13.55, "instrument": "MODIS", "latitude": -13.34155, "longitude": 132.09232, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.08327, -13.34024, 132.08327, -13.34024], "geometry": {"coordinates": [132.08327, -13.34024], "type": "Point"}, "id": "222", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.29, "brightness": 326.0, "confidence": 78, "daynight": "D", "frp": 14.01, "instrument": "MODIS", "latitude": -13.34024, "longitude": 132.08327, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.3434, -13.33248, 132.3434, -13.33248], "geometry": {"coordinates": [132.3434, -13.33248], "type": "Point"}, "id": "223", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.1, "brightness": 316.21, "confidence": 55, "daynight": "D", "frp": 6.71, "instrument": "MODIS", "latitude": -13.33248, "longitude": 132.3434, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.06004, -13.3097, 132.06004, -13.3097], "geometry": {"coordinates": [132.06004, -13.3097], "type": "Point"}, "id": "224", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.75, "brightness": 323.89, "confidence": 76, "daynight": "D", "frp": 11.84, "instrument": "MODIS", "latitude": -13.3097, "longitude": 132.06004, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.05099, -13.30839, 132.05099, -13.30839], "geometry": {"coordinates": [132.05099, -13.30839], "type": "Point"}, "id": "225", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.26, "brightness": 317.65, "confidence": 66, "daynight": "D", "frp": 5.56, "instrument": "MODIS", "latitude": -13.30839, "longitude": 132.05099, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.07433, -13.27553, 132.07433, -13.27553], "geometry": {"coordinates": [132.07433, -13.27553], "type": "Point"}, "id": "226", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.36, "brightness": 317.96, "confidence": 63, "daynight": "D", "frp": 7.11, "instrument": "MODIS", "latitude": -13.27553, "longitude": 132.07433, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.26706, -13.26564, 132.26706, -13.26564], "geometry": {"coordinates": [132.26706, -13.26564], "type": "Point"}, "id": "227", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.64, "brightness": 317.19, "confidence": 62, "daynight": "D", "frp": 6.92, "instrument": "MODIS", "latitude": -13.26564, "longitude": 132.26706, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.5946, -13.15696, 132.5946, -13.15696], "geometry": {"coordinates": [132.5946, -13.15696], "type": "Point"}, "id": "228", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.2, "brightness": 312.83, "confidence": 46, "daynight": "D", "frp": 4.48, "instrument": "MODIS", "latitude": -13.15696, "longitude": 132.5946, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.58549, -13.15566, 132.58549, -13.15566], "geometry": {"coordinates": [132.58549, -13.15566], "type": "Point"}, "id": "229", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.24, "brightness": 316.69, "confidence": 64, "daynight": "D", "frp": 7.41, "instrument": "MODIS", "latitude": -13.15566, "longitude": 132.58549, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.79285, -13.12037, 132.79285, -13.12037], "geometry": {"coordinates": [132.79285, -13.12037], "type": "Point"}, "id": "230", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.74, "brightness": 328.21, "confidence": 81, "daynight": "D", "frp": 17.93, "instrument": "MODIS", "latitude": -13.12037, "longitude": 132.79285, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.78369, -13.11907, 132.78369, -13.11907], "geometry": {"coordinates": [132.78369, -13.11907], "type": "Point"}, "id": "231", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 304.19, "brightness": 320.91, "confidence": 72, "daynight": "D", "frp": 10.04, "instrument": "MODIS", "latitude": -13.11907, "longitude": 132.78369, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.72514, -13.11433, 131.72514, -13.11433], "geometry": {"coordinates": [131.72514, -13.11433], "type": "Point"}, "id": "232", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.65, "brightness": 316.05, "confidence": 47, "daynight": "D", "frp": 5.54, "instrument": "MODIS", "latitude": -13.11433, "longitude": 131.72514, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.79413, -13.11145, 132.79413, -13.11145], "geometry": {"coordinates": [132.79413, -13.11145], "type": "Point"}, "id": "233", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.86, "brightness": 321.7, "confidence": 74, "daynight": "D", "frp": 10.83, "instrument": "MODIS", "latitude": -13.11145, "longitude": 132.79413, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.78497, -13.11015, 132.78497, -13.11015], "geometry": {"coordinates": [132.78497, -13.11015], "type": "Point"}, "id": "234", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.13, "brightness": 339.76, "confidence": 89, "daynight": "D", "frp": 35.08, "instrument": "MODIS", "latitude": -13.11015, "longitude": 132.78497, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.72482, -13.09469, 131.72482, -13.09469], "geometry": {"coordinates": [131.72482, -13.09469], "type": "Point"}, "id": "235", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.17, "brightness": 321.52, "confidence": 44, "daynight": "D", "frp": 9.67, "instrument": "MODIS", "latitude": -13.09469, "longitude": 131.72482, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.71194, -13.05648, 131.71194, -13.05648], "geometry": {"coordinates": [131.71194, -13.05648], "type": "Point"}, "id": "236", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.63, "brightness": 320.82, "confidence": 34, "daynight": "D", "frp": 8.54, "instrument": "MODIS", "latitude": -13.05648, "longitude": 131.71194, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.70287, -13.05515, 131.70287, -13.05515], "geometry": {"coordinates": [131.70287, -13.05515], "type": "Point"}, "id": "237", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 304.32, "brightness": 328.74, "confidence": 81, "daynight": "D", "frp": 16.82, "instrument": "MODIS", "latitude": -13.05515, "longitude": 131.70287, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.69377, -13.05381, 131.69377, -13.05381], "geometry": {"coordinates": [131.69377, -13.05381], "type": "Point"}, "id": "238", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 304.21, "brightness": 329.44, "confidence": 81, "daynight": "D", "frp": 17.23, "instrument": "MODIS", "latitude": -13.05381, "longitude": 131.69377, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.68468, -13.05248, 131.68468, -13.05248], "geometry": {"coordinates": [131.68468, -13.05248], "type": "Point"}, "id": "239", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 304.21, "brightness": 340.79, "confidence": 90, "daynight": "D", "frp": 35.68, "instrument": "MODIS", "latitude": -13.05248, "longitude": 131.68468, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.6756, -13.05115, 131.6756, -13.05115], "geometry": {"coordinates": [131.6756, -13.05115], "type": "Point"}, "id": "240", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.46, "brightness": 317.29, "confidence": 39, "daynight": "D", "frp": 6.7, "instrument": "MODIS", "latitude": -13.05115, "longitude": 131.6756, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.82872, -13.04241, 132.82872, -13.04241], "geometry": {"coordinates": [132.82872, -13.04241], "type": "Point"}, "id": "241", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.5, "brightness": 315.02, "confidence": 60, "daynight": "D", "frp": 5.48, "instrument": "MODIS", "latitude": -13.04241, "longitude": 132.82872, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.56131, -12.85618, 132.56131, -12.85618], "geometry": {"coordinates": [132.56131, -12.85618], "type": "Point"}, "id": "242", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.97, "brightness": 313.69, "confidence": 43, "daynight": "D", "frp": 5.64, "instrument": "MODIS", "latitude": -12.85618, "longitude": 132.56131, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.55225, -12.85488, 132.55225, -12.85488], "geometry": {"coordinates": [132.55225, -12.85488], "type": "Point"}, "id": "243", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.49, "brightness": 317.04, "confidence": 56, "daynight": "D", "frp": 9.19, "instrument": "MODIS", "latitude": -12.85488, "longitude": 132.55225, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.03691, -12.78039, 132.03691, -12.78039], "geometry": {"coordinates": [132.03691, -12.78039], "type": "Point"}, "id": "244", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.6, "brightness": 316.16, "confidence": 63, "daynight": "D", "frp": 6.89, "instrument": "MODIS", "latitude": -12.78039, "longitude": 132.03691, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.81979, -12.72098, 130.81979, -12.72098], "geometry": {"coordinates": [130.81979, -12.72098], "type": "Point"}, "id": "245", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.71, "brightness": 317.61, "confidence": 66, "daynight": "D", "frp": 8.26, "instrument": "MODIS", "latitude": -12.72098, "longitude": 130.81979, "satellite": "Terra", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.81102, -12.51767, 131.81102, -12.51767], "geometry": {"coordinates": [131.81102, -12.51767], "type": "Point"}, "id": "246", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.83, "brightness": 314.55, "confidence": 53, "daynight": "D", "frp": 6.46, "instrument": "MODIS", "latitude": -12.51767, "longitude": 131.81102, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.07619, -12.45519, 132.07619, -12.45519], "geometry": {"coordinates": [132.07619, -12.45519], "type": "Point"}, "id": "247", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.94, "brightness": 313.37, "confidence": 48, "daynight": "D", "frp": 5.83, "instrument": "MODIS", "latitude": -12.45519, "longitude": 132.07619, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.64394, -12.43747, 134.64394, -12.43747], "geometry": {"coordinates": [134.64394, -12.43747], "type": "Point"}, "id": "248", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.14, "brightness": 313.88, "confidence": 63, "daynight": "D", "frp": 6.79, "instrument": "MODIS", "latitude": -12.43747, "longitude": 134.64394, "satellite": "Terra", "scan": 1.16, "track": 1.07, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.98991, -12.32214, 133.98991, -12.32214], "geometry": {"coordinates": [133.98991, -12.32214], "type": "Point"}, "id": "249", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.08, "brightness": 311.81, "confidence": 42, "daynight": "D", "frp": 4.34, "instrument": "MODIS", "latitude": -12.32214, "longitude": 133.98991, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.60158, -12.26366, 132.60158, -12.26366], "geometry": {"coordinates": [132.60158, -12.26366], "type": "Point"}, "id": "250", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.24, "brightness": 316.21, "confidence": 65, "daynight": "D", "frp": 8.22, "instrument": "MODIS", "latitude": -12.26366, "longitude": 132.60158, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.30087, -12.22613, 134.30087, -12.22613], "geometry": {"coordinates": [134.30087, -12.22613], "type": "Point"}, "id": "251", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.79, "brightness": 312.24, "confidence": 56, "daynight": "D", "frp": 6.16, "instrument": "MODIS", "latitude": -12.22613, "longitude": 134.30087, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.29099, -12.22478, 134.29099, -12.22478], "geometry": {"coordinates": [134.29099, -12.22478], "type": "Point"}, "id": "252", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.85, "brightness": 312.96, "confidence": 54, "daynight": "D", "frp": 6.34, "instrument": "MODIS", "latitude": -12.22478, "longitude": 134.29099, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.95049, -12.0577, 133.95049, -12.0577], "geometry": {"coordinates": [133.95049, -12.0577], "type": "Point"}, "id": "253", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.78, "brightness": 312.39, "confidence": 55, "daynight": "D", "frp": 6.26, "instrument": "MODIS", "latitude": -12.0577, "longitude": 133.95049, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.04535, -12.01431, 133.04535, -12.01431], "geometry": {"coordinates": [133.04535, -12.01431], "type": "Point"}, "id": "254", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.98, "brightness": 324.09, "confidence": 77, "daynight": "D", "frp": 14.8, "instrument": "MODIS", "latitude": -12.01431, "longitude": 133.04535, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.03624, -12.01302, 133.03624, -12.01302], "geometry": {"coordinates": [133.03624, -12.01302], "type": "Point"}, "id": "255", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.54, "brightness": 313.72, "confidence": 54, "daynight": "D", "frp": 4.81, "instrument": "MODIS", "latitude": -12.01302, "longitude": 133.03624, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.75018, -12.00291, 133.75018, -12.00291], "geometry": {"coordinates": [133.75018, -12.00291], "type": "Point"}, "id": "256", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 304.39, "brightness": 332.22, "confidence": 85, "daynight": "D", "frp": 26.35, "instrument": "MODIS", "latitude": -12.00291, "longitude": 133.75018, "satellite": "Terra", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.74072, -12.00158, 133.74072, -12.00158], "geometry": {"coordinates": [133.74072, -12.00158], "type": "Point"}, "id": "257", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.73, "brightness": 319.28, "confidence": 71, "daynight": "D", "frp": 10.58, "instrument": "MODIS", "latitude": -12.00158, "longitude": 133.74072, "satellite": "Terra", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.04675, -11.97896, 134.04675, -11.97896], "geometry": {"coordinates": [134.04675, -11.97896], "type": "Point"}, "id": "258", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.16, "brightness": 315.81, "confidence": 56, "daynight": "D", "frp": 9.28, "instrument": "MODIS", "latitude": -11.97896, "longitude": 134.04675, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.21275, -11.90848, 133.21275, -11.90848], "geometry": {"coordinates": [133.21275, -11.90848], "type": "Point"}, "id": "259", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.62, "brightness": 320.66, "confidence": 73, "daynight": "D", "frp": 11.09, "instrument": "MODIS", "latitude": -11.90848, "longitude": 133.21275, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.29932, -11.89333, 133.29932, -11.89333], "geometry": {"coordinates": [133.29932, -11.89333], "type": "Point"}, "id": "260", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.0, "brightness": 321.44, "confidence": 74, "daynight": "D", "frp": 12.21, "instrument": "MODIS", "latitude": -11.89333, "longitude": 133.29932, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.29012, -11.89203, 133.29012, -11.89203], "geometry": {"coordinates": [133.29012, -11.89203], "type": "Point"}, "id": "261", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 303.98, "brightness": 319.57, "confidence": 71, "daynight": "D", "frp": 9.9, "instrument": "MODIS", "latitude": -11.89203, "longitude": 133.29012, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.48708, -11.80925, 133.48708, -11.80925], "geometry": {"coordinates": [133.48708, -11.80925], "type": "Point"}, "id": "262", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.4, "brightness": 313.77, "confidence": 41, "daynight": "D", "frp": 4.83, "instrument": "MODIS", "latitude": -11.80925, "longitude": 133.48708, "satellite": "Terra", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.47778, -11.80794, 133.47778, -11.80794], "geometry": {"coordinates": [133.47778, -11.80794], "type": "Point"}, "id": "263", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 302.39, "brightness": 318.74, "confidence": 66, "daynight": "D", "frp": 9.22, "instrument": "MODIS", "latitude": -11.80794, "longitude": 133.47778, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.49594, -11.79193, 133.49594, -11.79193], "geometry": {"coordinates": [133.49594, -11.79193], "type": "Point"}, "id": "264", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 301.83, "brightness": 320.8, "confidence": 35, "daynight": "D", "frp": 11.58, "instrument": "MODIS", "latitude": -11.79193, "longitude": 133.49594, "satellite": "Terra", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.97296, -11.60972, 130.97296, -11.60972], "geometry": {"coordinates": [130.97296, -11.60972], "type": "Point"}, "id": "265", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.31, "brightness": 317.92, "confidence": 70, "daynight": "D", "frp": 10.92, "instrument": "MODIS", "latitude": -11.60972, "longitude": 130.97296, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.96346, -11.60831, 130.96346, -11.60831], "geometry": {"coordinates": [130.96346, -11.60831], "type": "Point"}, "id": "266", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 300.28, "brightness": 315.96, "confidence": 67, "daynight": "D", "frp": 8.87, "instrument": "MODIS", "latitude": -11.60831, "longitude": 130.96346, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.40013, -11.55303, 131.40013, -11.55303], "geometry": {"coordinates": [131.40013, -11.55303], "type": "Point"}, "id": "267", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 298.24, "brightness": 319.63, "confidence": 73, "daynight": "D", "frp": 11.93, "instrument": "MODIS", "latitude": -11.55303, "longitude": 131.40013, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.3909, -11.55166, 131.3909, -11.55166], "geometry": {"coordinates": [131.3909, -11.55166], "type": "Point"}, "id": "268", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 297.3, "brightness": 311.43, "confidence": 45, "daynight": "D", "frp": 4.87, "instrument": "MODIS", "latitude": -11.55166, "longitude": 131.3909, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.4565, -11.34831, 130.4565, -11.34831], "geometry": {"coordinates": [130.4565, -11.34831], "type": "Point"}, "id": "269", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 299.34, "brightness": 320.13, "confidence": 74, "daynight": "D", "frp": 14.04, "instrument": "MODIS", "latitude": -11.34831, "longitude": 130.4565, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.4565, -11.28146, 130.4565, -11.28146], "geometry": {"coordinates": [130.4565, -11.28146], "type": "Point"}, "id": "270", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 298.48, "brightness": 310.05, "confidence": 53, "daynight": "D", "frp": 5.27, "instrument": "MODIS", "latitude": -11.28146, "longitude": 130.4565, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.44647, -11.27993, 130.44647, -11.27993], "geometry": {"coordinates": [130.44647, -11.27993], "type": "Point"}, "id": "271", "properties": {"acq_date": "2024-07-11", "acq_time": 50, "bright_t31": 298.71, "brightness": 313.0, "confidence": 62, "daynight": "D", "frp": 7.95, "instrument": "MODIS", "latitude": -11.27993, "longitude": 130.44647, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.24019, -25.15834, 129.24019, -25.15834], "geometry": {"coordinates": [129.24019, -25.15834], "type": "Point"}, "id": "272", "properties": {"acq_date": "2024-07-11", "acq_time": 52, "bright_t31": 292.13, "brightness": 305.69, "confidence": 55, "daynight": "D", "frp": 4.78, "instrument": "MODIS", "latitude": -25.15834, "longitude": 129.24019, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.23042, -25.15692, 129.23042, -25.15692], "geometry": {"coordinates": [129.23042, -25.15692], "type": "Point"}, "id": "273", "properties": {"acq_date": "2024-07-11", "acq_time": 52, "bright_t31": 292.99, "brightness": 318.31, "confidence": 77, "daynight": "D", "frp": 14.42, "instrument": "MODIS", "latitude": -25.15692, "longitude": 129.23042, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [127.10632, -18.97849, 127.10632, -18.97849], "geometry": {"coordinates": [127.10632, -18.97849], "type": "Point"}, "id": "274", "properties": {"acq_date": "2024-07-11", "acq_time": 52, "bright_t31": 299.61, "brightness": 330.78, "confidence": 84, "daynight": "D", "frp": 36.08, "instrument": "MODIS", "latitude": -18.97849, "longitude": 127.10632, "satellite": "Terra", "scan": 1.36, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [127.12078, -18.97039, 127.12078, -18.97039], "geometry": {"coordinates": [127.12078, -18.97039], "type": "Point"}, "id": "275", "properties": {"acq_date": "2024-07-11", "acq_time": 52, "bright_t31": 298.92, "brightness": 320.2, "confidence": 73, "daynight": "D", "frp": 18.54, "instrument": "MODIS", "latitude": -18.97039, "longitude": 127.12078, "satellite": "Terra", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [127.10815, -18.96828, 127.10815, -18.96828], "geometry": {"coordinates": [127.10815, -18.96828], "type": "Point"}, "id": "276", "properties": {"acq_date": "2024-07-11", "acq_time": 52, "bright_t31": 300.22, "brightness": 324.05, "confidence": 78, "daynight": "D", "frp": 24.65, "instrument": "MODIS", "latitude": -18.96828, "longitude": 127.10815, "satellite": "Terra", "scan": 1.36, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [127.14836, -18.92457, 127.14836, -18.92457], "geometry": {"coordinates": [127.14836, -18.92457], "type": "Point"}, "id": "277", "properties": {"acq_date": "2024-07-11", "acq_time": 52, "bright_t31": 299.4, "brightness": 311.35, "confidence": 56, "daynight": "D", "frp": 7.52, "instrument": "MODIS", "latitude": -18.92457, "longitude": 127.14836, "satellite": "Terra", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [32.54682, 47.19768, 32.54682, 47.19768], "geometry": {"coordinates": [32.54682, 47.19768], "type": "Point"}, "id": "278", "properties": {"acq_date": "2024-07-11", "acq_time": 56, "bright_t31": 291.93, "brightness": 309.05, "confidence": 76, "daynight": "N", "frp": 13.32, "instrument": "MODIS", "latitude": 47.19768, "longitude": 32.54682, "satellite": "Aqua", "scan": 1.32, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [32.54097, 47.20017, 32.54097, 47.20017], "geometry": {"coordinates": [32.54097, 47.20017], "type": "Point"}, "id": "279", "properties": {"acq_date": "2024-07-11", "acq_time": 56, "bright_t31": 291.9, "brightness": 307.51, "confidence": 72, "daynight": "N", "frp": 11.66, "instrument": "MODIS", "latitude": 47.20017, "longitude": 32.54097, "satellite": "Aqua", "scan": 1.32, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [34.75044, 47.22659, 34.75044, 47.22659], "geometry": {"coordinates": [34.75044, 47.22659], "type": "Point"}, "id": "280", "properties": {"acq_date": "2024-07-11", "acq_time": 56, "bright_t31": 291.77, "brightness": 303.62, "confidence": 56, "daynight": "N", "frp": 12.2, "instrument": "MODIS", "latitude": 47.22659, "longitude": 34.75044, "satellite": "Aqua", "scan": 1.67, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [33.93943, 48.83734, 33.93943, 48.83734], "geometry": {"coordinates": [33.93943, 48.83734], "type": "Point"}, "id": "281", "properties": {"acq_date": "2024-07-11", "acq_time": 56, "bright_t31": 290.37, "brightness": 301.79, "confidence": 44, "daynight": "N", "frp": 8.2, "instrument": "MODIS", "latitude": 48.83734, "longitude": 33.93943, "satellite": "Aqua", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [39.653, 52.53934, 39.653, 52.53934], "geometry": {"coordinates": [39.653, 52.53934], "type": "Point"}, "id": "282", "properties": {"acq_date": "2024-07-11", "acq_time": 56, "bright_t31": 289.05, "brightness": 308.13, "confidence": 74, "daynight": "N", "frp": 21.71, "instrument": "MODIS", "latitude": 52.53934, "longitude": 39.653, "satellite": "Aqua", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [39.62608, 52.54576, 39.62608, 52.54576], "geometry": {"coordinates": [39.62608, 52.54576], "type": "Point"}, "id": "283", "properties": {"acq_date": "2024-07-11", "acq_time": 56, "bright_t31": 289.56, "brightness": 311.07, "confidence": 82, "daynight": "N", "frp": 26.86, "instrument": "MODIS", "latitude": 52.54576, "longitude": 39.62608, "satellite": "Aqua", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [39.63348, 52.55717, 39.63348, 52.55717], "geometry": {"coordinates": [39.63348, 52.55717], "type": "Point"}, "id": "284", "properties": {"acq_date": "2024-07-11", "acq_time": 56, "bright_t31": 289.62, "brightness": 309.53, "confidence": 78, "daynight": "N", "frp": 23.46, "instrument": "MODIS", "latitude": 52.55717, "longitude": 39.63348, "satellite": "Aqua", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [22.18876, 41.54635, 22.18876, 41.54635], "geometry": {"coordinates": [22.18876, 41.54635], "type": "Point"}, "id": "285", "properties": {"acq_date": "2024-07-11", "acq_time": 58, "bright_t31": 292.93, "brightness": 303.0, "confidence": 53, "daynight": "N", "frp": 5.68, "instrument": "MODIS", "latitude": 41.54635, "longitude": 22.18876, "satellite": "Aqua", "scan": 1.18, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [24.17859, 42.71804, 24.17859, 42.71804], "geometry": {"coordinates": [24.17859, 42.71804], "type": "Point"}, "id": "286", "properties": {"acq_date": "2024-07-11", "acq_time": 58, "bright_t31": 289.65, "brightness": 305.28, "confidence": 64, "daynight": "N", "frp": 7.87, "instrument": "MODIS", "latitude": 42.71804, "longitude": 24.17859, "satellite": "Aqua", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [32.1169, 46.46334, 32.1169, 46.46334], "geometry": {"coordinates": [32.1169, 46.46334], "type": "Point"}, "id": "287", "properties": {"acq_date": "2024-07-11", "acq_time": 58, "bright_t31": 294.46, "brightness": 319.99, "confidence": 99, "daynight": "N", "frp": 25.13, "instrument": "MODIS", "latitude": 46.46334, "longitude": 32.1169, "satellite": "Aqua", "scan": 1.31, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [32.1006, 46.4665, 32.1006, 46.4665], "geometry": {"coordinates": [32.1006, 46.4665], "type": "Point"}, "id": "288", "properties": {"acq_date": "2024-07-11", "acq_time": 58, "bright_t31": 294.45, "brightness": 321.66, "confidence": 100, "daynight": "N", "frp": 27.26, "instrument": "MODIS", "latitude": 46.4665, "longitude": 32.1006, "satellite": "Aqua", "scan": 1.31, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.14509, 39.96537, 20.14509, 39.96537], "geometry": {"coordinates": [20.14509, 39.96537], "type": "Point"}, "id": "289", "properties": {"acq_date": "2024-07-11", "acq_time": 100, "bright_t31": 295.27, "brightness": 308.37, "confidence": 41, "daynight": "N", "frp": 10.44, "instrument": "MODIS", "latitude": 39.96537, "longitude": 20.14509, "satellite": "Aqua", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.78976, 40.12608, 19.78976, 40.12608], "geometry": {"coordinates": [19.78976, 40.12608], "type": "Point"}, "id": "290", "properties": {"acq_date": "2024-07-11", "acq_time": 100, "bright_t31": 295.17, "brightness": 305.32, "confidence": 48, "daynight": "N", "frp": 6.94, "instrument": "MODIS", "latitude": 40.12608, "longitude": 19.78976, "satellite": "Aqua", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.80688, 40.13513, 19.80688, 40.13513], "geometry": {"coordinates": [19.80688, 40.13513], "type": "Point"}, "id": "291", "properties": {"acq_date": "2024-07-11", "acq_time": 100, "bright_t31": 295.53, "brightness": 316.54, "confidence": 93, "daynight": "N", "frp": 21.56, "instrument": "MODIS", "latitude": 40.13513, "longitude": 19.80688, "satellite": "Aqua", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.79249, 40.1366, 19.79249, 40.1366], "geometry": {"coordinates": [19.79249, 40.1366], "type": "Point"}, "id": "292", "properties": {"acq_date": "2024-07-11", "acq_time": 100, "bright_t31": 295.15, "brightness": 312.63, "confidence": 80, "daynight": "N", "frp": 15.86, "instrument": "MODIS", "latitude": 40.1366, "longitude": 19.79249, "satellite": "Aqua", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [22.40552, 27.58888, 22.40552, 27.58888], "geometry": {"coordinates": [22.40552, 27.58888], "type": "Point"}, "id": "293", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 297.62, "brightness": 311.95, "confidence": 83, "daynight": "N", "frp": 9.5, "instrument": "MODIS", "latitude": 27.58888, "longitude": 22.40552, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [22.5058, 27.64805, 22.5058, 27.64805], "geometry": {"coordinates": [22.5058, 27.64805], "type": "Point"}, "id": "294", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 298.43, "brightness": 315.45, "confidence": 91, "daynight": "N", "frp": 12.27, "instrument": "MODIS", "latitude": 27.64805, "longitude": 22.5058, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [22.48564, 27.6512, 22.48564, 27.6512], "geometry": {"coordinates": [22.48564, 27.6512], "type": "Point"}, "id": "295", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 298.27, "brightness": 311.61, "confidence": 82, "daynight": "N", "frp": 9.29, "instrument": "MODIS", "latitude": 27.6512, "longitude": 22.48564, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [22.43678, 27.81645, 22.43678, 27.81645], "geometry": {"coordinates": [22.43678, 27.81645], "type": "Point"}, "id": "296", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 297.9, "brightness": 308.69, "confidence": 74, "daynight": "N", "frp": 7.26, "instrument": "MODIS", "latitude": 27.81645, "longitude": 22.43678, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [22.32199, 27.99011, 22.32199, 27.99011], "geometry": {"coordinates": [22.32199, 27.99011], "type": "Point"}, "id": "297", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 297.85, "brightness": 309.02, "confidence": 75, "daynight": "N", "frp": 7.48, "instrument": "MODIS", "latitude": 27.99011, "longitude": 22.32199, "satellite": "Aqua", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.91151, 28.05636, 19.91151, 28.05636], "geometry": {"coordinates": [19.91151, 28.05636], "type": "Point"}, "id": "298", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 295.55, "brightness": 310.62, "confidence": 80, "daynight": "N", "frp": 10.68, "instrument": "MODIS", "latitude": 28.05636, "longitude": 19.91151, "satellite": "Aqua", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [21.45516, 28.71367, 21.45516, 28.71367], "geometry": {"coordinates": [21.45516, 28.71367], "type": "Point"}, "id": "299", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 297.54, "brightness": 307.82, "confidence": 72, "daynight": "N", "frp": 6.21, "instrument": "MODIS", "latitude": 28.71367, "longitude": 21.45516, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.6493, 28.76239, 19.6493, 28.76239], "geometry": {"coordinates": [19.6493, 28.76239], "type": "Point"}, "id": "300", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 294.65, "brightness": 312.73, "confidence": 86, "daynight": "N", "frp": 12.67, "instrument": "MODIS", "latitude": 28.76239, "longitude": 19.6493, "satellite": "Aqua", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.95801, 28.90456, 20.95801, 28.90456], "geometry": {"coordinates": [20.95801, 28.90456], "type": "Point"}, "id": "301", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 296.28, "brightness": 326.34, "confidence": 100, "daynight": "N", "frp": 23.53, "instrument": "MODIS", "latitude": 28.90456, "longitude": 20.95801, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.78229, 28.91153, 19.78229, 28.91153], "geometry": {"coordinates": [19.78229, 28.91153], "type": "Point"}, "id": "302", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 296.43, "brightness": 331.94, "confidence": 100, "daynight": "N", "frp": 35.44, "instrument": "MODIS", "latitude": 28.91153, "longitude": 19.78229, "satellite": "Aqua", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.77136, 28.91301, 19.77136, 28.91301], "geometry": {"coordinates": [19.77136, 28.91301], "type": "Point"}, "id": "303", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 295.52, "brightness": 333.89, "confidence": 100, "daynight": "N", "frp": 38.45, "instrument": "MODIS", "latitude": 28.91301, "longitude": 19.77136, "satellite": "Aqua", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.78851, 29.03981, 20.78851, 29.03981], "geometry": {"coordinates": [20.78851, 29.03981], "type": "Point"}, "id": "304", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 295.88, "brightness": 307.23, "confidence": 71, "daynight": "N", "frp": 6.66, "instrument": "MODIS", "latitude": 29.03981, "longitude": 20.78851, "satellite": "Aqua", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.05895, 29.07109, 19.05895, 29.07109], "geometry": {"coordinates": [19.05895, 29.07109], "type": "Point"}, "id": "305", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 295.71, "brightness": 307.47, "confidence": 72, "daynight": "N", "frp": 8.62, "instrument": "MODIS", "latitude": 29.07109, "longitude": 19.05895, "satellite": "Aqua", "scan": 1.18, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.70346, 29.23335, 19.70346, 29.23335], "geometry": {"coordinates": [19.70346, 29.23335], "type": "Point"}, "id": "306", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 295.27, "brightness": 314.82, "confidence": 90, "daynight": "N", "frp": 14.88, "instrument": "MODIS", "latitude": 29.23335, "longitude": 19.70346, "satellite": "Aqua", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.69231, 29.23482, 19.69231, 29.23482], "geometry": {"coordinates": [19.69231, 29.23482], "type": "Point"}, "id": "307", "properties": {"acq_date": "2024-07-11", "acq_time": 105, "bright_t31": 295.05, "brightness": 306.67, "confidence": 69, "daynight": "N", "frp": 8.07, "instrument": "MODIS", "latitude": 29.23482, "longitude": 19.69231, "satellite": "Aqua", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [18.74112, -6.42957, 18.74112, -6.42957], "geometry": {"coordinates": [18.74112, -6.42957], "type": "Point"}, "id": "308", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 285.83, "brightness": 302.77, "confidence": 51, "daynight": "N", "frp": 15.99, "instrument": "MODIS", "latitude": -6.42957, "longitude": 18.74112, "satellite": "Aqua", "scan": 1.7, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [18.72615, -6.42744, 18.72615, -6.42744], "geometry": {"coordinates": [18.72615, -6.42744], "type": "Point"}, "id": "309", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 285.45, "brightness": 301.9, "confidence": 45, "daynight": "N", "frp": 14.9, "instrument": "MODIS", "latitude": -6.42744, "longitude": 18.72615, "satellite": "Aqua", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [18.73449, -6.4273, 18.73449, -6.4273], "geometry": {"coordinates": [18.73449, -6.4273], "type": "Point"}, "id": "310", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 286.38, "brightness": 306.68, "confidence": 48, "daynight": "N", "frp": 19.94, "instrument": "MODIS", "latitude": -6.4273, "longitude": 18.73449, "satellite": "Aqua", "scan": 1.7, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [16.64383, -6.18885, 16.64383, -6.18885], "geometry": {"coordinates": [16.64383, -6.18885], "type": "Point"}, "id": "311", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 289.64, "brightness": 301.71, "confidence": 8, "daynight": "N", "frp": 6.28, "instrument": "MODIS", "latitude": -6.18885, "longitude": 16.64383, "satellite": "Aqua", "scan": 1.21, "track": 1.1, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [16.64686, -6.16945, 16.64686, -6.16945], "geometry": {"coordinates": [16.64686, -6.16945], "type": "Point"}, "id": "312", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 289.89, "brightness": 308.55, "confidence": 45, "daynight": "N", "frp": 11.55, "instrument": "MODIS", "latitude": -6.16945, "longitude": 16.64686, "satellite": "Aqua", "scan": 1.21, "track": 1.1, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.37719, -6.0323, 14.37719, -6.0323], "geometry": {"coordinates": [14.37719, -6.0323], "type": "Point"}, "id": "313", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 287.8, "brightness": 300.66, "confidence": 32, "daynight": "N", "frp": 5.53, "instrument": "MODIS", "latitude": -6.0323, "longitude": 14.37719, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [11.38074, -4.92306, 11.38074, -4.92306], "geometry": {"coordinates": [11.38074, -4.92306], "type": "Point"}, "id": "314", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 291.88, "brightness": 311.88, "confidence": 77, "daynight": "N", "frp": 14.27, "instrument": "MODIS", "latitude": -4.92306, "longitude": 11.38074, "satellite": "Aqua", "scan": 1.22, "track": 1.1, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [16.74264, -4.28926, 16.74264, -4.28926], "geometry": {"coordinates": [16.74264, -4.28926], "type": "Point"}, "id": "315", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 290.61, "brightness": 301.46, "confidence": 41, "daynight": "N", "frp": 5.61, "instrument": "MODIS", "latitude": -4.28926, "longitude": 16.74264, "satellite": "Aqua", "scan": 1.17, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [16.74402, -4.27973, 16.74402, -4.27973], "geometry": {"coordinates": [16.74402, -4.27973], "type": "Point"}, "id": "316", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 290.75, "brightness": 303.31, "confidence": 54, "daynight": "N", "frp": 7.05, "instrument": "MODIS", "latitude": -4.27973, "longitude": 16.74402, "satellite": "Aqua", "scan": 1.17, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [12.25291, -3.89543, 12.25291, -3.89543], "geometry": {"coordinates": [12.25291, -3.89543], "type": "Point"}, "id": "317", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 288.85, "brightness": 305.58, "confidence": 65, "daynight": "N", "frp": 10.07, "instrument": "MODIS", "latitude": -3.89543, "longitude": 12.25291, "satellite": "Aqua", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.35833, -3.3833, 15.35833, -3.3833], "geometry": {"coordinates": [15.35833, -3.3833], "type": "Point"}, "id": "318", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 290.26, "brightness": 300.42, "confidence": 27, "daynight": "N", "frp": 4.7, "instrument": "MODIS", "latitude": -3.3833, "longitude": 15.35833, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.33357, -3.25909, 15.33357, -3.25909], "geometry": {"coordinates": [15.33357, -3.25909], "type": "Point"}, "id": "319", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 290.81, "brightness": 303.32, "confidence": 42, "daynight": "N", "frp": 5.56, "instrument": "MODIS", "latitude": -3.25909, "longitude": 15.33357, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [11.39318, -3.25448, 11.39318, -3.25448], "geometry": {"coordinates": [11.39318, -3.25448], "type": "Point"}, "id": "320", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 289.82, "brightness": 311.97, "confidence": 84, "daynight": "N", "frp": 16.63, "instrument": "MODIS", "latitude": -3.25448, "longitude": 11.39318, "satellite": "Aqua", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.35274, -3.25281, 15.35274, -3.25281], "geometry": {"coordinates": [15.35274, -3.25281], "type": "Point"}, "id": "321", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 291.1, "brightness": 301.9, "confidence": 8, "daynight": "N", "frp": 4.46, "instrument": "MODIS", "latitude": -3.25281, "longitude": 15.35274, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [11.38184, -3.25273, 11.38184, -3.25273], "geometry": {"coordinates": [11.38184, -3.25273], "type": "Point"}, "id": "322", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 291.67, "brightness": 337.71, "confidence": 100, "daynight": "N", "frp": 58.51, "instrument": "MODIS", "latitude": -3.25273, "longitude": 11.38184, "satellite": "Aqua", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.34368, -3.25146, 15.34368, -3.25146], "geometry": {"coordinates": [15.34368, -3.25146], "type": "Point"}, "id": "323", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 291.95, "brightness": 330.55, "confidence": 100, "daynight": "N", "frp": 30.49, "instrument": "MODIS", "latitude": -3.25146, "longitude": 15.34368, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [11.38331, -3.24274, 11.38331, -3.24274], "geometry": {"coordinates": [11.38331, -3.24274], "type": "Point"}, "id": "324", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 289.72, "brightness": 319.25, "confidence": 98, "daynight": "N", "frp": 26.0, "instrument": "MODIS", "latitude": -3.24274, "longitude": 11.38331, "satellite": "Aqua", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.47258, -3.16982, 15.47258, -3.16982], "geometry": {"coordinates": [15.47258, -3.16982], "type": "Point"}, "id": "325", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 290.48, "brightness": 303.4, "confidence": 55, "daynight": "N", "frp": 6.31, "instrument": "MODIS", "latitude": -3.16982, "longitude": 15.47258, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.42362, -3.12596, 15.42362, -3.12596], "geometry": {"coordinates": [15.42362, -3.12596], "type": "Point"}, "id": "326", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 291.48, "brightness": 310.49, "confidence": 80, "daynight": "N", "frp": 10.45, "instrument": "MODIS", "latitude": -3.12596, "longitude": 15.42362, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.42501, -3.11702, 15.42501, -3.11702], "geometry": {"coordinates": [15.42501, -3.11702], "type": "Point"}, "id": "327", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 291.61, "brightness": 307.78, "confidence": 72, "daynight": "N", "frp": 8.6, "instrument": "MODIS", "latitude": -3.11702, "longitude": 15.42501, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.65575, -2.81822, 14.65575, -2.81822], "geometry": {"coordinates": [14.65575, -2.81822], "type": "Point"}, "id": "328", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 289.53, "brightness": 302.23, "confidence": 19, "daynight": "N", "frp": 4.67, "instrument": "MODIS", "latitude": -2.81822, "longitude": 14.65575, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.63814, -2.81559, 14.63814, -2.81559], "geometry": {"coordinates": [14.63814, -2.81559], "type": "Point"}, "id": "329", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 288.52, "brightness": 301.36, "confidence": 3, "daynight": "N", "frp": 4.03, "instrument": "MODIS", "latitude": -2.81559, "longitude": 14.63814, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [10.72288, -2.81432, 10.72288, -2.81432], "geometry": {"coordinates": [10.72288, -2.81432], "type": "Point"}, "id": "330", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 287.95, "brightness": 312.12, "confidence": 84, "daynight": "N", "frp": 20.5, "instrument": "MODIS", "latitude": -2.81432, "longitude": 10.72288, "satellite": "Aqua", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.62933, -2.81428, 14.62933, -2.81428], "geometry": {"coordinates": [14.62933, -2.81428], "type": "Point"}, "id": "331", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 288.76, "brightness": 309.57, "confidence": 78, "daynight": "N", "frp": 9.41, "instrument": "MODIS", "latitude": -2.81428, "longitude": 14.62933, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.66586, -2.81067, 14.66586, -2.81067], "geometry": {"coordinates": [14.66586, -2.81067], "type": "Point"}, "id": "332", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 288.68, "brightness": 304.29, "confidence": 51, "daynight": "N", "frp": 5.94, "instrument": "MODIS", "latitude": -2.81067, "longitude": 14.66586, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.65704, -2.80935, 14.65704, -2.80935], "geometry": {"coordinates": [14.65704, -2.80935], "type": "Point"}, "id": "333", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 291.96, "brightness": 340.18, "confidence": 100, "daynight": "N", "frp": 43.62, "instrument": "MODIS", "latitude": -2.80935, "longitude": 14.65704, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.64823, -2.80804, 14.64823, -2.80804], "geometry": {"coordinates": [14.64823, -2.80804], "type": "Point"}, "id": "334", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 294.59, "brightness": 356.52, "confidence": 100, "daynight": "N", "frp": 75.81, "instrument": "MODIS", "latitude": -2.80804, "longitude": 14.64823, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.63943, -2.80673, 14.63943, -2.80673], "geometry": {"coordinates": [14.63943, -2.80673], "type": "Point"}, "id": "335", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 294.21, "brightness": 366.49, "confidence": 100, "daynight": "N", "frp": 104.34, "instrument": "MODIS", "latitude": -2.80673, "longitude": 14.63943, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.63062, -2.80542, 14.63062, -2.80542], "geometry": {"coordinates": [14.63062, -2.80542], "type": "Point"}, "id": "336", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 287.9, "brightness": 305.34, "confidence": 13, "daynight": "N", "frp": 6.05, "instrument": "MODIS", "latitude": -2.80542, "longitude": 14.63062, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.04683, -2.69199, 15.04683, -2.69199], "geometry": {"coordinates": [15.04683, -2.69199], "type": "Point"}, "id": "337", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 290.14, "brightness": 300.85, "confidence": 34, "daynight": "N", "frp": 4.82, "instrument": "MODIS", "latitude": -2.69199, "longitude": 15.04683, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.5934, -2.65152, 14.5934, -2.65152], "geometry": {"coordinates": [14.5934, -2.65152], "type": "Point"}, "id": "338", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 290.0, "brightness": 302.79, "confidence": 51, "daynight": "N", "frp": 5.74, "instrument": "MODIS", "latitude": -2.65152, "longitude": 14.5934, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.68032, -2.28632, 14.68032, -2.28632], "geometry": {"coordinates": [14.68032, -2.28632], "type": "Point"}, "id": "339", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 289.23, "brightness": 336.26, "confidence": 100, "daynight": "N", "frp": 38.16, "instrument": "MODIS", "latitude": -2.28632, "longitude": 14.68032, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.67152, -2.285, 14.67152, -2.285], "geometry": {"coordinates": [14.67152, -2.285], "type": "Point"}, "id": "340", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 288.79, "brightness": 324.74, "confidence": 100, "daynight": "N", "frp": 23.16, "instrument": "MODIS", "latitude": -2.285, "longitude": 14.67152, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.6816, -2.27746, 14.6816, -2.27746], "geometry": {"coordinates": [14.6816, -2.27746], "type": "Point"}, "id": "341", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 289.17, "brightness": 323.28, "confidence": 100, "daynight": "N", "frp": 21.69, "instrument": "MODIS", "latitude": -2.27746, "longitude": 14.6816, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.6728, -2.27614, 14.6728, -2.27614], "geometry": {"coordinates": [14.6728, -2.27614], "type": "Point"}, "id": "342", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 288.44, "brightness": 322.66, "confidence": 100, "daynight": "N", "frp": 20.98, "instrument": "MODIS", "latitude": -2.27614, "longitude": 14.6728, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.74114, -2.25055, 15.74114, -2.25055], "geometry": {"coordinates": [15.74114, -2.25055], "type": "Point"}, "id": "343", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 291.28, "brightness": 305.66, "confidence": 65, "daynight": "N", "frp": 7.27, "instrument": "MODIS", "latitude": -2.25055, "longitude": 15.74114, "satellite": "Aqua", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.73206, -2.24921, 15.73206, -2.24921], "geometry": {"coordinates": [15.73206, -2.24921], "type": "Point"}, "id": "344", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 290.82, "brightness": 303.41, "confidence": 55, "daynight": "N", "frp": 5.88, "instrument": "MODIS", "latitude": -2.24921, "longitude": 15.73206, "satellite": "Aqua", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.11193, -2.21935, 14.11193, -2.21935], "geometry": {"coordinates": [14.11193, -2.21935], "type": "Point"}, "id": "345", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 291.19, "brightness": 308.94, "confidence": 76, "daynight": "N", "frp": 9.69, "instrument": "MODIS", "latitude": -2.21935, "longitude": 14.11193, "satellite": "Aqua", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.30672, -1.77742, 14.30672, -1.77742], "geometry": {"coordinates": [14.30672, -1.77742], "type": "Point"}, "id": "346", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 284.71, "brightness": 304.52, "confidence": 56, "daynight": "N", "frp": 6.28, "instrument": "MODIS", "latitude": -1.77742, "longitude": 14.30672, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.30801, -1.76853, 14.30801, -1.76853], "geometry": {"coordinates": [14.30801, -1.76853], "type": "Point"}, "id": "347", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 286.66, "brightness": 310.2, "confidence": 76, "daynight": "N", "frp": 9.52, "instrument": "MODIS", "latitude": -1.76853, "longitude": 14.30801, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.33587, -1.76362, 14.33587, -1.76362], "geometry": {"coordinates": [14.33587, -1.76362], "type": "Point"}, "id": "348", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 287.6, "brightness": 309.94, "confidence": 78, "daynight": "N", "frp": 9.06, "instrument": "MODIS", "latitude": -1.76362, "longitude": 14.33587, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.33715, -1.75472, 14.33715, -1.75472], "geometry": {"coordinates": [14.33715, -1.75472], "type": "Point"}, "id": "349", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 288.84, "brightness": 309.28, "confidence": 77, "daynight": "N", "frp": 8.82, "instrument": "MODIS", "latitude": -1.75472, "longitude": 14.33715, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.25282, -1.21568, 14.25282, -1.21568], "geometry": {"coordinates": [14.25282, -1.21568], "type": "Point"}, "id": "350", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 289.64, "brightness": 300.79, "confidence": 34, "daynight": "N", "frp": 4.24, "instrument": "MODIS", "latitude": -1.21568, "longitude": 14.25282, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [16.98377, -1.0251, 16.98377, -1.0251], "geometry": {"coordinates": [16.98377, -1.0251], "type": "Point"}, "id": "351", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 289.63, "brightness": 301.14, "confidence": 38, "daynight": "N", "frp": 4.59, "instrument": "MODIS", "latitude": -1.0251, "longitude": 16.98377, "satellite": "Aqua", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.34319, -0.88167, 15.34319, -0.88167], "geometry": {"coordinates": [15.34319, -0.88167], "type": "Point"}, "id": "352", "properties": {"acq_date": "2024-07-11", "acq_time": 111, "bright_t31": 290.55, "brightness": 302.46, "confidence": 49, "daynight": "N", "frp": 4.63, "instrument": "MODIS", "latitude": -0.88167, "longitude": 15.34319, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.54108, -12.46231, 14.54108, -12.46231], "geometry": {"coordinates": [14.54108, -12.46231], "type": "Point"}, "id": "353", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 286.09, "brightness": 302.46, "confidence": 49, "daynight": "N", "frp": 8.79, "instrument": "MODIS", "latitude": -12.46231, "longitude": 14.54108, "satellite": "Aqua", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.75074, -12.20611, 14.75074, -12.20611], "geometry": {"coordinates": [14.75074, -12.20611], "type": "Point"}, "id": "354", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 289.36, "brightness": 307.44, "confidence": 71, "daynight": "N", "frp": 11.71, "instrument": "MODIS", "latitude": -12.20611, "longitude": 14.75074, "satellite": "Aqua", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.76936, -12.01511, 14.76936, -12.01511], "geometry": {"coordinates": [14.76936, -12.01511], "type": "Point"}, "id": "355", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 290.05, "brightness": 307.78, "confidence": 73, "daynight": "N", "frp": 11.36, "instrument": "MODIS", "latitude": -12.01511, "longitude": 14.76936, "satellite": "Aqua", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.72804, -11.91769, 14.72804, -11.91769], "geometry": {"coordinates": [14.72804, -11.91769], "type": "Point"}, "id": "356", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 287.78, "brightness": 301.54, "confidence": 42, "daynight": "N", "frp": 7.25, "instrument": "MODIS", "latitude": -11.91769, "longitude": 14.72804, "satellite": "Aqua", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.71809, -11.91627, 14.71809, -11.91627], "geometry": {"coordinates": [14.71809, -11.91627], "type": "Point"}, "id": "357", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 288.86, "brightness": 306.8, "confidence": 69, "daynight": "N", "frp": 10.48, "instrument": "MODIS", "latitude": -11.91627, "longitude": 14.71809, "satellite": "Aqua", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.6013, -11.45954, 15.6013, -11.45954], "geometry": {"coordinates": [15.6013, -11.45954], "type": "Point"}, "id": "358", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 285.24, "brightness": 302.73, "confidence": 51, "daynight": "N", "frp": 10.09, "instrument": "MODIS", "latitude": -11.45954, "longitude": 15.6013, "satellite": "Aqua", "scan": 1.22, "track": 1.1, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.67456, -11.33869, 14.67456, -11.33869], "geometry": {"coordinates": [14.67456, -11.33869], "type": "Point"}, "id": "359", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 286.6, "brightness": 302.22, "confidence": 48, "daynight": "N", "frp": 7.76, "instrument": "MODIS", "latitude": -11.33869, "longitude": 14.67456, "satellite": "Aqua", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.66533, -11.33738, 14.66533, -11.33738], "geometry": {"coordinates": [14.66533, -11.33738], "type": "Point"}, "id": "360", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 289.55, "brightness": 323.17, "confidence": 100, "daynight": "N", "frp": 26.25, "instrument": "MODIS", "latitude": -11.33738, "longitude": 14.66533, "satellite": "Aqua", "scan": 1.1, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.62218, -11.19144, 14.62218, -11.19144], "geometry": {"coordinates": [14.62218, -11.19144], "type": "Point"}, "id": "361", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 288.24, "brightness": 328.09, "confidence": 100, "daynight": "N", "frp": 33.41, "instrument": "MODIS", "latitude": -11.19144, "longitude": 14.62218, "satellite": "Aqua", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.62891, -11.18574, 14.62891, -11.18574], "geometry": {"coordinates": [14.62891, -11.18574], "type": "Point"}, "id": "362", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 287.57, "brightness": 322.48, "confidence": 100, "daynight": "N", "frp": 25.18, "instrument": "MODIS", "latitude": -11.18574, "longitude": 14.62891, "satellite": "Aqua", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.61947, -11.18438, 14.61947, -11.18438], "geometry": {"coordinates": [14.61947, -11.18438], "type": "Point"}, "id": "363", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 288.54, "brightness": 328.21, "confidence": 100, "daynight": "N", "frp": 32.62, "instrument": "MODIS", "latitude": -11.18438, "longitude": 14.61947, "satellite": "Aqua", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.42114, -10.75908, 14.42114, -10.75908], "geometry": {"coordinates": [14.42114, -10.75908], "type": "Point"}, "id": "364", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 290.47, "brightness": 322.02, "confidence": 100, "daynight": "N", "frp": 23.89, "instrument": "MODIS", "latitude": -10.75908, "longitude": 14.42114, "satellite": "Aqua", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.41164, -10.7577, 14.41164, -10.7577], "geometry": {"coordinates": [14.41164, -10.7577], "type": "Point"}, "id": "365", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 290.77, "brightness": 330.75, "confidence": 100, "daynight": "N", "frp": 34.55, "instrument": "MODIS", "latitude": -10.7577, "longitude": 14.41164, "satellite": "Aqua", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.40228, -10.75635, 14.40228, -10.75635], "geometry": {"coordinates": [14.40228, -10.75635], "type": "Point"}, "id": "366", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 287.34, "brightness": 315.48, "confidence": 91, "daynight": "N", "frp": 17.14, "instrument": "MODIS", "latitude": -10.75635, "longitude": 14.40228, "satellite": "Aqua", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.41323, -10.74861, 14.41323, -10.74861], "geometry": {"coordinates": [14.41323, -10.74861], "type": "Point"}, "id": "367", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 288.47, "brightness": 300.11, "confidence": 17, "daynight": "N", "frp": 6.01, "instrument": "MODIS", "latitude": -10.74861, "longitude": 14.41323, "satellite": "Aqua", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.40357, -10.74722, 14.40357, -10.74722], "geometry": {"coordinates": [14.40357, -10.74722], "type": "Point"}, "id": "368", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 291.83, "brightness": 335.74, "confidence": 100, "daynight": "N", "frp": 42.53, "instrument": "MODIS", "latitude": -10.74722, "longitude": 14.40357, "satellite": "Aqua", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.39403, -10.74584, 14.39403, -10.74584], "geometry": {"coordinates": [14.39403, -10.74584], "type": "Point"}, "id": "369", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 289.99, "brightness": 340.26, "confidence": 100, "daynight": "N", "frp": 50.1, "instrument": "MODIS", "latitude": -10.74584, "longitude": 14.39403, "satellite": "Aqua", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.61667, -10.38768, 15.61667, -10.38768], "geometry": {"coordinates": [15.61667, -10.38768], "type": "Point"}, "id": "370", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 286.01, "brightness": 306.01, "confidence": 66, "daynight": "N", "frp": 11.42, "instrument": "MODIS", "latitude": -10.38768, "longitude": 15.61667, "satellite": "Aqua", "scan": 1.19, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.75688, -10.25491, 14.75688, -10.25491], "geometry": {"coordinates": [14.75688, -10.25491], "type": "Point"}, "id": "371", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 292.01, "brightness": 330.75, "confidence": 100, "daynight": "N", "frp": 35.69, "instrument": "MODIS", "latitude": -10.25491, "longitude": 14.75688, "satellite": "Aqua", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.74757, -10.25357, 14.74757, -10.25357], "geometry": {"coordinates": [14.74757, -10.25357], "type": "Point"}, "id": "372", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 289.92, "brightness": 310.94, "confidence": 81, "daynight": "N", "frp": 13.25, "instrument": "MODIS", "latitude": -10.25357, "longitude": 14.74757, "satellite": "Aqua", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.91926, -10.21666, 15.91926, -10.21666], "geometry": {"coordinates": [15.91926, -10.21666], "type": "Point"}, "id": "373", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 290.16, "brightness": 304.69, "confidence": 61, "daynight": "N", "frp": 10.84, "instrument": "MODIS", "latitude": -10.21666, "longitude": 15.91926, "satellite": "Aqua", "scan": 1.23, "track": 1.1, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.2282, -10.0459, 15.2282, -10.0459], "geometry": {"coordinates": [15.2282, -10.0459], "type": "Point"}, "id": "374", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 288.26, "brightness": 304.78, "confidence": 62, "daynight": "N", "frp": 10.27, "instrument": "MODIS", "latitude": -10.0459, "longitude": 15.2282, "satellite": "Aqua", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.79436, -10.02097, 20.79436, -10.02097], "geometry": {"coordinates": [20.79436, -10.02097], "type": "Point"}, "id": "375", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 280.11, "brightness": 309.96, "confidence": 79, "daynight": "N", "frp": 58.35, "instrument": "MODIS", "latitude": -10.02097, "longitude": 20.79436, "satellite": "Aqua", "scan": 2.82, "track": 1.6, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.80201, -10.01824, 20.80201, -10.01824], "geometry": {"coordinates": [20.80201, -10.01824], "type": "Point"}, "id": "376", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 280.24, "brightness": 311.71, "confidence": 83, "daynight": "N", "frp": 61.62, "instrument": "MODIS", "latitude": -10.01824, "longitude": 20.80201, "satellite": "Aqua", "scan": 2.82, "track": 1.6, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.79615, -10.00673, 20.79615, -10.00673], "geometry": {"coordinates": [20.79615, -10.00673], "type": "Point"}, "id": "377", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 280.33, "brightness": 306.44, "confidence": 68, "daynight": "N", "frp": 47.21, "instrument": "MODIS", "latitude": -10.00673, "longitude": 20.79615, "satellite": "Aqua", "scan": 2.82, "track": 1.6, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.10588, -9.97119, 15.10588, -9.97119], "geometry": {"coordinates": [15.10588, -9.97119], "type": "Point"}, "id": "378", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 287.43, "brightness": 303.51, "confidence": 56, "daynight": "N", "frp": 9.32, "instrument": "MODIS", "latitude": -9.97119, "longitude": 15.10588, "satellite": "Aqua", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [18.80098, -9.78046, 18.80098, -9.78046], "geometry": {"coordinates": [18.80098, -9.78046], "type": "Point"}, "id": "379", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 288.7, "brightness": 306.25, "confidence": 67, "daynight": "N", "frp": 22.96, "instrument": "MODIS", "latitude": -9.78046, "longitude": 18.80098, "satellite": "Aqua", "scan": 1.94, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [18.80302, -9.76845, 18.80302, -9.76845], "geometry": {"coordinates": [18.80302, -9.76845], "type": "Point"}, "id": "380", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 286.43, "brightness": 303.34, "confidence": 50, "daynight": "N", "frp": 18.76, "instrument": "MODIS", "latitude": -9.76845, "longitude": 18.80302, "satellite": "Aqua", "scan": 1.94, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [17.01486, -9.07155, 17.01486, -9.07155], "geometry": {"coordinates": [17.01486, -9.07155], "type": "Point"}, "id": "381", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 290.09, "brightness": 301.46, "confidence": 41, "daynight": "N", "frp": 7.95, "instrument": "MODIS", "latitude": -9.07155, "longitude": 17.01486, "satellite": "Aqua", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [16.28318, -8.66248, 16.28318, -8.66248], "geometry": {"coordinates": [16.28318, -8.66248], "type": "Point"}, "id": "382", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 288.7, "brightness": 301.42, "confidence": 40, "daynight": "N", "frp": 8.64, "instrument": "MODIS", "latitude": -8.66248, "longitude": 16.28318, "satellite": "Aqua", "scan": 1.24, "track": 1.11, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [17.10872, -8.6142, 17.10872, -8.6142], "geometry": {"coordinates": [17.10872, -8.6142], "type": "Point"}, "id": "383", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 290.86, "brightness": 300.91, "confidence": 29, "daynight": "N", "frp": 7.44, "instrument": "MODIS", "latitude": -8.6142, "longitude": 17.10872, "satellite": "Aqua", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [16.14629, -8.60302, 16.14629, -8.60302], "geometry": {"coordinates": [16.14629, -8.60302], "type": "Point"}, "id": "384", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 280.6, "brightness": 300.07, "confidence": 15, "daynight": "N", "frp": 9.31, "instrument": "MODIS", "latitude": -8.60302, "longitude": 16.14629, "satellite": "Aqua", "scan": 1.22, "track": 1.1, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [16.32397, -8.57583, 16.32397, -8.57583], "geometry": {"coordinates": [16.32397, -8.57583], "type": "Point"}, "id": "385", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 288.35, "brightness": 300.37, "confidence": 25, "daynight": "N", "frp": 6.98, "instrument": "MODIS", "latitude": -8.57583, "longitude": 16.32397, "satellite": "Aqua", "scan": 1.24, "track": 1.11, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.95159, -8.5474, 19.95159, -8.5474], "geometry": {"coordinates": [19.95159, -8.5474], "type": "Point"}, "id": "386", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 284.41, "brightness": 309.7, "confidence": 75, "daynight": "N", "frp": 39.09, "instrument": "MODIS", "latitude": -8.5474, "longitude": 19.95159, "satellite": "Aqua", "scan": 2.29, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.9586, -8.53571, 19.9586, -8.53571], "geometry": {"coordinates": [19.9586, -8.53571], "type": "Point"}, "id": "387", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 286.21, "brightness": 325.13, "confidence": 100, "daynight": "N", "frp": 84.9, "instrument": "MODIS", "latitude": -8.53571, "longitude": 19.9586, "satellite": "Aqua", "scan": 2.29, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.95346, -8.53443, 19.95346, -8.53443], "geometry": {"coordinates": [19.95346, -8.53443], "type": "Point"}, "id": "388", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 285.62, "brightness": 322.19, "confidence": 100, "daynight": "N", "frp": 73.28, "instrument": "MODIS", "latitude": -8.53443, "longitude": 19.95346, "satellite": "Aqua", "scan": 2.29, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [24.0696, -8.37143, 24.0696, -8.37143], "geometry": {"coordinates": [24.0696, -8.37143], "type": "Point"}, "id": "389", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 288.7, "brightness": 301.71, "confidence": 44, "daynight": "N", "frp": 61.61, "instrument": "MODIS", "latitude": -8.37143, "longitude": 24.0696, "satellite": "Aqua", "scan": 4.82, "track": 2.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [17.1354, -8.32438, 17.1354, -8.32438], "geometry": {"coordinates": [17.1354, -8.32438], "type": "Point"}, "id": "390", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 293.01, "brightness": 311.06, "confidence": 82, "daynight": "N", "frp": 18.01, "instrument": "MODIS", "latitude": -8.32438, "longitude": 17.1354, "satellite": "Aqua", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [17.13017, -8.32107, 17.13017, -8.32107], "geometry": {"coordinates": [17.13017, -8.32107], "type": "Point"}, "id": "391", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 292.46, "brightness": 311.53, "confidence": 83, "daynight": "N", "frp": 18.55, "instrument": "MODIS", "latitude": -8.32107, "longitude": 17.13017, "satellite": "Aqua", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [17.28733, -8.19069, 17.28733, -8.19069], "geometry": {"coordinates": [17.28733, -8.19069], "type": "Point"}, "id": "392", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 290.01, "brightness": 300.03, "confidence": 7, "daynight": "N", "frp": 8.52, "instrument": "MODIS", "latitude": -8.19069, "longitude": 17.28733, "satellite": "Aqua", "scan": 1.42, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [22.36144, -8.17343, 22.36144, -8.17343], "geometry": {"coordinates": [22.36144, -8.17343], "type": "Point"}, "id": "393", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 283.38, "brightness": 300.29, "confidence": 24, "daynight": "N", "frp": 40.73, "instrument": "MODIS", "latitude": -8.17343, "longitude": 22.36144, "satellite": "Aqua", "scan": 3.51, "track": 1.76, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.02168, -8.08615, 20.02168, -8.08615], "geometry": {"coordinates": [20.02168, -8.08615], "type": "Point"}, "id": "394", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 283.21, "brightness": 301.98, "confidence": 41, "daynight": "N", "frp": 22.65, "instrument": "MODIS", "latitude": -8.08615, "longitude": 20.02168, "satellite": "Aqua", "scan": 2.28, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.03084, -8.07566, 20.03084, -8.07566], "geometry": {"coordinates": [20.03084, -8.07566], "type": "Point"}, "id": "395", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 285.08, "brightness": 310.99, "confidence": 56, "daynight": "N", "frp": 39.66, "instrument": "MODIS", "latitude": -8.07566, "longitude": 20.03084, "satellite": "Aqua", "scan": 2.28, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.02348, -8.0732, 20.02348, -8.0732], "geometry": {"coordinates": [20.02348, -8.0732], "type": "Point"}, "id": "396", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 284.74, "brightness": 312.69, "confidence": 79, "daynight": "N", "frp": 44.14, "instrument": "MODIS", "latitude": -8.0732, "longitude": 20.02348, "satellite": "Aqua", "scan": 2.28, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.03293, -8.06274, 20.03293, -8.06274], "geometry": {"coordinates": [20.03293, -8.06274], "type": "Point"}, "id": "397", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 286.41, "brightness": 314.94, "confidence": 90, "daynight": "N", "frp": 50.99, "instrument": "MODIS", "latitude": -8.06274, "longitude": 20.03293, "satellite": "Aqua", "scan": 2.28, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.02548, -8.06027, 20.02548, -8.06027], "geometry": {"coordinates": [20.02548, -8.06027], "type": "Point"}, "id": "398", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 286.65, "brightness": 323.38, "confidence": 100, "daynight": "N", "frp": 76.88, "instrument": "MODIS", "latitude": -8.06027, "longitude": 20.02548, "satellite": "Aqua", "scan": 2.28, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.01145, -8.05983, 20.01145, -8.05983], "geometry": {"coordinates": [20.01145, -8.05983], "type": "Point"}, "id": "399", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 284.1, "brightness": 301.91, "confidence": 20, "daynight": "N", "frp": 21.73, "instrument": "MODIS", "latitude": -8.05983, "longitude": 20.01145, "satellite": "Aqua", "scan": 2.27, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.03481, -8.0498, 20.03481, -8.0498], "geometry": {"coordinates": [20.03481, -8.0498], "type": "Point"}, "id": "400", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 287.18, "brightness": 318.63, "confidence": 97, "daynight": "N", "frp": 60.44, "instrument": "MODIS", "latitude": -8.0498, "longitude": 20.03481, "satellite": "Aqua", "scan": 2.28, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.01319, -8.04689, 20.01319, -8.04689], "geometry": {"coordinates": [20.01319, -8.04689], "type": "Point"}, "id": "401", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 285.52, "brightness": 317.65, "confidence": 95, "daynight": "N", "frp": 57.41, "instrument": "MODIS", "latitude": -8.04689, "longitude": 20.01319, "satellite": "Aqua", "scan": 2.27, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.01529, -8.034, 20.01529, -8.034], "geometry": {"coordinates": [20.01529, -8.034], "type": "Point"}, "id": "402", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 286.31, "brightness": 311.01, "confidence": 81, "daynight": "N", "frp": 40.82, "instrument": "MODIS", "latitude": -8.034, "longitude": 20.01529, "satellite": "Aqua", "scan": 2.27, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.0175, -8.02112, 20.0175, -8.02112], "geometry": {"coordinates": [20.0175, -8.02112], "type": "Point"}, "id": "403", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 286.17, "brightness": 300.82, "confidence": 34, "daynight": "N", "frp": 21.4, "instrument": "MODIS", "latitude": -8.02112, "longitude": 20.0175, "satellite": "Aqua", "scan": 2.27, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [16.7469, -7.80876, 16.7469, -7.80876], "geometry": {"coordinates": [16.7469, -7.80876], "type": "Point"}, "id": "404", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 285.2, "brightness": 300.68, "confidence": 32, "daynight": "N", "frp": 8.84, "instrument": "MODIS", "latitude": -7.80876, "longitude": 16.7469, "satellite": "Aqua", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [16.74215, -7.80846, 16.74215, -7.80846], "geometry": {"coordinates": [16.74215, -7.80846], "type": "Point"}, "id": "405", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 286.01, "brightness": 313.26, "confidence": 87, "daynight": "N", "frp": 19.86, "instrument": "MODIS", "latitude": -7.80846, "longitude": 16.74215, "satellite": "Aqua", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [16.73538, -7.80717, 16.73538, -7.80717], "geometry": {"coordinates": [16.73538, -7.80717], "type": "Point"}, "id": "406", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 286.03, "brightness": 307.72, "confidence": 72, "daynight": "N", "frp": 14.89, "instrument": "MODIS", "latitude": -7.80717, "longitude": 16.73538, "satellite": "Aqua", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [16.62081, -7.5261, 16.62081, -7.5261], "geometry": {"coordinates": [16.62081, -7.5261], "type": "Point"}, "id": "407", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 286.94, "brightness": 315.32, "confidence": 91, "daynight": "N", "frp": 22.14, "instrument": "MODIS", "latitude": -7.5261, "longitude": 16.62081, "satellite": "Aqua", "scan": 1.26, "track": 1.11, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.20592, -7.2981, 14.20592, -7.2981], "geometry": {"coordinates": [14.20592, -7.2981], "type": "Point"}, "id": "408", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 288.53, "brightness": 300.47, "confidence": 28, "daynight": "N", "frp": 5.48, "instrument": "MODIS", "latitude": -7.2981, "longitude": 14.20592, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [12.39802, -6.86023, 12.39802, -6.86023], "geometry": {"coordinates": [12.39802, -6.86023], "type": "Point"}, "id": "409", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 293.08, "brightness": 319.52, "confidence": 98, "daynight": "N", "frp": 18.24, "instrument": "MODIS", "latitude": -6.86023, "longitude": 12.39802, "satellite": "Aqua", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [12.38867, -6.85881, 12.38867, -6.85881], "geometry": {"coordinates": [12.38867, -6.85881], "type": "Point"}, "id": "410", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 292.95, "brightness": 307.62, "confidence": 55, "daynight": "N", "frp": 7.99, "instrument": "MODIS", "latitude": -6.85881, "longitude": 12.38867, "satellite": "Aqua", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [12.39939, -6.85114, 12.39939, -6.85114], "geometry": {"coordinates": [12.39939, -6.85114], "type": "Point"}, "id": "411", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 293.11, "brightness": 320.46, "confidence": 100, "daynight": "N", "frp": 18.9, "instrument": "MODIS", "latitude": -6.85114, "longitude": 12.39939, "satellite": "Aqua", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [12.39004, -6.84972, 12.39004, -6.84972], "geometry": {"coordinates": [12.39004, -6.84972], "type": "Point"}, "id": "412", "properties": {"acq_date": "2024-07-11", "acq_time": 113, "bright_t31": 292.95, "brightness": 311.42, "confidence": 75, "daynight": "N", "frp": 10.55, "instrument": "MODIS", "latitude": -6.84972, "longitude": 12.39004, "satellite": "Aqua", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.56953, -20.4658, -47.56953, -20.4658], "geometry": {"coordinates": [-47.56953, -20.4658], "type": "Point"}, "id": "413", "properties": {"acq_date": "2024-07-11", "acq_time": 128, "bright_t31": 285.29, "brightness": 316.45, "confidence": 93, "daynight": "N", "frp": 37.55, "instrument": "MODIS", "latitude": -20.4658, "longitude": -47.56953, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.55318, -20.46293, -47.55318, -20.46293], "geometry": {"coordinates": [-47.55318, -20.46293], "type": "Point"}, "id": "414", "properties": {"acq_date": "2024-07-11", "acq_time": 128, "bright_t31": 286.38, "brightness": 318.48, "confidence": 97, "daynight": "N", "frp": 41.68, "instrument": "MODIS", "latitude": -20.46293, "longitude": -47.55318, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.2608, -19.8457, -48.2608, -19.8457], "geometry": {"coordinates": [-48.2608, -19.8457], "type": "Point"}, "id": "415", "properties": {"acq_date": "2024-07-11", "acq_time": 128, "bright_t31": 287.69, "brightness": 305.8, "confidence": 66, "daynight": "N", "frp": 16.39, "instrument": "MODIS", "latitude": -19.8457, "longitude": -48.2608, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.24589, -19.84315, -48.24589, -19.84315], "geometry": {"coordinates": [-48.24589, -19.84315], "type": "Point"}, "id": "416", "properties": {"acq_date": "2024-07-11", "acq_time": 128, "bright_t31": 288.96, "brightness": 306.66, "confidence": 69, "daynight": "N", "frp": 17.51, "instrument": "MODIS", "latitude": -19.84315, "longitude": -48.24589, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.31187, -18.87236, -48.31187, -18.87236], "geometry": {"coordinates": [-48.31187, -18.87236], "type": "Point"}, "id": "417", "properties": {"acq_date": "2024-07-11", "acq_time": 128, "bright_t31": 288.83, "brightness": 305.59, "confidence": 65, "daynight": "N", "frp": 15.06, "instrument": "MODIS", "latitude": -18.87236, "longitude": -48.31187, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-59.87217, -17.68106, -59.87217, -17.68106], "geometry": {"coordinates": [-59.87217, -17.68106], "type": "Point"}, "id": "418", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 284.36, "brightness": 314.45, "confidence": 89, "daynight": "N", "frp": 44.35, "instrument": "MODIS", "latitude": -17.68106, "longitude": -59.87217, "satellite": "Terra", "scan": 2.07, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-59.85293, -17.67897, -59.85293, -17.67897], "geometry": {"coordinates": [-59.85293, -17.67897], "type": "Point"}, "id": "419", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 285.31, "brightness": 313.78, "confidence": 88, "daynight": "N", "frp": 42.84, "instrument": "MODIS", "latitude": -17.67897, "longitude": -59.85293, "satellite": "Terra", "scan": 2.06, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.58612, -17.55654, -48.58612, -17.55654], "geometry": {"coordinates": [-48.58612, -17.55654], "type": "Point"}, "id": "420", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 287.46, "brightness": 306.85, "confidence": 69, "daynight": "N", "frp": 19.65, "instrument": "MODIS", "latitude": -17.55654, "longitude": -48.58612, "satellite": "Terra", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.57067, -17.55399, -48.57067, -17.55399], "geometry": {"coordinates": [-48.57067, -17.55399], "type": "Point"}, "id": "421", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 288.65, "brightness": 311.26, "confidence": 82, "daynight": "N", "frp": 26.15, "instrument": "MODIS", "latitude": -17.55399, "longitude": -48.57067, "satellite": "Terra", "scan": 1.7, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-60.50642, -17.25607, -60.50642, -17.25607], "geometry": {"coordinates": [-60.50642, -17.25607], "type": "Point"}, "id": "422", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 285.22, "brightness": 314.48, "confidence": 89, "daynight": "N", "frp": 50.66, "instrument": "MODIS", "latitude": -17.25607, "longitude": -60.50642, "satellite": "Terra", "scan": 2.28, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-60.49995, -17.25422, -60.49995, -17.25422], "geometry": {"coordinates": [-60.49995, -17.25422], "type": "Point"}, "id": "423", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 285.58, "brightness": 327.61, "confidence": 100, "daynight": "N", "frp": 92.26, "instrument": "MODIS", "latitude": -17.25422, "longitude": -60.49995, "satellite": "Terra", "scan": 2.28, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-60.48532, -17.25373, -60.48532, -17.25373], "geometry": {"coordinates": [-60.48532, -17.25373], "type": "Point"}, "id": "424", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 285.15, "brightness": 307.23, "confidence": 71, "daynight": "N", "frp": 32.27, "instrument": "MODIS", "latitude": -17.25373, "longitude": -60.48532, "satellite": "Terra", "scan": 2.27, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-58.92849, -16.984, -58.92849, -16.984], "geometry": {"coordinates": [-58.92849, -16.984], "type": "Point"}, "id": "425", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 289.34, "brightness": 337.76, "confidence": 100, "daynight": "N", "frp": 88.87, "instrument": "MODIS", "latitude": -16.984, "longitude": -58.92849, "satellite": "Terra", "scan": 1.71, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-58.91272, -16.98214, -58.91272, -16.98214], "geometry": {"coordinates": [-58.91272, -16.98214], "type": "Point"}, "id": "426", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 289.2, "brightness": 328.55, "confidence": 100, "daynight": "N", "frp": 59.68, "instrument": "MODIS", "latitude": -16.98214, "longitude": -58.91272, "satellite": "Terra", "scan": 1.71, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-58.897, -16.98027, -58.897, -16.98027], "geometry": {"coordinates": [-58.897, -16.98027], "type": "Point"}, "id": "427", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 288.24, "brightness": 308.65, "confidence": 61, "daynight": "N", "frp": 18.55, "instrument": "MODIS", "latitude": -16.98027, "longitude": -58.897, "satellite": "Terra", "scan": 1.7, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-58.92991, -16.97258, -58.92991, -16.97258], "geometry": {"coordinates": [-58.92991, -16.97258], "type": "Point"}, "id": "428", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 289.08, "brightness": 310.33, "confidence": 42, "daynight": "N", "frp": 21.86, "instrument": "MODIS", "latitude": -16.97258, "longitude": -58.92991, "satellite": "Terra", "scan": 1.71, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-58.91416, -16.97073, -58.91416, -16.97073], "geometry": {"coordinates": [-58.91416, -16.97073], "type": "Point"}, "id": "429", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 289.47, "brightness": 314.1, "confidence": 61, "daynight": "N", "frp": 27.02, "instrument": "MODIS", "latitude": -16.97073, "longitude": -58.91416, "satellite": "Terra", "scan": 1.71, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-58.93136, -16.96116, -58.93136, -16.96116], "geometry": {"coordinates": [-58.93136, -16.96116], "type": "Point"}, "id": "430", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 288.37, "brightness": 320.83, "confidence": 100, "daynight": "N", "frp": 41.67, "instrument": "MODIS", "latitude": -16.96116, "longitude": -58.93136, "satellite": "Terra", "scan": 1.71, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-58.91559, -16.95932, -58.91559, -16.95932], "geometry": {"coordinates": [-58.91559, -16.95932], "type": "Point"}, "id": "431", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 288.37, "brightness": 314.72, "confidence": 66, "daynight": "N", "frp": 28.76, "instrument": "MODIS", "latitude": -16.95932, "longitude": -58.91559, "satellite": "Terra", "scan": 1.71, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-59.30305, -16.59519, -59.30305, -16.59519], "geometry": {"coordinates": [-59.30305, -16.59519], "type": "Point"}, "id": "432", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 287.26, "brightness": 306.7, "confidence": 69, "daynight": "N", "frp": 20.06, "instrument": "MODIS", "latitude": -16.59519, "longitude": -59.30305, "satellite": "Terra", "scan": 1.8, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-59.29712, -16.5909, -59.29712, -16.5909], "geometry": {"coordinates": [-59.29712, -16.5909], "type": "Point"}, "id": "433", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 287.53, "brightness": 307.53, "confidence": 72, "daynight": "N", "frp": 22.62, "instrument": "MODIS", "latitude": -16.5909, "longitude": -59.29712, "satellite": "Terra", "scan": 1.8, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-52.41954, -16.57364, -52.41954, -16.57364], "geometry": {"coordinates": [-52.41954, -16.57364], "type": "Point"}, "id": "434", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 291.61, "brightness": 327.86, "confidence": 100, "daynight": "N", "frp": 29.36, "instrument": "MODIS", "latitude": -16.57364, "longitude": -52.41954, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-52.42106, -16.56455, -52.42106, -16.56455], "geometry": {"coordinates": [-52.42106, -16.56455], "type": "Point"}, "id": "435", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 290.86, "brightness": 302.25, "confidence": 48, "daynight": "N", "frp": 5.79, "instrument": "MODIS", "latitude": -16.56455, "longitude": -52.42106, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.5101, -16.40098, -61.5101, -16.40098], "geometry": {"coordinates": [-61.5101, -16.40098], "type": "Point"}, "id": "436", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 284.26, "brightness": 302.59, "confidence": 50, "daynight": "N", "frp": 31.39, "instrument": "MODIS", "latitude": -16.40098, "longitude": -61.5101, "satellite": "Terra", "scan": 2.65, "track": 1.56, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.4856, -16.39842, -61.4856, -16.39842], "geometry": {"coordinates": [-61.4856, -16.39842], "type": "Point"}, "id": "437", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 284.54, "brightness": 310.91, "confidence": 81, "daynight": "N", "frp": 53.1, "instrument": "MODIS", "latitude": -16.39842, "longitude": -61.4856, "satellite": "Terra", "scan": 2.64, "track": 1.56, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.3019, -15.69541, -48.3019, -15.69541], "geometry": {"coordinates": [-48.3019, -15.69541], "type": "Point"}, "id": "438", "properties": {"acq_date": "2024-07-11", "acq_time": 130, "bright_t31": 288.68, "brightness": 300.56, "confidence": 30, "daynight": "N", "frp": 13.73, "instrument": "MODIS", "latitude": -15.69541, "longitude": -48.3019, "satellite": "Terra", "scan": 1.93, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.597, -16.33356, -61.597, -16.33356], "geometry": {"coordinates": [-61.597, -16.33356], "type": "Point"}, "id": "439", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 284.02, "brightness": 303.44, "confidence": 55, "daynight": "N", "frp": 34.26, "instrument": "MODIS", "latitude": -16.33356, "longitude": -61.597, "satellite": "Terra", "scan": 2.69, "track": 1.57, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.48141, -16.26536, -61.48141, -16.26536], "geometry": {"coordinates": [-61.48141, -16.26536], "type": "Point"}, "id": "440", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 284.6, "brightness": 308.37, "confidence": 74, "daynight": "N", "frp": 44.59, "instrument": "MODIS", "latitude": -16.26536, "longitude": -61.48141, "satellite": "Terra", "scan": 2.63, "track": 1.56, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.48866, -16.25924, -61.48866, -16.25924], "geometry": {"coordinates": [-61.48866, -16.25924], "type": "Point"}, "id": "441", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 284.32, "brightness": 303.53, "confidence": 56, "daynight": "N", "frp": 33.49, "instrument": "MODIS", "latitude": -16.25924, "longitude": -61.48866, "satellite": "Terra", "scan": 2.63, "track": 1.56, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-60.4959, -16.07132, -60.4959, -16.07132], "geometry": {"coordinates": [-60.4959, -16.07132], "type": "Point"}, "id": "442", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 287.51, "brightness": 312.85, "confidence": 86, "daynight": "N", "frp": 40.11, "instrument": "MODIS", "latitude": -16.07132, "longitude": -60.4959, "satellite": "Terra", "scan": 2.19, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-60.49041, -16.0713, -60.49041, -16.0713], "geometry": {"coordinates": [-60.49041, -16.0713], "type": "Point"}, "id": "443", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 287.61, "brightness": 316.23, "confidence": 93, "daynight": "N", "frp": 48.16, "instrument": "MODIS", "latitude": -16.0713, "longitude": -60.49041, "satellite": "Terra", "scan": 2.19, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.65564, -15.87182, -61.65564, -15.87182], "geometry": {"coordinates": [-61.65564, -15.87182], "type": "Point"}, "id": "444", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 283.75, "brightness": 307.63, "confidence": 72, "daynight": "N", "frp": 44.12, "instrument": "MODIS", "latitude": -15.87182, "longitude": -61.65564, "satellite": "Terra", "scan": 2.68, "track": 1.57, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.81889, -15.526, -61.81889, -15.526], "geometry": {"coordinates": [-61.81889, -15.526], "type": "Point"}, "id": "445", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 285.95, "brightness": 315.71, "confidence": 92, "daynight": "N", "frp": 67.55, "instrument": "MODIS", "latitude": -15.526, "longitude": -61.81889, "satellite": "Terra", "scan": 2.73, "track": 1.58, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.79437, -15.52341, -61.79437, -15.52341], "geometry": {"coordinates": [-61.79437, -15.52341], "type": "Point"}, "id": "446", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 286.29, "brightness": 322.97, "confidence": 100, "daynight": "N", "frp": 96.23, "instrument": "MODIS", "latitude": -15.52341, "longitude": -61.79437, "satellite": "Terra", "scan": 2.71, "track": 1.58, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.82491, -15.52116, -61.82491, -15.52116], "geometry": {"coordinates": [-61.82491, -15.52116], "type": "Point"}, "id": "447", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 285.99, "brightness": 305.63, "confidence": 65, "daynight": "N", "frp": 38.08, "instrument": "MODIS", "latitude": -15.52116, "longitude": -61.82491, "satellite": "Terra", "scan": 2.73, "track": 1.58, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.80013, -15.51837, -61.80013, -15.51837], "geometry": {"coordinates": [-61.80013, -15.51837], "type": "Point"}, "id": "448", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 286.94, "brightness": 330.51, "confidence": 100, "daynight": "N", "frp": 136.19, "instrument": "MODIS", "latitude": -15.51837, "longitude": -61.80013, "satellite": "Terra", "scan": 2.71, "track": 1.58, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.79601, -15.5094, -61.79601, -15.5094], "geometry": {"coordinates": [-61.79601, -15.5094], "type": "Point"}, "id": "449", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 286.2, "brightness": 300.79, "confidence": 34, "daynight": "N", "frp": 25.71, "instrument": "MODIS", "latitude": -15.5094, "longitude": -61.79601, "satellite": "Terra", "scan": 2.71, "track": 1.58, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-50.58865, -14.811, -50.58865, -14.811], "geometry": {"coordinates": [-50.58865, -14.811], "type": "Point"}, "id": "450", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 292.06, "brightness": 315.41, "confidence": 91, "daynight": "N", "frp": 21.89, "instrument": "MODIS", "latitude": -14.811, "longitude": -50.58865, "satellite": "Terra", "scan": 1.37, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-59.81642, -14.67861, -59.81642, -14.67861], "geometry": {"coordinates": [-59.81642, -14.67861], "type": "Point"}, "id": "451", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 288.93, "brightness": 306.51, "confidence": 68, "daynight": "N", "frp": 19.44, "instrument": "MODIS", "latitude": -14.67861, "longitude": -59.81642, "satellite": "Terra", "scan": 1.85, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-59.81776, -14.66679, -59.81776, -14.66679], "geometry": {"coordinates": [-59.81776, -14.66679], "type": "Point"}, "id": "452", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 288.48, "brightness": 302.0, "confidence": 46, "daynight": "N", "frp": 12.29, "instrument": "MODIS", "latitude": -14.66679, "longitude": -59.81776, "satellite": "Terra", "scan": 1.85, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-52.29926, -11.87394, -52.29926, -11.87394], "geometry": {"coordinates": [-52.29926, -11.87394], "type": "Point"}, "id": "453", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 292.77, "brightness": 326.34, "confidence": 100, "daynight": "N", "frp": 32.16, "instrument": "MODIS", "latitude": -11.87394, "longitude": -52.29926, "satellite": "Terra", "scan": 1.19, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.18195, -11.20212, -49.18195, -11.20212], "geometry": {"coordinates": [-49.18195, -11.20212], "type": "Point"}, "id": "454", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 292.64, "brightness": 302.7, "confidence": 51, "daynight": "N", "frp": 13.21, "instrument": "MODIS", "latitude": -11.20212, "longitude": -49.18195, "satellite": "Terra", "scan": 2.0, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.16424, -11.19931, -49.16424, -11.19931], "geometry": {"coordinates": [-49.16424, -11.19931], "type": "Point"}, "id": "455", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 292.21, "brightness": 304.75, "confidence": 61, "daynight": "N", "frp": 16.66, "instrument": "MODIS", "latitude": -11.19931, "longitude": -49.16424, "satellite": "Terra", "scan": 2.01, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.86412, -11.06152, -48.86412, -11.06152], "geometry": {"coordinates": [-48.86412, -11.06152], "type": "Point"}, "id": "456", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.29, "brightness": 307.58, "confidence": 72, "daynight": "N", "frp": 24.0, "instrument": "MODIS", "latitude": -11.06152, "longitude": -48.86412, "satellite": "Terra", "scan": 2.13, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.87073, -11.06058, -48.87073, -11.06058], "geometry": {"coordinates": [-48.87073, -11.06058], "type": "Point"}, "id": "457", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.44, "brightness": 309.01, "confidence": 76, "daynight": "N", "frp": 28.45, "instrument": "MODIS", "latitude": -11.06058, "longitude": -48.87073, "satellite": "Terra", "scan": 2.13, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.22381, -10.84481, -49.22381, -10.84481], "geometry": {"coordinates": [-49.22381, -10.84481], "type": "Point"}, "id": "458", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.71, "brightness": 306.51, "confidence": 68, "daynight": "N", "frp": 18.94, "instrument": "MODIS", "latitude": -10.84481, "longitude": -49.22381, "satellite": "Terra", "scan": 2.02, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.21224, -10.83893, -49.21224, -10.83893], "geometry": {"coordinates": [-49.21224, -10.83893], "type": "Point"}, "id": "459", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.92, "brightness": 307.05, "confidence": 70, "daynight": "N", "frp": 21.55, "instrument": "MODIS", "latitude": -10.83893, "longitude": -49.21224, "satellite": "Terra", "scan": 2.02, "track": 1.39, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-54.40043, -10.55577, -54.40043, -10.55577], "geometry": {"coordinates": [-54.40043, -10.55577], "type": "Point"}, "id": "460", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.93, "brightness": 306.14, "confidence": 67, "daynight": "N", "frp": 6.73, "instrument": "MODIS", "latitude": -10.55577, "longitude": -54.40043, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.3018, -10.38038, -49.3018, -10.38038], "geometry": {"coordinates": [-49.3018, -10.38038], "type": "Point"}, "id": "461", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 292.77, "brightness": 309.93, "confidence": 79, "daynight": "N", "frp": 27.04, "instrument": "MODIS", "latitude": -10.38038, "longitude": -49.3018, "satellite": "Terra", "scan": 2.03, "track": 1.39, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.73264, -10.35533, -48.73264, -10.35533], "geometry": {"coordinates": [-48.73264, -10.35533], "type": "Point"}, "id": "462", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.85, "brightness": 315.14, "confidence": 91, "daynight": "N", "frp": 44.55, "instrument": "MODIS", "latitude": -10.35533, "longitude": -48.73264, "satellite": "Terra", "scan": 2.25, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.71231, -10.35202, -48.71231, -10.35202], "geometry": {"coordinates": [-48.71231, -10.35202], "type": "Point"}, "id": "463", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.79, "brightness": 323.45, "confidence": 100, "daynight": "N", "frp": 71.09, "instrument": "MODIS", "latitude": -10.35202, "longitude": -48.71231, "satellite": "Terra", "scan": 2.26, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.02597, -10.32368, -49.02597, -10.32368], "geometry": {"coordinates": [-49.02597, -10.32368], "type": "Point"}, "id": "464", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 292.48, "brightness": 325.71, "confidence": 100, "daynight": "N", "frp": 71.64, "instrument": "MODIS", "latitude": -10.32368, "longitude": -49.02597, "satellite": "Terra", "scan": 2.14, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.00707, -10.32064, -49.00707, -10.32064], "geometry": {"coordinates": [-49.00707, -10.32064], "type": "Point"}, "id": "465", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.93, "brightness": 309.88, "confidence": 79, "daynight": "N", "frp": 28.09, "instrument": "MODIS", "latitude": -10.32064, "longitude": -49.00707, "satellite": "Terra", "scan": 2.15, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-51.57869, -10.29288, -51.57869, -10.29288], "geometry": {"coordinates": [-51.57869, -10.29288], "type": "Point"}, "id": "466", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 292.18, "brightness": 304.32, "confidence": 59, "daynight": "N", "frp": 9.79, "instrument": "MODIS", "latitude": -10.29288, "longitude": -51.57869, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.12187, -10.04364, -48.12187, -10.04364], "geometry": {"coordinates": [-48.12187, -10.04364], "type": "Point"}, "id": "467", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.2, "brightness": 306.05, "confidence": 67, "daynight": "N", "frp": 27.04, "instrument": "MODIS", "latitude": -10.04364, "longitude": -48.12187, "satellite": "Terra", "scan": 2.55, "track": 1.54, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.1298, -10.03638, -48.1298, -10.03638], "geometry": {"coordinates": [-48.1298, -10.03638], "type": "Point"}, "id": "468", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.12, "brightness": 307.78, "confidence": 72, "daynight": "N", "frp": 29.66, "instrument": "MODIS", "latitude": -10.03638, "longitude": -48.1298, "satellite": "Terra", "scan": 2.55, "track": 1.54, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.85806, -10.00766, -48.85806, -10.00766], "geometry": {"coordinates": [-48.85806, -10.00766], "type": "Point"}, "id": "469", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.32, "brightness": 308.15, "confidence": 74, "daynight": "N", "frp": 28.34, "instrument": "MODIS", "latitude": -10.00766, "longitude": -48.85806, "satellite": "Terra", "scan": 2.23, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-58.07932, -9.97275, -58.07932, -9.97275], "geometry": {"coordinates": [-58.07932, -9.97275], "type": "Point"}, "id": "470", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 292.87, "brightness": 303.62, "confidence": 56, "daynight": "N", "frp": 6.67, "instrument": "MODIS", "latitude": -9.97275, "longitude": -58.07932, "satellite": "Terra", "scan": 1.21, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.51162, -9.35875, -48.51162, -9.35875], "geometry": {"coordinates": [-48.51162, -9.35875], "type": "Point"}, "id": "471", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.74, "brightness": 304.9, "confidence": 62, "daynight": "N", "frp": 23.14, "instrument": "MODIS", "latitude": -9.35875, "longitude": -48.51162, "satellite": "Terra", "scan": 2.45, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.78077, -9.1321, -65.78077, -9.1321], "geometry": {"coordinates": [-65.78077, -9.1321], "type": "Point"}, "id": "472", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 288.9, "brightness": 301.67, "confidence": 43, "daynight": "N", "frp": 39.88, "instrument": "MODIS", "latitude": -9.1321, "longitude": -65.78077, "satellite": "Terra", "scan": 4.54, "track": 1.96, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.74047, -9.12764, -65.74047, -9.12764], "geometry": {"coordinates": [-65.74047, -9.12764], "type": "Point"}, "id": "473", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 289.3, "brightness": 315.39, "confidence": 91, "daynight": "N", "frp": 121.51, "instrument": "MODIS", "latitude": -9.12764, "longitude": -65.74047, "satellite": "Terra", "scan": 4.5, "track": 1.95, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.74761, -9.12576, -65.74761, -9.12576], "geometry": {"coordinates": [-65.74761, -9.12576], "type": "Point"}, "id": "474", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 289.27, "brightness": 316.31, "confidence": 93, "daynight": "N", "frp": 128.16, "instrument": "MODIS", "latitude": -9.12576, "longitude": -65.74761, "satellite": "Terra", "scan": 4.5, "track": 1.95, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.99921, -9.08398, -65.99921, -9.08398], "geometry": {"coordinates": [-65.99921, -9.08398], "type": "Point"}, "id": "475", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 289.42, "brightness": 323.59, "confidence": 100, "daynight": "N", "frp": 202.41, "instrument": "MODIS", "latitude": -9.08398, "longitude": -65.99921, "satellite": "Terra", "scan": 4.71, "track": 1.99, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-66.00459, -9.08323, -66.00459, -9.08323], "geometry": {"coordinates": [-66.00459, -9.08323], "type": "Point"}, "id": "476", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 289.33, "brightness": 321.32, "confidence": 100, "daynight": "N", "frp": 181.25, "instrument": "MODIS", "latitude": -9.08323, "longitude": -66.00459, "satellite": "Terra", "scan": 4.71, "track": 1.99, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.9632, -9.07833, -65.9632, -9.07833], "geometry": {"coordinates": [-65.9632, -9.07833], "type": "Point"}, "id": "477", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 289.26, "brightness": 301.75, "confidence": 44, "daynight": "N", "frp": 43.18, "instrument": "MODIS", "latitude": -9.07833, "longitude": -65.9632, "satellite": "Terra", "scan": 4.68, "track": 1.98, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-62.42401, -8.91732, -62.42401, -8.91732], "geometry": {"coordinates": [-62.42401, -8.91732], "type": "Point"}, "id": "478", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.34, "brightness": 303.51, "confidence": 55, "daynight": "N", "frp": 18.35, "instrument": "MODIS", "latitude": -8.91732, "longitude": -62.42401, "satellite": "Terra", "scan": 2.43, "track": 1.5, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-50.26793, -8.29872, -50.26793, -8.29872], "geometry": {"coordinates": [-50.26793, -8.29872], "type": "Point"}, "id": "479", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.84, "brightness": 303.66, "confidence": 38, "daynight": "N", "frp": 12.4, "instrument": "MODIS", "latitude": -8.29872, "longitude": -50.26793, "satellite": "Terra", "scan": 1.86, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-50.25133, -8.29614, -50.25133, -8.29614], "geometry": {"coordinates": [-50.25133, -8.29614], "type": "Point"}, "id": "480", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.6, "brightness": 309.62, "confidence": 78, "daynight": "N", "frp": 21.72, "instrument": "MODIS", "latitude": -8.29614, "longitude": -50.25133, "satellite": "Terra", "scan": 1.87, "track": 1.34, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-50.26972, -8.28691, -50.26972, -8.28691], "geometry": {"coordinates": [-50.26972, -8.28691], "type": "Point"}, "id": "481", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.24, "brightness": 302.43, "confidence": 16, "daynight": "N", "frp": 10.16, "instrument": "MODIS", "latitude": -8.28691, "longitude": -50.26972, "satellite": "Terra", "scan": 1.86, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-50.25319, -8.28433, -50.25319, -8.28433], "geometry": {"coordinates": [-50.25319, -8.28433], "type": "Point"}, "id": "482", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.55, "brightness": 307.39, "confidence": 67, "daynight": "N", "frp": 17.56, "instrument": "MODIS", "latitude": -8.28433, "longitude": -50.25319, "satellite": "Terra", "scan": 1.87, "track": 1.34, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.84563, -7.83644, -48.84563, -7.83644], "geometry": {"coordinates": [-48.84563, -7.83644], "type": "Point"}, "id": "483", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 291.81, "brightness": 304.68, "confidence": 61, "daynight": "N", "frp": 20.57, "instrument": "MODIS", "latitude": -7.83644, "longitude": -48.84563, "satellite": "Terra", "scan": 2.46, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.82403, -7.83291, -48.82403, -7.83291], "geometry": {"coordinates": [-48.82403, -7.83291], "type": "Point"}, "id": "484", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 292.19, "brightness": 316.42, "confidence": 93, "daynight": "N", "frp": 52.25, "instrument": "MODIS", "latitude": -7.83291, "longitude": -48.82403, "satellite": "Terra", "scan": 2.47, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.83097, -7.82441, -48.83097, -7.82441], "geometry": {"coordinates": [-48.83097, -7.82441], "type": "Point"}, "id": "485", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 292.0, "brightness": 322.5, "confidence": 100, "daynight": "N", "frp": 74.27, "instrument": "MODIS", "latitude": -7.82441, "longitude": -48.83097, "satellite": "Terra", "scan": 2.47, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-45.78825, -7.52292, -45.78825, -7.52292], "geometry": {"coordinates": [-45.78825, -7.52292], "type": "Point"}, "id": "486", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 290.23, "brightness": 301.93, "confidence": 45, "daynight": "N", "frp": 35.75, "instrument": "MODIS", "latitude": -7.52292, "longitude": -45.78825, "satellite": "Terra", "scan": 4.34, "track": 1.92, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-45.79379, -7.51976, -45.79379, -7.51976], "geometry": {"coordinates": [-45.79379, -7.51976], "type": "Point"}, "id": "487", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 290.31, "brightness": 307.01, "confidence": 70, "daynight": "N", "frp": 62.87, "instrument": "MODIS", "latitude": -7.51976, "longitude": -45.79379, "satellite": "Terra", "scan": 4.34, "track": 1.92, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-45.79131, -7.50603, -45.79131, -7.50603], "geometry": {"coordinates": [-45.79131, -7.50603], "type": "Point"}, "id": "488", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 290.26, "brightness": 300.69, "confidence": 32, "daynight": "N", "frp": 29.59, "instrument": "MODIS", "latitude": -7.50603, "longitude": -45.79131, "satellite": "Terra", "scan": 4.34, "track": 1.92, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.09326, -6.91768, -46.09326, -6.91768], "geometry": {"coordinates": [-46.09326, -6.91768], "type": "Point"}, "id": "489", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 290.88, "brightness": 302.62, "confidence": 5, "daynight": "N", "frp": 33.92, "instrument": "MODIS", "latitude": -6.91768, "longitude": -46.09326, "satellite": "Terra", "scan": 4.22, "track": 1.9, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.10114, -6.91339, -46.10114, -6.91339], "geometry": {"coordinates": [-46.10114, -6.91339], "type": "Point"}, "id": "490", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 290.94, "brightness": 309.29, "confidence": 77, "daynight": "N", "frp": 72.66, "instrument": "MODIS", "latitude": -6.91339, "longitude": -46.10114, "satellite": "Terra", "scan": 4.22, "track": 1.9, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.0624, -6.90705, -46.0624, -6.90705], "geometry": {"coordinates": [-46.0624, -6.90705], "type": "Point"}, "id": "491", "properties": {"acq_date": "2024-07-11", "acq_time": 132, "bright_t31": 290.81, "brightness": 302.07, "confidence": 46, "daynight": "N", "frp": 37.22, "instrument": "MODIS", "latitude": -6.90705, "longitude": -46.0624, "satellite": "Terra", "scan": 4.25, "track": 1.91, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-51.1008, -6.57398, -51.1008, -6.57398], "geometry": {"coordinates": [-51.1008, -6.57398], "type": "Point"}, "id": "492", "properties": {"acq_date": "2024-07-11", "acq_time": 134, "bright_t31": 290.63, "brightness": 306.03, "confidence": 67, "daynight": "N", "frp": 14.18, "instrument": "MODIS", "latitude": -6.57398, "longitude": -51.1008, "satellite": "Terra", "scan": 1.72, "track": 1.29, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-45.92129, -4.51443, -45.92129, -4.51443], "geometry": {"coordinates": [-45.92129, -4.51443], "type": "Point"}, "id": "493", "properties": {"acq_date": "2024-07-11", "acq_time": 134, "bright_t31": 290.43, "brightness": 306.05, "confidence": 67, "daynight": "N", "frp": 64.2, "instrument": "MODIS", "latitude": -4.51443, "longitude": -45.92129, "satellite": "Terra", "scan": 4.82, "track": 2.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-45.91418, -4.51385, -45.91418, -4.51385], "geometry": {"coordinates": [-45.91418, -4.51385], "type": "Point"}, "id": "494", "properties": {"acq_date": "2024-07-11", "acq_time": 134, "bright_t31": 290.39, "brightness": 309.54, "confidence": 78, "daynight": "N", "frp": 80.98, "instrument": "MODIS", "latitude": -4.51385, "longitude": -45.91418, "satellite": "Terra", "scan": 4.82, "track": 2.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-53.28595, -3.37945, -53.28595, -3.37945], "geometry": {"coordinates": [-53.28595, -3.37945], "type": "Point"}, "id": "495", "properties": {"acq_date": "2024-07-11", "acq_time": 134, "bright_t31": 291.22, "brightness": 302.05, "confidence": 46, "daynight": "N", "frp": 5.4, "instrument": "MODIS", "latitude": -3.37945, "longitude": -53.28595, "satellite": "Terra", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-53.27422, -3.37773, -53.27422, -3.37773], "geometry": {"coordinates": [-53.27422, -3.37773], "type": "Point"}, "id": "496", "properties": {"acq_date": "2024-07-11", "acq_time": 134, "bright_t31": 291.8, "brightness": 309.72, "confidence": 78, "daynight": "N", "frp": 13.05, "instrument": "MODIS", "latitude": -3.37773, "longitude": -53.27422, "satellite": "Terra", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.89853, -3.26618, -46.89853, -3.26618], "geometry": {"coordinates": [-46.89853, -3.26618], "type": "Point"}, "id": "497", "properties": {"acq_date": "2024-07-11", "acq_time": 134, "bright_t31": 290.85, "brightness": 312.3, "confidence": 85, "daynight": "N", "frp": 85.59, "instrument": "MODIS", "latitude": -3.26618, "longitude": -46.89853, "satellite": "Terra", "scan": 4.25, "track": 1.91, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.90596, -3.26212, -46.90596, -3.26212], "geometry": {"coordinates": [-46.90596, -3.26212], "type": "Point"}, "id": "498", "properties": {"acq_date": "2024-07-11", "acq_time": 134, "bright_t31": 290.76, "brightness": 308.24, "confidence": 74, "daynight": "N", "frp": 61.68, "instrument": "MODIS", "latitude": -3.26212, "longitude": -46.90596, "satellite": "Terra", "scan": 4.25, "track": 1.91, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.86859, -3.25657, -46.86859, -3.25657], "geometry": {"coordinates": [-46.86859, -3.25657], "type": "Point"}, "id": "499", "properties": {"acq_date": "2024-07-11", "acq_time": 134, "bright_t31": 290.39, "brightness": 303.81, "confidence": 57, "daynight": "N", "frp": 40.1, "instrument": "MODIS", "latitude": -3.25657, "longitude": -46.86859, "satellite": "Terra", "scan": 4.28, "track": 1.91, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-54.62451, -2.98636, -54.62451, -2.98636], "geometry": {"coordinates": [-54.62451, -2.98636], "type": "Point"}, "id": "500", "properties": {"acq_date": "2024-07-11", "acq_time": 134, "bright_t31": 284.12, "brightness": 302.06, "confidence": 46, "daynight": "N", "frp": 4.97, "instrument": "MODIS", "latitude": -2.98636, "longitude": -54.62451, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-54.62588, -2.97696, -54.62588, -2.97696], "geometry": {"coordinates": [-54.62588, -2.97696], "type": "Point"}, "id": "501", "properties": {"acq_date": "2024-07-11", "acq_time": 134, "bright_t31": 283.48, "brightness": 318.19, "confidence": 96, "daynight": "N", "frp": 18.94, "instrument": "MODIS", "latitude": -2.97696, "longitude": -54.62588, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.00212, 7.87662, -64.00212, 7.87662], "geometry": {"coordinates": [-64.00212, 7.87662], "type": "Point"}, "id": "502", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 275.64, "brightness": 300.45, "confidence": 27, "daynight": "N", "frp": 9.65, "instrument": "MODIS", "latitude": 7.87662, "longitude": -64.00212, "satellite": "Terra", "scan": 1.71, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.16109, 8.68698, -63.16109, 8.68698], "geometry": {"coordinates": [-63.16109, 8.68698], "type": "Point"}, "id": "503", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 286.14, "brightness": 301.42, "confidence": 29, "daynight": "N", "frp": 6.19, "instrument": "MODIS", "latitude": 8.68698, "longitude": -63.16109, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-62.91228, 8.72515, -62.91228, 8.72515], "geometry": {"coordinates": [-62.91228, 8.72515], "type": "Point"}, "id": "504", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 287.26, "brightness": 302.65, "confidence": 50, "daynight": "N", "frp": 6.42, "instrument": "MODIS", "latitude": 8.72515, "longitude": -62.91228, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.54651, 9.37072, -64.54651, 9.37072], "geometry": {"coordinates": [-64.54651, 9.37072], "type": "Point"}, "id": "505", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 290.94, "brightness": 304.08, "confidence": 34, "daynight": "N", "frp": 10.44, "instrument": "MODIS", "latitude": 9.37072, "longitude": -64.54651, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.53088, 9.37312, -64.53088, 9.37312], "geometry": {"coordinates": [-64.53088, 9.37312], "type": "Point"}, "id": "506", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 291.34, "brightness": 316.53, "confidence": 93, "daynight": "N", "frp": 31.08, "instrument": "MODIS", "latitude": 9.37312, "longitude": -64.53088, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.51521, 9.37552, -64.51521, 9.37552], "geometry": {"coordinates": [-64.51521, 9.37552], "type": "Point"}, "id": "507", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 291.41, "brightness": 303.34, "confidence": 28, "daynight": "N", "frp": 8.83, "instrument": "MODIS", "latitude": 9.37552, "longitude": -64.51521, "satellite": "Terra", "scan": 1.76, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.5483, 9.3822, -64.5483, 9.3822], "geometry": {"coordinates": [-64.5483, 9.3822], "type": "Point"}, "id": "508", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 291.25, "brightness": 314.79, "confidence": 90, "daynight": "N", "frp": 25.68, "instrument": "MODIS", "latitude": 9.3822, "longitude": -64.5483, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.55542, 9.39091, -64.55542, 9.39091], "geometry": {"coordinates": [-64.55542, 9.39091], "type": "Point"}, "id": "509", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 290.97, "brightness": 303.71, "confidence": 45, "daynight": "N", "frp": 9.84, "instrument": "MODIS", "latitude": 9.39091, "longitude": -64.55542, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.63723, 9.55753, -63.63723, 9.55753], "geometry": {"coordinates": [-63.63723, 9.55753], "type": "Point"}, "id": "510", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 292.13, "brightness": 314.05, "confidence": 88, "daynight": "N", "frp": 19.88, "instrument": "MODIS", "latitude": 9.55753, "longitude": -63.63723, "satellite": "Terra", "scan": 1.5, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.73441, 9.61283, -63.73441, 9.61283], "geometry": {"coordinates": [-63.73441, 9.61283], "type": "Point"}, "id": "511", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.16, "brightness": 315.47, "confidence": 91, "daynight": "N", "frp": 21.0, "instrument": "MODIS", "latitude": 9.61283, "longitude": -63.73441, "satellite": "Terra", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.72098, 9.61493, -63.72098, 9.61493], "geometry": {"coordinates": [-63.72098, 9.61493], "type": "Point"}, "id": "512", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.79, "brightness": 321.0, "confidence": 100, "daynight": "N", "frp": 30.04, "instrument": "MODIS", "latitude": 9.61493, "longitude": -63.72098, "satellite": "Terra", "scan": 1.52, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.73606, 9.62355, -63.73606, 9.62355], "geometry": {"coordinates": [-63.73606, 9.62355], "type": "Point"}, "id": "513", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.16, "brightness": 324.65, "confidence": 100, "daynight": "N", "frp": 37.38, "instrument": "MODIS", "latitude": 9.62355, "longitude": -63.73606, "satellite": "Terra", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.7226, 9.62564, -63.7226, 9.62564], "geometry": {"coordinates": [-63.7226, 9.62564], "type": "Point"}, "id": "514", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.72, "brightness": 332.57, "confidence": 100, "daynight": "N", "frp": 55.06, "instrument": "MODIS", "latitude": 9.62564, "longitude": -63.7226, "satellite": "Terra", "scan": 1.52, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.7377, 9.63428, -63.7377, 9.63428], "geometry": {"coordinates": [-63.7377, 9.63428], "type": "Point"}, "id": "515", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.16, "brightness": 306.68, "confidence": 67, "daynight": "N", "frp": 9.57, "instrument": "MODIS", "latitude": 9.63428, "longitude": -63.7377, "satellite": "Terra", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.57531, 9.63766, -63.57531, 9.63766], "geometry": {"coordinates": [-63.57531, 9.63766], "type": "Point"}, "id": "516", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 292.83, "brightness": 305.74, "confidence": 63, "daynight": "N", "frp": 7.65, "instrument": "MODIS", "latitude": 9.63766, "longitude": -63.57531, "satellite": "Terra", "scan": 1.48, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.56217, 9.6397, -63.56217, 9.6397], "geometry": {"coordinates": [-63.56217, 9.6397], "type": "Point"}, "id": "517", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.46, "brightness": 330.05, "confidence": 100, "daynight": "N", "frp": 47.25, "instrument": "MODIS", "latitude": 9.6397, "longitude": -63.56217, "satellite": "Terra", "scan": 1.48, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.57682, 9.64827, -63.57682, 9.64827], "geometry": {"coordinates": [-63.57682, 9.64827], "type": "Point"}, "id": "518", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.27, "brightness": 327.59, "confidence": 100, "daynight": "N", "frp": 41.84, "instrument": "MODIS", "latitude": 9.64827, "longitude": -63.57682, "satellite": "Terra", "scan": 1.48, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.56367, 9.6503, -63.56367, 9.6503], "geometry": {"coordinates": [-63.56367, 9.6503], "type": "Point"}, "id": "519", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 294.01, "brightness": 332.79, "confidence": 100, "daynight": "N", "frp": 53.47, "instrument": "MODIS", "latitude": 9.6503, "longitude": -63.56367, "satellite": "Terra", "scan": 1.48, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.63129, 9.65071, -63.63129, 9.65071], "geometry": {"coordinates": [-63.63129, 9.65071], "type": "Point"}, "id": "520", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.91, "brightness": 345.62, "confidence": 100, "daynight": "N", "frp": 92.52, "instrument": "MODIS", "latitude": 9.65071, "longitude": -63.63129, "satellite": "Terra", "scan": 1.5, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.61798, 9.65277, -63.61798, 9.65277], "geometry": {"coordinates": [-63.61798, 9.65277], "type": "Point"}, "id": "521", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.65, "brightness": 328.22, "confidence": 100, "daynight": "N", "frp": 43.76, "instrument": "MODIS", "latitude": 9.65277, "longitude": -63.61798, "satellite": "Terra", "scan": 1.49, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.53753, 9.65435, -63.53753, 9.65435], "geometry": {"coordinates": [-63.53753, 9.65435], "type": "Point"}, "id": "522", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.83, "brightness": 322.96, "confidence": 100, "daynight": "N", "frp": 32.45, "instrument": "MODIS", "latitude": 9.65435, "longitude": -63.53753, "satellite": "Terra", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.52452, 9.65637, -63.52452, 9.65637], "geometry": {"coordinates": [-63.52452, 9.65637], "type": "Point"}, "id": "523", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.64, "brightness": 310.35, "confidence": 78, "daynight": "N", "frp": 12.97, "instrument": "MODIS", "latitude": 9.65637, "longitude": -63.52452, "satellite": "Terra", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.53094, 9.69857, -63.53094, 9.69857], "geometry": {"coordinates": [-63.53094, 9.69857], "type": "Point"}, "id": "524", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.34, "brightness": 308.17, "confidence": 72, "daynight": "N", "frp": 10.89, "instrument": "MODIS", "latitude": 9.69857, "longitude": -63.53094, "satellite": "Terra", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.4701, 9.72927, -63.4701, 9.72927], "geometry": {"coordinates": [-63.4701, 9.72927], "type": "Point"}, "id": "525", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.99, "brightness": 310.35, "confidence": 78, "daynight": "N", "frp": 12.53, "instrument": "MODIS", "latitude": 9.72927, "longitude": -63.4701, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.45714, 9.73121, -63.45714, 9.73121], "geometry": {"coordinates": [-63.45714, 9.73121], "type": "Point"}, "id": "526", "properties": {"acq_date": "2024-07-11", "acq_time": 137, "bright_t31": 293.99, "brightness": 312.46, "confidence": 84, "daynight": "N", "frp": 14.79, "instrument": "MODIS", "latitude": 9.73121, "longitude": -63.45714, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.18006, 9.97573, -63.18006, 9.97573], "geometry": {"coordinates": [-63.18006, 9.97573], "type": "Point"}, "id": "527", "properties": {"acq_date": "2024-07-11", "acq_time": 139, "bright_t31": 293.51, "brightness": 305.15, "confidence": 59, "daynight": "N", "frp": 6.7, "instrument": "MODIS", "latitude": 9.97573, "longitude": -63.18006, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.88635, 10.05515, -64.88635, 10.05515], "geometry": {"coordinates": [-64.88635, 10.05515], "type": "Point"}, "id": "528", "properties": {"acq_date": "2024-07-11", "acq_time": 139, "bright_t31": 292.87, "brightness": 310.57, "confidence": 45, "daynight": "N", "frp": 18.82, "instrument": "MODIS", "latitude": 10.05515, "longitude": -64.88635, "satellite": "Terra", "scan": 1.83, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.8701, 10.05767, -64.8701, 10.05767], "geometry": {"coordinates": [-64.8701, 10.05767], "type": "Point"}, "id": "529", "properties": {"acq_date": "2024-07-11", "acq_time": 139, "bright_t31": 293.07, "brightness": 317.94, "confidence": 96, "daynight": "N", "frp": 33.11, "instrument": "MODIS", "latitude": 10.05767, "longitude": -64.8701, "satellite": "Terra", "scan": 1.82, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.85406, 10.06016, -64.85406, 10.06016], "geometry": {"coordinates": [-64.85406, 10.06016], "type": "Point"}, "id": "530", "properties": {"acq_date": "2024-07-11", "acq_time": 139, "bright_t31": 293.27, "brightness": 306.92, "confidence": 17, "daynight": "N", "frp": 12.38, "instrument": "MODIS", "latitude": 10.06016, "longitude": -64.85406, "satellite": "Terra", "scan": 1.82, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.61684, 10.21138, -64.61684, 10.21138], "geometry": {"coordinates": [-64.61684, 10.21138], "type": "Point"}, "id": "531", "properties": {"acq_date": "2024-07-11", "acq_time": 139, "bright_t31": 294.16, "brightness": 307.12, "confidence": 70, "daynight": "N", "frp": 11.81, "instrument": "MODIS", "latitude": 10.21138, "longitude": -64.61684, "satellite": "Terra", "scan": 1.73, "track": 1.29, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.86073, 66.18143, 136.86073, 66.18143], "geometry": {"coordinates": [136.86073, 66.18143], "type": "Point"}, "id": "532", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.52, "brightness": 318.03, "confidence": 62, "daynight": "D", "frp": 9.09, "instrument": "MODIS", "latitude": 66.18143, "longitude": 136.86073, "satellite": "Terra", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.98938, 66.81395, 133.98938, 66.81395], "geometry": {"coordinates": [133.98938, 66.81395], "type": "Point"}, "id": "533", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 280.47, "brightness": 304.87, "confidence": 20, "daynight": "D", "frp": 5.59, "instrument": "MODIS", "latitude": 66.81395, "longitude": 133.98938, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.10522, 66.82606, 134.10522, 66.82606], "geometry": {"coordinates": [134.10522, 66.82606], "type": "Point"}, "id": "534", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 274.32, "brightness": 314.01, "confidence": 38, "daynight": "D", "frp": 12.28, "instrument": "MODIS", "latitude": 66.82606, "longitude": 134.10522, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.11102, 66.88277, 134.11102, 66.88277], "geometry": {"coordinates": [134.11102, 66.88277], "type": "Point"}, "id": "535", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 277.47, "brightness": 313.59, "confidence": 41, "daynight": "D", "frp": 11.89, "instrument": "MODIS", "latitude": 66.88277, "longitude": 134.11102, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.96706, 66.88513, 133.96706, 66.88513], "geometry": {"coordinates": [133.96706, 66.88513], "type": "Point"}, "id": "536", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 284.67, "brightness": 320.55, "confidence": 41, "daynight": "D", "frp": 14.02, "instrument": "MODIS", "latitude": 66.88513, "longitude": 133.96706, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.6606, 67.53976, 145.6606, 67.53976], "geometry": {"coordinates": [145.6606, 67.53976], "type": "Point"}, "id": "537", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.21, "brightness": 314.81, "confidence": 44, "daynight": "D", "frp": 12.51, "instrument": "MODIS", "latitude": 67.53976, "longitude": 145.6606, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.54662, 67.68192, 146.54662, 67.68192], "geometry": {"coordinates": [146.54662, 67.68192], "type": "Point"}, "id": "538", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.91, "brightness": 327.09, "confidence": 78, "daynight": "D", "frp": 33.58, "instrument": "MODIS", "latitude": 67.68192, "longitude": 146.54662, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.60587, 67.69295, 146.60587, 67.69295], "geometry": {"coordinates": [146.60587, 67.69295], "type": "Point"}, "id": "539", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.01, "brightness": 334.64, "confidence": 88, "daynight": "D", "frp": 48.93, "instrument": "MODIS", "latitude": 67.69295, "longitude": 146.60587, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.48891, 67.69578, 146.48891, 67.69578], "geometry": {"coordinates": [146.48891, 67.69578], "type": "Point"}, "id": "540", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.74, "brightness": 347.97, "confidence": 82, "daynight": "D", "frp": 91.85, "instrument": "MODIS", "latitude": 67.69578, "longitude": 146.48891, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.53281, 67.69785, 146.53281, 67.69785], "geometry": {"coordinates": [146.53281, 67.69785], "type": "Point"}, "id": "541", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.28, "brightness": 338.96, "confidence": 85, "daynight": "D", "frp": 62.25, "instrument": "MODIS", "latitude": 67.69785, "longitude": 146.53281, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.50389, 67.70478, 146.50389, 67.70478], "geometry": {"coordinates": [146.50389, 67.70478], "type": "Point"}, "id": "542", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.69, "brightness": 346.93, "confidence": 82, "daynight": "D", "frp": 87.9, "instrument": "MODIS", "latitude": 67.70478, "longitude": 146.50389, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.636, 67.711, 146.636, 67.711], "geometry": {"coordinates": [146.636, 67.711], "type": "Point"}, "id": "543", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.58, "brightness": 324.25, "confidence": 77, "daynight": "D", "frp": 28.89, "instrument": "MODIS", "latitude": 67.711, "longitude": 146.636, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.40009, 67.7265, 145.40009, 67.7265], "geometry": {"coordinates": [145.40009, 67.7265], "type": "Point"}, "id": "544", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.16, "brightness": 331.42, "confidence": 0, "daynight": "D", "frp": 36.57, "instrument": "MODIS", "latitude": 67.7265, "longitude": 145.40009, "satellite": "Terra", "scan": 1.36, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.44174, 67.72903, 145.44174, 67.72903], "geometry": {"coordinates": [145.44174, 67.72903], "type": "Point"}, "id": "545", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 303.48, "brightness": 322.73, "confidence": 0, "daynight": "D", "frp": 24.74, "instrument": "MODIS", "latitude": 67.72903, "longitude": 145.44174, "satellite": "Terra", "scan": 1.37, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.57581, 67.74435, 146.57581, 67.74435], "geometry": {"coordinates": [146.57581, 67.74435], "type": "Point"}, "id": "546", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.52, "brightness": 310.97, "confidence": 45, "daynight": "D", "frp": 9.07, "instrument": "MODIS", "latitude": 67.74435, "longitude": 146.57581, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.00458, 67.7659, 146.00458, 67.7659], "geometry": {"coordinates": [146.00458, 67.7659], "type": "Point"}, "id": "547", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.84, "brightness": 341.52, "confidence": 0, "daynight": "D", "frp": 67.85, "instrument": "MODIS", "latitude": 67.7659, "longitude": 146.00458, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.60701, 67.78731, 146.60701, 67.78731], "geometry": {"coordinates": [146.60701, 67.78731], "type": "Point"}, "id": "548", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.39, "brightness": 314.04, "confidence": 40, "daynight": "D", "frp": 11.52, "instrument": "MODIS", "latitude": 67.78731, "longitude": 146.60701, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.34663, 67.7994, 146.34663, 67.7994], "geometry": {"coordinates": [146.34663, 67.7994], "type": "Point"}, "id": "549", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.88, "brightness": 314.43, "confidence": 44, "daynight": "D", "frp": 11.11, "instrument": "MODIS", "latitude": 67.7994, "longitude": 146.34663, "satellite": "Terra", "scan": 1.42, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.34877, 67.80421, 146.34877, 67.80421], "geometry": {"coordinates": [146.34877, 67.80421], "type": "Point"}, "id": "550", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.52, "brightness": 326.48, "confidence": 82, "daynight": "D", "frp": 30.18, "instrument": "MODIS", "latitude": 67.80421, "longitude": 146.34877, "satellite": "Terra", "scan": 1.42, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.31834, 67.80615, 146.31834, 67.80615], "geometry": {"coordinates": [146.31834, 67.80615], "type": "Point"}, "id": "551", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.42, "brightness": 334.81, "confidence": 88, "daynight": "D", "frp": 50.29, "instrument": "MODIS", "latitude": 67.80615, "longitude": 146.31834, "satellite": "Terra", "scan": 1.42, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.32034, 67.81088, 146.32034, 67.81088], "geometry": {"coordinates": [146.32034, 67.81088], "type": "Point"}, "id": "552", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.63, "brightness": 339.87, "confidence": 91, "daynight": "D", "frp": 62.57, "instrument": "MODIS", "latitude": 67.81088, "longitude": 146.32034, "satellite": "Terra", "scan": 1.42, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.3329, 67.81516, 146.3329, 67.81516], "geometry": {"coordinates": [146.3329, 67.81516], "type": "Point"}, "id": "553", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.45, "brightness": 329.62, "confidence": 84, "daynight": "D", "frp": 38.9, "instrument": "MODIS", "latitude": 67.81516, "longitude": 146.3329, "satellite": "Terra", "scan": 1.42, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.03503, 67.82822, 146.03503, 67.82822], "geometry": {"coordinates": [146.03503, 67.82822], "type": "Point"}, "id": "554", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.63, "brightness": 319.13, "confidence": 0, "daynight": "D", "frp": 15.02, "instrument": "MODIS", "latitude": 67.82822, "longitude": 146.03503, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.62447, 67.846, 146.62447, 67.846], "geometry": {"coordinates": [146.62447, 67.846], "type": "Point"}, "id": "555", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.08, "brightness": 327.59, "confidence": 44, "daynight": "D", "frp": 31.8, "instrument": "MODIS", "latitude": 67.846, "longitude": 146.62447, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.59564, 67.85283, 146.59564, 67.85283], "geometry": {"coordinates": [146.59564, 67.85283], "type": "Point"}, "id": "556", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.1, "brightness": 333.13, "confidence": 66, "daynight": "D", "frp": 41.45, "instrument": "MODIS", "latitude": 67.85283, "longitude": 146.59564, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.60864, 67.85633, 146.60864, 67.85633], "geometry": {"coordinates": [146.60864, 67.85633], "type": "Point"}, "id": "557", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.64, "brightness": 347.08, "confidence": 89, "daynight": "D", "frp": 84.42, "instrument": "MODIS", "latitude": 67.85633, "longitude": 146.60864, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.96521, 67.85681, 145.96521, 67.85681], "geometry": {"coordinates": [145.96521, 67.85681], "type": "Point"}, "id": "558", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.86, "brightness": 346.3, "confidence": 82, "daynight": "D", "frp": 74.78, "instrument": "MODIS", "latitude": 67.85681, "longitude": 145.96521, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.93713, 67.86334, 145.93713, 67.86334], "geometry": {"coordinates": [145.93713, 67.86334], "type": "Point"}, "id": "559", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 306.61, "brightness": 374.87, "confidence": 100, "daynight": "D", "frp": 203.19, "instrument": "MODIS", "latitude": 67.86334, "longitude": 145.93713, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.97974, 67.86572, 145.97974, 67.86572], "geometry": {"coordinates": [145.97974, 67.86572], "type": "Point"}, "id": "560", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 305.01, "brightness": 361.09, "confidence": 94, "daynight": "D", "frp": 130.76, "instrument": "MODIS", "latitude": 67.86572, "longitude": 145.97974, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.90942, 67.86978, 145.90942, 67.86978], "geometry": {"coordinates": [145.90942, 67.86978], "type": "Point"}, "id": "561", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 306.43, "brightness": 373.73, "confidence": 82, "daynight": "D", "frp": 196.66, "instrument": "MODIS", "latitude": 67.86978, "longitude": 145.90942, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.59496, 67.87218, 146.59496, 67.87218], "geometry": {"coordinates": [146.59496, 67.87218], "type": "Point"}, "id": "562", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.71, "brightness": 328.67, "confidence": 84, "daynight": "D", "frp": 35.06, "instrument": "MODIS", "latitude": 67.87218, "longitude": 146.59496, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.9516, 67.87225, 145.9516, 67.87225], "geometry": {"coordinates": [145.9516, 67.87225], "type": "Point"}, "id": "563", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 314.16, "brightness": 414.47, "confidence": 94, "daynight": "D", "frp": 552.16, "instrument": "MODIS", "latitude": 67.87225, "longitude": 145.9516, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.88159, 67.87624, 145.88159, 67.87624], "geometry": {"coordinates": [145.88159, 67.87624], "type": "Point"}, "id": "564", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.37, "brightness": 340.09, "confidence": 60, "daynight": "D", "frp": 60.07, "instrument": "MODIS", "latitude": 67.87624, "longitude": 145.88159, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.4371, 67.87777, 146.4371, 67.87777], "geometry": {"coordinates": [146.4371, 67.87777], "type": "Point"}, "id": "565", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.89, "brightness": 344.61, "confidence": 0, "daynight": "D", "frp": 78.54, "instrument": "MODIS", "latitude": 67.87777, "longitude": 146.4371, "satellite": "Terra", "scan": 1.42, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.9239, 67.87868, 145.9239, 67.87868], "geometry": {"coordinates": [145.9239, 67.87868], "type": "Point"}, "id": "566", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 311.12, "brightness": 397.28, "confidence": 65, "daynight": "D", "frp": 370.26, "instrument": "MODIS", "latitude": 67.87868, "longitude": 145.9239, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.56627, 67.87904, 146.56627, 67.87904], "geometry": {"coordinates": [146.56627, 67.87904], "type": "Point"}, "id": "567", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.39, "brightness": 348.41, "confidence": 95, "daynight": "D", "frp": 88.78, "instrument": "MODIS", "latitude": 67.87904, "longitude": 146.56627, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.96623, 67.88112, 145.96623, 67.88112], "geometry": {"coordinates": [145.96623, 67.88112], "type": "Point"}, "id": "568", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.91, "brightness": 354.24, "confidence": 74, "daynight": "D", "frp": 101.14, "instrument": "MODIS", "latitude": 67.88112, "longitude": 145.96623, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.85371, 67.88269, 145.85371, 67.88269], "geometry": {"coordinates": [145.85371, 67.88269], "type": "Point"}, "id": "569", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.84, "brightness": 336.49, "confidence": 0, "daynight": "D", "frp": 53.72, "instrument": "MODIS", "latitude": 67.88269, "longitude": 145.85371, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.0936, 67.8842, 146.0936, 67.8842], "geometry": {"coordinates": [146.0936, 67.8842], "type": "Point"}, "id": "570", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.76, "brightness": 324.34, "confidence": 75, "daynight": "D", "frp": 22.3, "instrument": "MODIS", "latitude": 67.8842, "longitude": 146.0936, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.62439, 67.89026, 146.62439, 67.89026], "geometry": {"coordinates": [146.62439, 67.89026], "type": "Point"}, "id": "571", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.09, "brightness": 342.65, "confidence": 92, "daynight": "D", "frp": 71.08, "instrument": "MODIS", "latitude": 67.89026, "longitude": 146.62439, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.66844, 67.8923, 146.66844, 67.8923], "geometry": {"coordinates": [146.66844, 67.8923], "type": "Point"}, "id": "572", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.87, "brightness": 312.48, "confidence": 12, "daynight": "D", "frp": 9.24, "instrument": "MODIS", "latitude": 67.8923, "longitude": 146.66844, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.5954, 67.89717, 146.5954, 67.89717], "geometry": {"coordinates": [146.5954, 67.89717], "type": "Point"}, "id": "573", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.35, "brightness": 340.58, "confidence": 91, "daynight": "D", "frp": 64.97, "instrument": "MODIS", "latitude": 67.89717, "longitude": 146.5954, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.63945, 67.89922, 146.63945, 67.89922], "geometry": {"coordinates": [146.63945, 67.89922], "type": "Point"}, "id": "574", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 303.77, "brightness": 338.03, "confidence": 90, "daynight": "D", "frp": 59.86, "instrument": "MODIS", "latitude": 67.89922, "longitude": 146.63945, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.6105, 67.90611, 146.6105, 67.90611], "geometry": {"coordinates": [146.6105, 67.90611], "type": "Point"}, "id": "575", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.46, "brightness": 319.15, "confidence": 75, "daynight": "D", "frp": 20.73, "instrument": "MODIS", "latitude": 67.90611, "longitude": 146.6105, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.15234, 67.91978, 146.15234, 67.91978], "geometry": {"coordinates": [146.15234, 67.91978], "type": "Point"}, "id": "576", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.5, "brightness": 328.08, "confidence": 44, "daynight": "D", "frp": 28.57, "instrument": "MODIS", "latitude": 67.91978, "longitude": 146.15234, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.92583, 67.92348, 145.92583, 67.92348], "geometry": {"coordinates": [145.92583, 67.92348], "type": "Point"}, "id": "577", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 309.32, "brightness": 380.89, "confidence": 71, "daynight": "D", "frp": 233.53, "instrument": "MODIS", "latitude": 67.92348, "longitude": 145.92583, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.13878, 67.93526, 146.13878, 67.93526], "geometry": {"coordinates": [146.13878, 67.93526], "type": "Point"}, "id": "578", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 304.33, "brightness": 348.24, "confidence": 72, "daynight": "D", "frp": 79.41, "instrument": "MODIS", "latitude": 67.93526, "longitude": 146.13878, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.0681, 67.93942, 146.0681, 67.93942], "geometry": {"coordinates": [146.0681, 67.93942], "type": "Point"}, "id": "579", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.67, "brightness": 344.99, "confidence": 88, "daynight": "D", "frp": 69.14, "instrument": "MODIS", "latitude": 67.93942, "longitude": 146.0681, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.04008, 67.94593, 146.04008, 67.94593], "geometry": {"coordinates": [146.04008, 67.94593], "type": "Point"}, "id": "580", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.14, "brightness": 333.85, "confidence": 26, "daynight": "D", "frp": 38.77, "instrument": "MODIS", "latitude": 67.94593, "longitude": 146.04008, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.05473, 67.9548, 146.05473, 67.9548], "geometry": {"coordinates": [146.05473, 67.9548], "type": "Point"}, "id": "581", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.86, "brightness": 347.47, "confidence": 84, "daynight": "D", "frp": 82.0, "instrument": "MODIS", "latitude": 67.9548, "longitude": 146.05473, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.09723, 67.95721, 146.09723, 67.95721], "geometry": {"coordinates": [146.09723, 67.95721], "type": "Point"}, "id": "582", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.91, "brightness": 335.98, "confidence": 83, "daynight": "D", "frp": 51.8, "instrument": "MODIS", "latitude": 67.95721, "longitude": 146.09723, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.0267, 67.9613, 146.0267, 67.9613], "geometry": {"coordinates": [146.0267, 67.9613], "type": "Point"}, "id": "583", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.77, "brightness": 321.87, "confidence": 51, "daynight": "D", "frp": 24.81, "instrument": "MODIS", "latitude": 67.9613, "longitude": 146.0267, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.88911, 68.24424, 146.88911, 68.24424], "geometry": {"coordinates": [146.88911, 68.24424], "type": "Point"}, "id": "584", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.53, "brightness": 323.38, "confidence": 35, "daynight": "D", "frp": 22.29, "instrument": "MODIS", "latitude": 68.24424, "longitude": 146.88911, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.86061, 68.25101, 146.86061, 68.25101], "geometry": {"coordinates": [146.86061, 68.25101], "type": "Point"}, "id": "585", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 304.89, "brightness": 339.11, "confidence": 90, "daynight": "D", "frp": 57.97, "instrument": "MODIS", "latitude": 68.25101, "longitude": 146.86061, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.90431, 68.25311, 146.90431, 68.25311], "geometry": {"coordinates": [146.90431, 68.25311], "type": "Point"}, "id": "586", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 306.72, "brightness": 345.12, "confidence": 93, "daynight": "D", "frp": 72.3, "instrument": "MODIS", "latitude": 68.25311, "longitude": 146.90431, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.94824, 68.25518, 146.94824, 68.25518], "geometry": {"coordinates": [146.94824, 68.25518], "type": "Point"}, "id": "587", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 304.18, "brightness": 335.05, "confidence": 68, "daynight": "D", "frp": 44.38, "instrument": "MODIS", "latitude": 68.25518, "longitude": 146.94824, "satellite": "Terra", "scan": 1.41, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.8322, 68.25775, 146.8322, 68.25775], "geometry": {"coordinates": [146.8322, 68.25775], "type": "Point"}, "id": "588", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 304.03, "brightness": 356.17, "confidence": 98, "daynight": "D", "frp": 115.76, "instrument": "MODIS", "latitude": 68.25775, "longitude": 146.8322, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.87581, 68.25988, 146.87581, 68.25988], "geometry": {"coordinates": [146.87581, 68.25988], "type": "Point"}, "id": "589", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 308.48, "brightness": 366.4, "confidence": 94, "daynight": "D", "frp": 159.15, "instrument": "MODIS", "latitude": 68.25988, "longitude": 146.87581, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.91948, 68.262, 146.91948, 68.262], "geometry": {"coordinates": [146.91948, 68.262], "type": "Point"}, "id": "590", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 308.96, "brightness": 367.54, "confidence": 100, "daynight": "D", "frp": 163.92, "instrument": "MODIS", "latitude": 68.262, "longitude": 146.91948, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.80376, 68.2645, 146.80376, 68.2645], "geometry": {"coordinates": [146.80376, 68.2645], "type": "Point"}, "id": "591", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.59, "brightness": 359.5, "confidence": 99, "daynight": "D", "frp": 132.07, "instrument": "MODIS", "latitude": 68.2645, "longitude": 146.80376, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.84734, 68.26662, 146.84734, 68.26662], "geometry": {"coordinates": [146.84734, 68.26662], "type": "Point"}, "id": "592", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 308.21, "brightness": 363.7, "confidence": 87, "daynight": "D", "frp": 149.29, "instrument": "MODIS", "latitude": 68.26662, "longitude": 146.84734, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.8909, 68.26877, 146.8909, 68.26877], "geometry": {"coordinates": [146.8909, 68.26877], "type": "Point"}, "id": "593", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.82, "brightness": 353.42, "confidence": 91, "daynight": "D", "frp": 102.47, "instrument": "MODIS", "latitude": 68.26877, "longitude": 146.8909, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.05498, 68.35635, 146.05498, 68.35635], "geometry": {"coordinates": [146.05498, 68.35635], "type": "Point"}, "id": "594", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.25, "brightness": 312.53, "confidence": 0, "daynight": "D", "frp": 10.01, "instrument": "MODIS", "latitude": 68.35635, "longitude": 146.05498, "satellite": "Terra", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.06927, 68.36516, 146.06927, 68.36516], "geometry": {"coordinates": [146.06927, 68.36516], "type": "Point"}, "id": "595", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.24, "brightness": 333.09, "confidence": 75, "daynight": "D", "frp": 43.53, "instrument": "MODIS", "latitude": 68.36516, "longitude": 146.06927, "satellite": "Terra", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.04207, 68.37138, 146.04207, 68.37138], "geometry": {"coordinates": [146.04207, 68.37138], "type": "Point"}, "id": "596", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.83, "brightness": 313.53, "confidence": 57, "daynight": "D", "frp": 11.38, "instrument": "MODIS", "latitude": 68.37138, "longitude": 146.04207, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.14651, 68.38463, 139.14651, 68.38463], "geometry": {"coordinates": [139.14651, 68.38463], "type": "Point"}, "id": "597", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 282.0, "brightness": 307.31, "confidence": 35, "daynight": "D", "frp": 5.65, "instrument": "MODIS", "latitude": 68.38463, "longitude": 139.14651, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.20265, 68.38487, 139.20265, 68.38487], "geometry": {"coordinates": [139.20265, 68.38487], "type": "Point"}, "id": "598", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 281.41, "brightness": 306.76, "confidence": 27, "daynight": "D", "frp": 5.59, "instrument": "MODIS", "latitude": 68.38487, "longitude": 139.20265, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.17987, 68.38888, 139.17987, 68.38888], "geometry": {"coordinates": [139.17987, 68.38888], "type": "Point"}, "id": "599", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 282.84, "brightness": 306.58, "confidence": 20, "daynight": "D", "frp": 5.4, "instrument": "MODIS", "latitude": 68.38888, "longitude": 139.17987, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.21326, 68.39312, 139.21326, 68.39312], "geometry": {"coordinates": [139.21326, 68.39312], "type": "Point"}, "id": "600", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 284.89, "brightness": 325.91, "confidence": 82, "daynight": "D", "frp": 22.63, "instrument": "MODIS", "latitude": 68.39312, "longitude": 139.21326, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [148.61453, 68.43552, 148.61453, 68.43552], "geometry": {"coordinates": [148.61453, 68.43552], "type": "Point"}, "id": "601", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.28, "brightness": 318.93, "confidence": 40, "daynight": "D", "frp": 16.89, "instrument": "MODIS", "latitude": 68.43552, "longitude": 148.61453, "satellite": "Terra", "scan": 1.5, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.58461, 68.46412, 133.58461, 68.46412], "geometry": {"coordinates": [133.58461, 68.46412], "type": "Point"}, "id": "602", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 285.42, "brightness": 340.44, "confidence": 90, "daynight": "D", "frp": 39.06, "instrument": "MODIS", "latitude": 68.46412, "longitude": 133.58461, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.56133, 68.46729, 133.56133, 68.46729], "geometry": {"coordinates": [133.56133, 68.46729], "type": "Point"}, "id": "603", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 289.46, "brightness": 354.04, "confidence": 97, "daynight": "D", "frp": 67.13, "instrument": "MODIS", "latitude": 68.46729, "longitude": 133.56133, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.18782, 68.47765, 139.18782, 68.47765], "geometry": {"coordinates": [139.18782, 68.47765], "type": "Point"}, "id": "604", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.44, "brightness": 316.3, "confidence": 46, "daynight": "D", "frp": 10.14, "instrument": "MODIS", "latitude": 68.47765, "longitude": 139.18782, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.54628, 68.47897, 133.54628, 68.47897], "geometry": {"coordinates": [133.54628, 68.47897], "type": "Point"}, "id": "605", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 286.2, "brightness": 340.12, "confidence": 90, "daynight": "D", "frp": 36.43, "instrument": "MODIS", "latitude": 68.47897, "longitude": 133.54628, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.45894, 68.48737, 134.45894, 68.48737], "geometry": {"coordinates": [134.45894, 68.48737], "type": "Point"}, "id": "606", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 303.02, "brightness": 330.69, "confidence": 83, "daynight": "D", "frp": 22.34, "instrument": "MODIS", "latitude": 68.48737, "longitude": 134.45894, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.55461, 68.48749, 133.55461, 68.48749], "geometry": {"coordinates": [133.55461, 68.48749], "type": "Point"}, "id": "607", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 290.37, "brightness": 341.42, "confidence": 84, "daynight": "D", "frp": 36.15, "instrument": "MODIS", "latitude": 68.48749, "longitude": 133.55461, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.23148, 68.4902, 139.23148, 68.4902], "geometry": {"coordinates": [139.23148, 68.4902], "type": "Point"}, "id": "608", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.37, "brightness": 313.81, "confidence": 52, "daynight": "D", "frp": 7.92, "instrument": "MODIS", "latitude": 68.4902, "longitude": 139.23148, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.66504, 68.49174, 133.66504, 68.49174], "geometry": {"coordinates": [133.66504, 68.49174], "type": "Point"}, "id": "609", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.34, "brightness": 332.83, "confidence": 68, "daynight": "D", "frp": 25.32, "instrument": "MODIS", "latitude": 68.49174, "longitude": 133.66504, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.49036, 68.49256, 134.49036, 68.49256], "geometry": {"coordinates": [134.49036, 68.49256], "type": "Point"}, "id": "610", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.79, "brightness": 331.55, "confidence": 84, "daynight": "D", "frp": 23.8, "instrument": "MODIS", "latitude": 68.49256, "longitude": 134.49036, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.42952, 68.49477, 133.42952, 68.49477], "geometry": {"coordinates": [133.42952, 68.49477], "type": "Point"}, "id": "611", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.0, "brightness": 351.68, "confidence": 96, "daynight": "D", "frp": 59.17, "instrument": "MODIS", "latitude": 68.49477, "longitude": 133.42952, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.56306, 68.49599, 133.56306, 68.49599], "geometry": {"coordinates": [133.56306, 68.49599], "type": "Point"}, "id": "612", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.15, "brightness": 367.76, "confidence": 100, "daynight": "D", "frp": 100.92, "instrument": "MODIS", "latitude": 68.49599, "longitude": 133.56306, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.48454, 68.49699, 133.48454, 68.49699], "geometry": {"coordinates": [133.48454, 68.49699], "type": "Point"}, "id": "613", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.63, "brightness": 332.96, "confidence": 78, "daynight": "D", "frp": 24.55, "instrument": "MODIS", "latitude": 68.49699, "longitude": 133.48454, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.40628, 68.4979, 133.40628, 68.4979], "geometry": {"coordinates": [133.40628, 68.4979], "type": "Point"}, "id": "614", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.71, "brightness": 344.35, "confidence": 92, "daynight": "D", "frp": 42.87, "instrument": "MODIS", "latitude": 68.4979, "longitude": 133.40628, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.46124, 68.50014, 133.46124, 68.50014], "geometry": {"coordinates": [133.46124, 68.50014], "type": "Point"}, "id": "615", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.81, "brightness": 353.65, "confidence": 97, "daynight": "D", "frp": 63.06, "instrument": "MODIS", "latitude": 68.50014, "longitude": 133.46124, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.50557, 68.50035, 134.50557, 68.50035], "geometry": {"coordinates": [134.50557, 68.50035], "type": "Point"}, "id": "616", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 304.07, "brightness": 343.38, "confidence": 77, "daynight": "D", "frp": 36.64, "instrument": "MODIS", "latitude": 68.50035, "longitude": 134.50557, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.38307, 68.50102, 133.38307, 68.50102], "geometry": {"coordinates": [133.38307, 68.50102], "type": "Point"}, "id": "617", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 304.22, "brightness": 344.16, "confidence": 92, "daynight": "D", "frp": 41.53, "instrument": "MODIS", "latitude": 68.50102, "longitude": 133.38307, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.43796, 68.50328, 133.43796, 68.50328], "geometry": {"coordinates": [133.43796, 68.50328], "type": "Point"}, "id": "618", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 304.32, "brightness": 353.78, "confidence": 97, "daynight": "D", "frp": 63.43, "instrument": "MODIS", "latitude": 68.50328, "longitude": 133.43796, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.48265, 68.5036, 134.48265, 68.5036], "geometry": {"coordinates": [134.48265, 68.5036], "type": "Point"}, "id": "619", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 305.41, "brightness": 336.65, "confidence": 71, "daynight": "D", "frp": 24.93, "instrument": "MODIS", "latitude": 68.5036, "longitude": 134.48265, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.35954, 68.50419, 133.35954, 68.50419], "geometry": {"coordinates": [133.35954, 68.50419], "type": "Point"}, "id": "620", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 307.34, "brightness": 358.55, "confidence": 99, "daynight": "D", "frp": 74.05, "instrument": "MODIS", "latitude": 68.50419, "longitude": 133.35954, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.5715, 68.50449, 133.5715, 68.50449], "geometry": {"coordinates": [133.5715, 68.50449], "type": "Point"}, "id": "621", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.63, "brightness": 339.4, "confidence": 72, "daynight": "D", "frp": 34.2, "instrument": "MODIS", "latitude": 68.50449, "longitude": 133.5715, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.53725, 68.5055, 134.53725, 68.5055], "geometry": {"coordinates": [134.53725, 68.5055], "type": "Point"}, "id": "622", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.79, "brightness": 334.27, "confidence": 71, "daynight": "D", "frp": 24.81, "instrument": "MODIS", "latitude": 68.5055, "longitude": 134.53725, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.4147, 68.50642, 133.4147, 68.50642], "geometry": {"coordinates": [133.4147, 68.50642], "type": "Point"}, "id": "623", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 303.48, "brightness": 344.09, "confidence": 92, "daynight": "D", "frp": 41.58, "instrument": "MODIS", "latitude": 68.50642, "longitude": 133.4147, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.33601, 68.50735, 133.33601, 68.50735], "geometry": {"coordinates": [133.33601, 68.50735], "type": "Point"}, "id": "624", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 308.08, "brightness": 364.49, "confidence": 100, "daynight": "D", "frp": 91.09, "instrument": "MODIS", "latitude": 68.50735, "longitude": 133.33601, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.25717, 68.50825, 133.25717, 68.50825], "geometry": {"coordinates": [133.25717, 68.50825], "type": "Point"}, "id": "625", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.3, "brightness": 351.3, "confidence": 96, "daynight": "D", "frp": 58.46, "instrument": "MODIS", "latitude": 68.50825, "longitude": 133.25717, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.39154, 68.50954, 133.39154, 68.50954], "geometry": {"coordinates": [133.39154, 68.50954], "type": "Point"}, "id": "626", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 308.66, "brightness": 353.93, "confidence": 97, "daynight": "D", "frp": 61.9, "instrument": "MODIS", "latitude": 68.50954, "longitude": 133.39154, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.31256, 68.51049, 133.31256, 68.51049], "geometry": {"coordinates": [133.31256, 68.51049], "type": "Point"}, "id": "627", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 305.92, "brightness": 357.15, "confidence": 98, "daynight": "D", "frp": 69.93, "instrument": "MODIS", "latitude": 68.51049, "longitude": 133.31256, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.28888, 68.51366, 133.28888, 68.51366], "geometry": {"coordinates": [133.28888, 68.51366], "type": "Point"}, "id": "628", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 304.96, "brightness": 357.01, "confidence": 98, "daynight": "D", "frp": 69.5, "instrument": "MODIS", "latitude": 68.51366, "longitude": 133.28888, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.21059, 68.51446, 133.21059, 68.51446], "geometry": {"coordinates": [133.21059, 68.51446], "type": "Point"}, "id": "629", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.7, "brightness": 361.73, "confidence": 100, "daynight": "D", "frp": 85.0, "instrument": "MODIS", "latitude": 68.51446, "longitude": 133.21059, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.18703, 68.51759, 133.18703, 68.51759], "geometry": {"coordinates": [133.18703, 68.51759], "type": "Point"}, "id": "630", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.31, "brightness": 338.81, "confidence": 89, "daynight": "D", "frp": 34.06, "instrument": "MODIS", "latitude": 68.51759, "longitude": 133.18703, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.29765, 68.52214, 133.29765, 68.52214], "geometry": {"coordinates": [133.29765, 68.52214], "type": "Point"}, "id": "631", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 304.87, "brightness": 328.5, "confidence": 72, "daynight": "D", "frp": 16.23, "instrument": "MODIS", "latitude": 68.52214, "longitude": 133.29765, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.58131, 68.54749, 134.58131, 68.54749], "geometry": {"coordinates": [134.58131, 68.54749], "type": "Point"}, "id": "632", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.56, "brightness": 324.79, "confidence": 35, "daynight": "D", "frp": 13.01, "instrument": "MODIS", "latitude": 68.54749, "longitude": 134.58131, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.43774, 68.58717, 134.43774, 68.58717], "geometry": {"coordinates": [134.43774, 68.58717], "type": "Point"}, "id": "633", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.55, "brightness": 328.91, "confidence": 30, "daynight": "D", "frp": 17.11, "instrument": "MODIS", "latitude": 68.58717, "longitude": 134.43774, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.11485, 68.61494, 143.11485, 68.61494], "geometry": {"coordinates": [143.11485, 68.61494], "type": "Point"}, "id": "634", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.49, "brightness": 310.92, "confidence": 51, "daynight": "D", "frp": 5.51, "instrument": "MODIS", "latitude": 68.61494, "longitude": 143.11485, "satellite": "Terra", "scan": 1.16, "track": 1.07, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.09012, 68.61993, 143.09012, 68.61993], "geometry": {"coordinates": [143.09012, 68.61993], "type": "Point"}, "id": "635", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.22, "brightness": 328.31, "confidence": 83, "daynight": "D", "frp": 25.84, "instrument": "MODIS", "latitude": 68.61993, "longitude": 143.09012, "satellite": "Terra", "scan": 1.16, "track": 1.07, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.26817, 68.62225, 133.26817, 68.62225], "geometry": {"coordinates": [133.26817, 68.62225], "type": "Point"}, "id": "636", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.46, "brightness": 330.78, "confidence": 40, "daynight": "D", "frp": 22.62, "instrument": "MODIS", "latitude": 68.62225, "longitude": 133.26817, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.10083, 68.62242, 143.10083, 68.62242], "geometry": {"coordinates": [143.10083, 68.62242], "type": "Point"}, "id": "637", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.76, "brightness": 330.56, "confidence": 85, "daynight": "D", "frp": 29.09, "instrument": "MODIS", "latitude": 68.62242, "longitude": 143.10083, "satellite": "Terra", "scan": 1.16, "track": 1.07, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.25272, 68.63396, 133.25272, 68.63396], "geometry": {"coordinates": [133.25272, 68.63396], "type": "Point"}, "id": "638", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.81, "brightness": 321.48, "confidence": 26, "daynight": "D", "frp": 13.59, "instrument": "MODIS", "latitude": 68.63396, "longitude": 133.25272, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.41104, 68.87447, 140.41104, 68.87447], "geometry": {"coordinates": [140.41104, 68.87447], "type": "Point"}, "id": "639", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.06, "brightness": 323.7, "confidence": 49, "daynight": "D", "frp": 14.35, "instrument": "MODIS", "latitude": 68.87447, "longitude": 140.41104, "satellite": "Terra", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.42249, 68.88267, 140.42249, 68.88267], "geometry": {"coordinates": [140.42249, 68.88267], "type": "Point"}, "id": "640", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.93, "brightness": 323.76, "confidence": 59, "daynight": "D", "frp": 14.68, "instrument": "MODIS", "latitude": 68.88267, "longitude": 140.42249, "satellite": "Terra", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.84616, 68.90688, 140.84616, 68.90688], "geometry": {"coordinates": [140.84616, 68.90688], "type": "Point"}, "id": "641", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.72, "brightness": 327.29, "confidence": 70, "daynight": "D", "frp": 20.27, "instrument": "MODIS", "latitude": 68.90688, "longitude": 140.84616, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.08334, 68.92067, 143.08334, 68.92067], "geometry": {"coordinates": [143.08334, 68.92067], "type": "Point"}, "id": "642", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.66, "brightness": 327.79, "confidence": 79, "daynight": "D", "frp": 23.95, "instrument": "MODIS", "latitude": 68.92067, "longitude": 143.08334, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.02104, 68.9222, 143.02104, 68.9222], "geometry": {"coordinates": [143.02104, 68.9222], "type": "Point"}, "id": "643", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.58, "brightness": 325.15, "confidence": 0, "daynight": "D", "frp": 20.49, "instrument": "MODIS", "latitude": 68.9222, "longitude": 143.02104, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.81044, 68.92376, 140.81044, 68.92376], "geometry": {"coordinates": [140.81044, 68.92376], "type": "Point"}, "id": "644", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.21, "brightness": 337.08, "confidence": 85, "daynight": "D", "frp": 33.18, "instrument": "MODIS", "latitude": 68.92376, "longitude": 140.81044, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.0585, 68.92561, 143.0585, 68.92561], "geometry": {"coordinates": [143.0585, 68.92561], "type": "Point"}, "id": "645", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.27, "brightness": 361.17, "confidence": 87, "daynight": "D", "frp": 99.26, "instrument": "MODIS", "latitude": 68.92561, "longitude": 143.0585, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.09624, 68.92899, 143.09624, 68.92899], "geometry": {"coordinates": [143.09624, 68.92899], "type": "Point"}, "id": "646", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.6, "brightness": 314.38, "confidence": 66, "daynight": "D", "frp": 8.93, "instrument": "MODIS", "latitude": 68.92899, "longitude": 143.09624, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.97173, 68.93201, 142.97173, 68.93201], "geometry": {"coordinates": [142.97173, 68.93201], "type": "Point"}, "id": "647", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.4, "brightness": 342.48, "confidence": 87, "daynight": "D", "frp": 51.51, "instrument": "MODIS", "latitude": 68.93201, "longitude": 142.97173, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.94707, 68.9369, 142.94707, 68.9369], "geometry": {"coordinates": [142.94707, 68.9369], "type": "Point"}, "id": "648", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.67, "brightness": 321.82, "confidence": 66, "daynight": "D", "frp": 16.3, "instrument": "MODIS", "latitude": 68.9369, "longitude": 142.94707, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.98436, 68.94035, 142.98436, 68.94035], "geometry": {"coordinates": [142.98436, 68.94035], "type": "Point"}, "id": "649", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.54, "brightness": 328.1, "confidence": 68, "daynight": "D", "frp": 23.4, "instrument": "MODIS", "latitude": 68.94035, "longitude": 142.98436, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.95976, 68.94522, 142.95976, 68.94522], "geometry": {"coordinates": [142.95976, 68.94522], "type": "Point"}, "id": "650", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.17, "brightness": 350.95, "confidence": 96, "daynight": "D", "frp": 68.47, "instrument": "MODIS", "latitude": 68.94522, "longitude": 142.95976, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.93512, 68.9501, 142.93512, 68.9501], "geometry": {"coordinates": [142.93512, 68.9501], "type": "Point"}, "id": "651", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 294.31, "brightness": 339.91, "confidence": 91, "daynight": "D", "frp": 43.75, "instrument": "MODIS", "latitude": 68.9501, "longitude": 142.93512, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.92314, 68.96329, 142.92314, 68.96329], "geometry": {"coordinates": [142.92314, 68.96329], "type": "Point"}, "id": "652", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.51, "brightness": 322.19, "confidence": 78, "daynight": "D", "frp": 16.74, "instrument": "MODIS", "latitude": 68.96329, "longitude": 142.92314, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.93439, 68.96701, 142.93439, 68.96701], "geometry": {"coordinates": [142.93439, 68.96701], "type": "Point"}, "id": "653", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.85, "brightness": 324.47, "confidence": 69, "daynight": "D", "frp": 17.85, "instrument": "MODIS", "latitude": 68.96701, "longitude": 142.93439, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.89827, 68.9682, 142.89827, 68.9682], "geometry": {"coordinates": [142.89827, 68.9682], "type": "Point"}, "id": "654", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.98, "brightness": 309.25, "confidence": 61, "daynight": "D", "frp": 5.14, "instrument": "MODIS", "latitude": 68.9682, "longitude": 142.89827, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.00084, 68.96979, 141.00084, 68.96979], "geometry": {"coordinates": [141.00084, 68.96979], "type": "Point"}, "id": "655", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 279.0, "brightness": 312.64, "confidence": 61, "daynight": "D", "frp": 12.65, "instrument": "MODIS", "latitude": 68.96979, "longitude": 141.00084, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.90965, 68.97195, 142.90965, 68.97195], "geometry": {"coordinates": [142.90965, 68.97195], "type": "Point"}, "id": "656", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 294.56, "brightness": 325.69, "confidence": 46, "daynight": "D", "frp": 19.29, "instrument": "MODIS", "latitude": 68.97195, "longitude": 142.90965, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.89758, 68.98518, 142.89758, 68.98518], "geometry": {"coordinates": [142.89758, 68.98518], "type": "Point"}, "id": "657", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.72, "brightness": 348.96, "confidence": 95, "daynight": "D", "frp": 61.84, "instrument": "MODIS", "latitude": 68.98518, "longitude": 142.89758, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.70128, 68.98536, 142.70128, 68.98536], "geometry": {"coordinates": [142.70128, 68.98536], "type": "Point"}, "id": "658", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.87, "brightness": 328.96, "confidence": 68, "daynight": "D", "frp": 23.98, "instrument": "MODIS", "latitude": 68.98536, "longitude": 142.70128, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.73842, 68.98885, 142.73842, 68.98885], "geometry": {"coordinates": [142.73842, 68.98885], "type": "Point"}, "id": "659", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 294.98, "brightness": 324.05, "confidence": 80, "daynight": "D", "frp": 18.46, "instrument": "MODIS", "latitude": 68.98885, "longitude": 142.73842, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.873, 68.99007, 142.873, 68.99007], "geometry": {"coordinates": [142.873, 68.99007], "type": "Point"}, "id": "660", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.59, "brightness": 341.0, "confidence": 91, "daynight": "D", "frp": 45.24, "instrument": "MODIS", "latitude": 68.99007, "longitude": 142.873, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.6767, 68.99017, 142.6767, 68.99017], "geometry": {"coordinates": [142.6767, 68.99017], "type": "Point"}, "id": "661", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.3, "brightness": 354.04, "confidence": 97, "daynight": "D", "frp": 74.82, "instrument": "MODIS", "latitude": 68.99017, "longitude": 142.6767, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.1971, 68.99068, 143.1971, 68.99068], "geometry": {"coordinates": [143.1971, 68.99068], "type": "Point"}, "id": "662", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.98, "brightness": 316.51, "confidence": 65, "daynight": "D", "frp": 9.6, "instrument": "MODIS", "latitude": 68.99068, "longitude": 143.1971, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.71393, 68.99364, 142.71393, 68.99364], "geometry": {"coordinates": [142.71393, 68.99364], "type": "Point"}, "id": "663", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.4, "brightness": 343.05, "confidence": 92, "daynight": "D", "frp": 50.09, "instrument": "MODIS", "latitude": 68.99364, "longitude": 142.71393, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.65204, 68.995, 142.65204, 68.995], "geometry": {"coordinates": [142.65204, 68.995], "type": "Point"}, "id": "664", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.69, "brightness": 377.3, "confidence": 100, "daynight": "D", "frp": 159.45, "instrument": "MODIS", "latitude": 68.995, "longitude": 142.65204, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.75104, 68.99714, 142.75104, 68.99714], "geometry": {"coordinates": [142.75104, 68.99714], "type": "Point"}, "id": "665", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.49, "brightness": 333.13, "confidence": 87, "daynight": "D", "frp": 31.05, "instrument": "MODIS", "latitude": 68.99714, "longitude": 142.75104, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.8858, 68.99835, 142.8858, 68.99835], "geometry": {"coordinates": [142.8858, 68.99835], "type": "Point"}, "id": "666", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.68, "brightness": 319.5, "confidence": 51, "daynight": "D", "frp": 12.8, "instrument": "MODIS", "latitude": 68.99835, "longitude": 142.8858, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.62752, 68.99979, 142.62752, 68.99979], "geometry": {"coordinates": [142.62752, 68.99979], "type": "Point"}, "id": "667", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 294.43, "brightness": 339.83, "confidence": 91, "daynight": "D", "frp": 44.13, "instrument": "MODIS", "latitude": 68.99979, "longitude": 142.62752, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.76259, 69.00115, 142.76259, 69.00115], "geometry": {"coordinates": [142.76259, 69.00115], "type": "Point"}, "id": "668", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.58, "brightness": 336.14, "confidence": 21, "daynight": "D", "frp": 32.07, "instrument": "MODIS", "latitude": 69.00115, "longitude": 142.76259, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.72659, 69.00193, 142.72659, 69.00193], "geometry": {"coordinates": [142.72659, 69.00193], "type": "Point"}, "id": "669", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.95, "brightness": 324.44, "confidence": 50, "daynight": "D", "frp": 17.98, "instrument": "MODIS", "latitude": 69.00193, "longitude": 142.72659, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.86121, 69.00323, 142.86121, 69.00323], "geometry": {"coordinates": [142.86121, 69.00323], "type": "Point"}, "id": "670", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.77, "brightness": 358.85, "confidence": 99, "daynight": "D", "frp": 89.49, "instrument": "MODIS", "latitude": 69.00323, "longitude": 142.86121, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.66483, 69.00325, 142.66483, 69.00325], "geometry": {"coordinates": [142.66483, 69.00325], "type": "Point"}, "id": "671", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.66, "brightness": 359.52, "confidence": 99, "daynight": "D", "frp": 91.6, "instrument": "MODIS", "latitude": 69.00325, "longitude": 142.66483, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.06044, 69.00703, 143.06044, 69.00703], "geometry": {"coordinates": [143.06044, 69.00703], "type": "Point"}, "id": "672", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.5, "brightness": 328.23, "confidence": 84, "daynight": "D", "frp": 23.28, "instrument": "MODIS", "latitude": 69.00703, "longitude": 143.06044, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.64011, 69.00807, 142.64011, 69.00807], "geometry": {"coordinates": [142.64011, 69.00807], "type": "Point"}, "id": "673", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.39, "brightness": 357.06, "confidence": 98, "daynight": "D", "frp": 84.17, "instrument": "MODIS", "latitude": 69.00807, "longitude": 142.64011, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.03578, 69.01192, 143.03578, 69.01192], "geometry": {"coordinates": [143.03578, 69.01192], "type": "Point"}, "id": "674", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.51, "brightness": 319.79, "confidence": 76, "daynight": "D", "frp": 12.93, "instrument": "MODIS", "latitude": 69.01192, "longitude": 143.03578, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.07318, 69.01535, 143.07318, 69.01535], "geometry": {"coordinates": [143.07318, 69.01535], "type": "Point"}, "id": "675", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.86, "brightness": 322.77, "confidence": 79, "daynight": "D", "frp": 16.26, "instrument": "MODIS", "latitude": 69.01535, "longitude": 143.07318, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.78749, 69.01781, 142.78749, 69.01781], "geometry": {"coordinates": [142.78749, 69.01781], "type": "Point"}, "id": "676", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.33, "brightness": 334.35, "confidence": 53, "daynight": "D", "frp": 29.65, "instrument": "MODIS", "latitude": 69.01781, "longitude": 142.78749, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.24757, 69.01877, 143.24757, 69.01877], "geometry": {"coordinates": [143.24757, 69.01877], "type": "Point"}, "id": "677", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.39, "brightness": 321.02, "confidence": 73, "daynight": "D", "frp": 14.63, "instrument": "MODIS", "latitude": 69.01877, "longitude": 143.24757, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.26154, 69.0487, 143.26154, 69.0487], "geometry": {"coordinates": [143.26154, 69.0487], "type": "Point"}, "id": "678", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.88, "brightness": 317.11, "confidence": 45, "daynight": "D", "frp": 8.91, "instrument": "MODIS", "latitude": 69.0487, "longitude": 143.26154, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.84631, 69.04977, 140.84631, 69.04977], "geometry": {"coordinates": [140.84631, 69.04977], "type": "Point"}, "id": "679", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 288.55, "brightness": 348.9, "confidence": 95, "daynight": "D", "frp": 62.99, "instrument": "MODIS", "latitude": 69.04977, "longitude": 140.84631, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.2993, 69.05204, 143.2993, 69.05204], "geometry": {"coordinates": [143.2993, 69.05204], "type": "Point"}, "id": "680", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.52, "brightness": 317.64, "confidence": 60, "daynight": "D", "frp": 10.95, "instrument": "MODIS", "latitude": 69.05204, "longitude": 143.2993, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.8615, 69.05556, 140.8615, 69.05556], "geometry": {"coordinates": [140.8615, 69.05556], "type": "Point"}, "id": "681", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 286.08, "brightness": 332.35, "confidence": 86, "daynight": "D", "frp": 30.29, "instrument": "MODIS", "latitude": 69.05556, "longitude": 140.8615, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.27451, 69.05701, 143.27451, 69.05701], "geometry": {"coordinates": [143.27451, 69.05701], "type": "Point"}, "id": "682", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.82, "brightness": 315.89, "confidence": 48, "daynight": "D", "frp": 8.41, "instrument": "MODIS", "latitude": 69.05701, "longitude": 143.27451, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.84966, 69.06805, 140.84966, 69.06805], "geometry": {"coordinates": [140.84966, 69.06805], "type": "Point"}, "id": "683", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 283.19, "brightness": 322.07, "confidence": 61, "daynight": "D", "frp": 17.51, "instrument": "MODIS", "latitude": 69.06805, "longitude": 140.84966, "satellite": "Terra", "scan": 1.05, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.73991, 69.07025, 142.73991, 69.07025], "geometry": {"coordinates": [142.73991, 69.07025], "type": "Point"}, "id": "684", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.5, "brightness": 344.58, "confidence": 93, "daynight": "D", "frp": 50.15, "instrument": "MODIS", "latitude": 69.07025, "longitude": 142.73991, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.71535, 69.07506, 142.71535, 69.07506], "geometry": {"coordinates": [142.71535, 69.07506], "type": "Point"}, "id": "685", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.67, "brightness": 352.95, "confidence": 97, "daynight": "D", "frp": 70.03, "instrument": "MODIS", "latitude": 69.07506, "longitude": 142.71535, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.6909, 69.07983, 142.6909, 69.07983], "geometry": {"coordinates": [142.6909, 69.07983], "type": "Point"}, "id": "686", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.85, "brightness": 361.9, "confidence": 100, "daynight": "D", "frp": 94.18, "instrument": "MODIS", "latitude": 69.07983, "longitude": 142.6909, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.31337, 69.08194, 143.31337, 69.08194], "geometry": {"coordinates": [143.31337, 69.08194], "type": "Point"}, "id": "687", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.74, "brightness": 318.98, "confidence": 76, "daynight": "D", "frp": 13.85, "instrument": "MODIS", "latitude": 69.08194, "longitude": 143.31337, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.72807, 69.08332, 142.72807, 69.08332], "geometry": {"coordinates": [142.72807, 69.08332], "type": "Point"}, "id": "688", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.2, "brightness": 349.11, "confidence": 95, "daynight": "D", "frp": 59.74, "instrument": "MODIS", "latitude": 69.08332, "longitude": 142.72807, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.66652, 69.08459, 142.66652, 69.08459], "geometry": {"coordinates": [142.66652, 69.08459], "type": "Point"}, "id": "689", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.34, "brightness": 346.54, "confidence": 94, "daynight": "D", "frp": 53.11, "instrument": "MODIS", "latitude": 69.08459, "longitude": 142.66652, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.02545, 69.0849, 143.02545, 69.0849], "geometry": {"coordinates": [143.02545, 69.0849], "type": "Point"}, "id": "690", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.93, "brightness": 319.88, "confidence": 67, "daynight": "D", "frp": 10.71, "instrument": "MODIS", "latitude": 69.0849, "longitude": 143.02545, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.28856, 69.08688, 143.28856, 69.08688], "geometry": {"coordinates": [143.28856, 69.08688], "type": "Point"}, "id": "691", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.92, "brightness": 314.33, "confidence": 30, "daynight": "D", "frp": 8.68, "instrument": "MODIS", "latitude": 69.08688, "longitude": 143.28856, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.70352, 69.08811, 142.70352, 69.08811], "geometry": {"coordinates": [142.70352, 69.08811], "type": "Point"}, "id": "692", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 294.58, "brightness": 332.74, "confidence": 48, "daynight": "D", "frp": 25.73, "instrument": "MODIS", "latitude": 69.08811, "longitude": 142.70352, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.67889, 69.09291, 142.67889, 69.09291], "geometry": {"coordinates": [142.67889, 69.09291], "type": "Point"}, "id": "693", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 294.58, "brightness": 337.65, "confidence": 63, "daynight": "D", "frp": 34.96, "instrument": "MODIS", "latitude": 69.09291, "longitude": 142.67889, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.90408, 69.09699, 147.90408, 69.09699], "geometry": {"coordinates": [147.90408, 69.09699], "type": "Point"}, "id": "694", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.7, "brightness": 324.51, "confidence": 61, "daynight": "D", "frp": 26.96, "instrument": "MODIS", "latitude": 69.09699, "longitude": 147.90408, "satellite": "Terra", "scan": 1.37, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.98943, 69.10287, 142.98943, 69.10287], "geometry": {"coordinates": [142.98943, 69.10287], "type": "Point"}, "id": "695", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.06, "brightness": 336.96, "confidence": 89, "daynight": "D", "frp": 33.3, "instrument": "MODIS", "latitude": 69.10287, "longitude": 142.98943, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.92746, 69.1043, 142.92746, 69.1043], "geometry": {"coordinates": [142.92746, 69.1043], "type": "Point"}, "id": "696", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.28, "brightness": 353.24, "confidence": 97, "daynight": "D", "frp": 75.79, "instrument": "MODIS", "latitude": 69.1043, "longitude": 142.92746, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.7291, 69.1046, 142.7291, 69.1046], "geometry": {"coordinates": [142.7291, 69.1046], "type": "Point"}, "id": "697", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.88, "brightness": 319.91, "confidence": 41, "daynight": "D", "frp": 13.99, "instrument": "MODIS", "latitude": 69.1046, "longitude": 142.7291, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.32552, 69.10703, 143.32552, 69.10703], "geometry": {"coordinates": [143.32552, 69.10703], "type": "Point"}, "id": "698", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.74, "brightness": 320.81, "confidence": 77, "daynight": "D", "frp": 14.72, "instrument": "MODIS", "latitude": 69.10703, "longitude": 143.32552, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.96437, 69.10782, 142.96437, 69.10782], "geometry": {"coordinates": [142.96437, 69.10782], "type": "Point"}, "id": "699", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.39, "brightness": 367.5, "confidence": 100, "daynight": "D", "frp": 116.66, "instrument": "MODIS", "latitude": 69.10782, "longitude": 142.96437, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.90312, 69.10911, 142.90312, 69.10911], "geometry": {"coordinates": [142.90312, 69.10911], "type": "Point"}, "id": "700", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.96, "brightness": 345.05, "confidence": 93, "daynight": "D", "frp": 55.73, "instrument": "MODIS", "latitude": 69.10911, "longitude": 142.90312, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.3007, 69.11201, 143.3007, 69.11201], "geometry": {"coordinates": [143.3007, 69.11201], "type": "Point"}, "id": "701", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.87, "brightness": 319.26, "confidence": 72, "daynight": "D", "frp": 12.36, "instrument": "MODIS", "latitude": 69.11201, "longitude": 143.3007, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.93983, 69.11266, 142.93983, 69.11266], "geometry": {"coordinates": [142.93983, 69.11266], "type": "Point"}, "id": "702", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.73, "brightness": 342.28, "confidence": 92, "daynight": "D", "frp": 47.79, "instrument": "MODIS", "latitude": 69.11266, "longitude": 142.93983, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.97708, 69.11611, 142.97708, 69.11611], "geometry": {"coordinates": [142.97708, 69.11611], "type": "Point"}, "id": "703", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 314.45, "brightness": 420.26, "confidence": 100, "daynight": "D", "frp": 455.27, "instrument": "MODIS", "latitude": 69.11611, "longitude": 142.97708, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.91566, 69.11743, 142.91566, 69.11743], "geometry": {"coordinates": [142.91566, 69.11743], "type": "Point"}, "id": "704", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.63, "brightness": 344.06, "confidence": 93, "daynight": "D", "frp": 52.4, "instrument": "MODIS", "latitude": 69.11743, "longitude": 142.91566, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.85364, 69.11886, 142.85364, 69.11886], "geometry": {"coordinates": [142.85364, 69.11886], "type": "Point"}, "id": "705", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.24, "brightness": 313.9, "confidence": 60, "daynight": "D", "frp": 9.4, "instrument": "MODIS", "latitude": 69.11886, "longitude": 142.85364, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.65533, 69.11893, 142.65533, 69.11893], "geometry": {"coordinates": [142.65533, 69.11893], "type": "Point"}, "id": "706", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.03, "brightness": 317.58, "confidence": 55, "daynight": "D", "frp": 13.19, "instrument": "MODIS", "latitude": 69.11893, "longitude": 142.65533, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.79225, 69.12016, 142.79225, 69.12016], "geometry": {"coordinates": [142.79225, 69.12016], "type": "Point"}, "id": "707", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.35, "brightness": 317.35, "confidence": 61, "daynight": "D", "frp": 12.38, "instrument": "MODIS", "latitude": 69.12016, "longitude": 142.79225, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.95247, 69.12096, 142.95247, 69.12096], "geometry": {"coordinates": [142.95247, 69.12096], "type": "Point"}, "id": "708", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.4, "brightness": 360.19, "confidence": 100, "daynight": "D", "frp": 92.44, "instrument": "MODIS", "latitude": 69.12096, "longitude": 142.95247, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.63084, 69.12369, 142.63084, 69.12369], "geometry": {"coordinates": [142.63084, 69.12369], "type": "Point"}, "id": "709", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 290.83, "brightness": 321.04, "confidence": 78, "daynight": "D", "frp": 17.84, "instrument": "MODIS", "latitude": 69.12369, "longitude": 142.63084, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.32664, 69.12862, 143.32664, 69.12862], "geometry": {"coordinates": [143.32664, 69.12862], "type": "Point"}, "id": "710", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.39, "brightness": 332.79, "confidence": 73, "daynight": "D", "frp": 29.13, "instrument": "MODIS", "latitude": 69.12862, "longitude": 143.32664, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.0022, 69.13276, 143.0022, 69.13276], "geometry": {"coordinates": [143.0022, 69.13276], "type": "Point"}, "id": "711", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 303.57, "brightness": 355.93, "confidence": 98, "daynight": "D", "frp": 75.58, "instrument": "MODIS", "latitude": 69.13276, "longitude": 143.0022, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.71851, 69.13464, 142.71851, 69.13464], "geometry": {"coordinates": [142.71851, 69.13464], "type": "Point"}, "id": "712", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.02, "brightness": 323.6, "confidence": 63, "daynight": "D", "frp": 18.6, "instrument": "MODIS", "latitude": 69.13464, "longitude": 142.71851, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.33965, 69.13692, 143.33965, 69.13692], "geometry": {"coordinates": [143.33965, 69.13692], "type": "Point"}, "id": "713", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.71, "brightness": 342.17, "confidence": 92, "daynight": "D", "frp": 48.27, "instrument": "MODIS", "latitude": 69.13692, "longitude": 143.33965, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.97797, 69.13754, 142.97797, 69.13754], "geometry": {"coordinates": [142.97797, 69.13754], "type": "Point"}, "id": "714", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 303.63, "brightness": 359.43, "confidence": 98, "daynight": "D", "frp": 86.8, "instrument": "MODIS", "latitude": 69.13754, "longitude": 142.97797, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.77769, 69.13921, 147.77769, 69.13921], "geometry": {"coordinates": [147.77769, 69.13921], "type": "Point"}, "id": "715", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.1, "brightness": 327.43, "confidence": 62, "daynight": "D", "frp": 30.23, "instrument": "MODIS", "latitude": 69.13921, "longitude": 147.77769, "satellite": "Terra", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.01468, 69.1411, 143.01468, 69.1411], "geometry": {"coordinates": [143.01468, 69.1411], "type": "Point"}, "id": "716", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.17, "brightness": 333.73, "confidence": 69, "daynight": "D", "frp": 26.66, "instrument": "MODIS", "latitude": 69.1411, "longitude": 143.01468, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.82207, 69.14117, 147.82207, 69.14117], "geometry": {"coordinates": [147.82207, 69.14117], "type": "Point"}, "id": "717", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 304.32, "brightness": 358.39, "confidence": 0, "daynight": "D", "frp": 119.4, "instrument": "MODIS", "latitude": 69.14117, "longitude": 147.82207, "satellite": "Terra", "scan": 1.36, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.31479, 69.14188, 143.31479, 69.14188], "geometry": {"coordinates": [143.31479, 69.14188], "type": "Point"}, "id": "718", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.36, "brightness": 321.7, "confidence": 55, "daynight": "D", "frp": 14.39, "instrument": "MODIS", "latitude": 69.14188, "longitude": 143.31479, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.73152, 69.14283, 142.73152, 69.14283], "geometry": {"coordinates": [142.73152, 69.14283], "type": "Point"}, "id": "719", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.86, "brightness": 328.47, "confidence": 46, "daynight": "D", "frp": 24.33, "instrument": "MODIS", "latitude": 69.14283, "longitude": 142.73152, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.35263, 69.14522, 143.35263, 69.14522], "geometry": {"coordinates": [143.35263, 69.14522], "type": "Point"}, "id": "720", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.55, "brightness": 325.73, "confidence": 63, "daynight": "D", "frp": 19.8, "instrument": "MODIS", "latitude": 69.14522, "longitude": 143.35263, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.60803, 69.14551, 142.60803, 69.14551], "geometry": {"coordinates": [142.60803, 69.14551], "type": "Point"}, "id": "721", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 290.08, "brightness": 322.03, "confidence": 42, "daynight": "D", "frp": 16.64, "instrument": "MODIS", "latitude": 69.14551, "longitude": 142.60803, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.9906, 69.14584, 142.9906, 69.14584], "geometry": {"coordinates": [142.9906, 69.14584], "type": "Point"}, "id": "722", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.7, "brightness": 332.13, "confidence": 14, "daynight": "D", "frp": 24.7, "instrument": "MODIS", "latitude": 69.14584, "longitude": 142.9906, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.79364, 69.14785, 147.79364, 69.14785], "geometry": {"coordinates": [147.79364, 69.14785], "type": "Point"}, "id": "723", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 311.2, "brightness": 404.77, "confidence": 0, "daynight": "D", "frp": 432.21, "instrument": "MODIS", "latitude": 69.14785, "longitude": 147.79364, "satellite": "Terra", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.02742, 69.14939, 143.02742, 69.14939], "geometry": {"coordinates": [143.02742, 69.14939], "type": "Point"}, "id": "724", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.17, "brightness": 354.39, "confidence": 97, "daynight": "D", "frp": 70.89, "instrument": "MODIS", "latitude": 69.14939, "longitude": 143.02742, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.96645, 69.15059, 142.96645, 69.15059], "geometry": {"coordinates": [142.96645, 69.15059], "type": "Point"}, "id": "725", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.49, "brightness": 335.09, "confidence": 75, "daynight": "D", "frp": 33.07, "instrument": "MODIS", "latitude": 69.15059, "longitude": 142.96645, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.03934, 69.15334, 143.03934, 69.15334], "geometry": {"coordinates": [143.03934, 69.15334], "type": "Point"}, "id": "726", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.77, "brightness": 328.43, "confidence": 64, "daynight": "D", "frp": 16.42, "instrument": "MODIS", "latitude": 69.15334, "longitude": 143.03934, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.36566, 69.15351, 143.36566, 69.15351], "geometry": {"coordinates": [143.36566, 69.15351], "type": "Point"}, "id": "727", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.89, "brightness": 328.98, "confidence": 80, "daynight": "D", "frp": 25.01, "instrument": "MODIS", "latitude": 69.15351, "longitude": 143.36566, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.00327, 69.15414, 143.00327, 69.15414], "geometry": {"coordinates": [143.00327, 69.15414], "type": "Point"}, "id": "728", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 306.99, "brightness": 376.35, "confidence": 100, "daynight": "D", "frp": 151.8, "instrument": "MODIS", "latitude": 69.15414, "longitude": 143.00327, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.71967, 69.15588, 142.71967, 69.15588], "geometry": {"coordinates": [142.71967, 69.15588], "type": "Point"}, "id": "729", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.24, "brightness": 342.65, "confidence": 91, "daynight": "D", "frp": 48.51, "instrument": "MODIS", "latitude": 69.15588, "longitude": 142.71967, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.07744, 69.15659, 143.07744, 69.15659], "geometry": {"coordinates": [143.07744, 69.15659], "type": "Point"}, "id": "730", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.96, "brightness": 330.65, "confidence": 59, "daynight": "D", "frp": 20.25, "instrument": "MODIS", "latitude": 69.15659, "longitude": 143.07744, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.01488, 69.15819, 143.01488, 69.15819], "geometry": {"coordinates": [143.01488, 69.15819], "type": "Point"}, "id": "731", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 307.07, "brightness": 385.18, "confidence": 100, "daynight": "D", "frp": 190.9, "instrument": "MODIS", "latitude": 69.15819, "longitude": 143.01488, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.34067, 69.1585, 143.34067, 69.1585], "geometry": {"coordinates": [143.34067, 69.1585], "type": "Point"}, "id": "732", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.95, "brightness": 354.31, "confidence": 97, "daynight": "D", "frp": 77.06, "instrument": "MODIS", "latitude": 69.1585, "longitude": 143.34067, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.99074, 69.16297, 142.99074, 69.16297], "geometry": {"coordinates": [142.99074, 69.16297], "type": "Point"}, "id": "733", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 304.85, "brightness": 364.77, "confidence": 100, "daynight": "D", "frp": 101.32, "instrument": "MODIS", "latitude": 69.16297, "longitude": 142.99074, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.57216, 69.1632, 142.57216, 69.1632], "geometry": {"coordinates": [142.57216, 69.1632], "type": "Point"}, "id": "734", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 290.55, "brightness": 328.38, "confidence": 27, "daynight": "D", "frp": 23.29, "instrument": "MODIS", "latitude": 69.1632, "longitude": 142.57216, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.73219, 69.16417, 142.73219, 69.16417], "geometry": {"coordinates": [142.73219, 69.16417], "type": "Point"}, "id": "735", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.31, "brightness": 326.73, "confidence": 40, "daynight": "D", "frp": 22.41, "instrument": "MODIS", "latitude": 69.16417, "longitude": 142.73219, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.02779, 69.16645, 143.02779, 69.16645], "geometry": {"coordinates": [143.02779, 69.16645], "type": "Point"}, "id": "736", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.1, "brightness": 340.33, "confidence": 64, "daynight": "D", "frp": 37.01, "instrument": "MODIS", "latitude": 69.16645, "longitude": 143.02779, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.35371, 69.16679, 143.35371, 69.16679], "geometry": {"coordinates": [143.35371, 69.16679], "type": "Point"}, "id": "737", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.36, "brightness": 363.14, "confidence": 100, "daynight": "D", "frp": 106.19, "instrument": "MODIS", "latitude": 69.16679, "longitude": 143.35371, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.96628, 69.16782, 142.96628, 69.16782], "geometry": {"coordinates": [142.96628, 69.16782], "type": "Point"}, "id": "738", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.45, "brightness": 346.3, "confidence": 69, "daynight": "D", "frp": 53.0, "instrument": "MODIS", "latitude": 69.16782, "longitude": 142.96628, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.54791, 69.16792, 142.54791, 69.16792], "geometry": {"coordinates": [142.54791, 69.16792], "type": "Point"}, "id": "739", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 290.35, "brightness": 325.15, "confidence": 56, "daynight": "D", "frp": 19.77, "instrument": "MODIS", "latitude": 69.16792, "longitude": 142.54791, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.70769, 69.16895, 142.70769, 69.16895], "geometry": {"coordinates": [142.70769, 69.16895], "type": "Point"}, "id": "740", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 294.17, "brightness": 345.18, "confidence": 90, "daynight": "D", "frp": 53.5, "instrument": "MODIS", "latitude": 69.16895, "longitude": 142.70769, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.06575, 69.16974, 143.06575, 69.16974], "geometry": {"coordinates": [143.06575, 69.16974], "type": "Point"}, "id": "741", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.96, "brightness": 331.46, "confidence": 55, "daynight": "D", "frp": 22.0, "instrument": "MODIS", "latitude": 69.16974, "longitude": 143.06575, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.32877, 69.17176, 143.32877, 69.17176], "geometry": {"coordinates": [143.32877, 69.17176], "type": "Point"}, "id": "742", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.0, "brightness": 328.57, "confidence": 84, "daynight": "D", "frp": 23.52, "instrument": "MODIS", "latitude": 69.17176, "longitude": 143.32877, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.52373, 69.17262, 142.52373, 69.17262], "geometry": {"coordinates": [142.52373, 69.17262], "type": "Point"}, "id": "743", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.34, "brightness": 325.78, "confidence": 72, "daynight": "D", "frp": 20.86, "instrument": "MODIS", "latitude": 69.17262, "longitude": 142.52373, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.36678, 69.17508, 143.36678, 69.17508], "geometry": {"coordinates": [143.36678, 69.17508], "type": "Point"}, "id": "744", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.92, "brightness": 330.05, "confidence": 85, "daynight": "D", "frp": 27.62, "instrument": "MODIS", "latitude": 69.17508, "longitude": 143.36678, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.97876, 69.17615, 142.97876, 69.17615], "geometry": {"coordinates": [142.97876, 69.17615], "type": "Point"}, "id": "745", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.53, "brightness": 367.78, "confidence": 100, "daynight": "D", "frp": 117.49, "instrument": "MODIS", "latitude": 69.17615, "longitude": 142.97876, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.34181, 69.18004, 143.34181, 69.18004], "geometry": {"coordinates": [143.34181, 69.18004], "type": "Point"}, "id": "746", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.74, "brightness": 365.62, "confidence": 100, "daynight": "D", "frp": 115.34, "instrument": "MODIS", "latitude": 69.18004, "longitude": 143.34181, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.53609, 69.18089, 142.53609, 69.18089], "geometry": {"coordinates": [142.53609, 69.18089], "type": "Point"}, "id": "747", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.17, "brightness": 327.34, "confidence": 83, "daynight": "D", "frp": 22.92, "instrument": "MODIS", "latitude": 69.18089, "longitude": 142.53609, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.95415, 69.18102, 142.95415, 69.18102], "geometry": {"coordinates": [142.95415, 69.18102], "type": "Point"}, "id": "748", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.67, "brightness": 345.34, "confidence": 94, "daynight": "D", "frp": 54.29, "instrument": "MODIS", "latitude": 69.18102, "longitude": 142.95415, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.31688, 69.18499, 143.31688, 69.18499], "geometry": {"coordinates": [143.31688, 69.18499], "type": "Point"}, "id": "749", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.41, "brightness": 315.38, "confidence": 71, "daynight": "D", "frp": 8.7, "instrument": "MODIS", "latitude": 69.18499, "longitude": 143.31688, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.51187, 69.18559, 142.51187, 69.18559], "geometry": {"coordinates": [142.51187, 69.18559], "type": "Point"}, "id": "750", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.61, "brightness": 337.61, "confidence": 90, "daynight": "D", "frp": 38.65, "instrument": "MODIS", "latitude": 69.18559, "longitude": 142.51187, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.3549, 69.18832, 143.3549, 69.18832], "geometry": {"coordinates": [143.3549, 69.18832], "type": "Point"}, "id": "751", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 289.42, "brightness": 338.89, "confidence": 68, "daynight": "D", "frp": 41.65, "instrument": "MODIS", "latitude": 69.18832, "longitude": 143.3549, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.96722, 69.18922, 142.96722, 69.18922], "geometry": {"coordinates": [142.96722, 69.18922], "type": "Point"}, "id": "752", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.7, "brightness": 322.89, "confidence": 80, "daynight": "D", "frp": 19.52, "instrument": "MODIS", "latitude": 69.18922, "longitude": 142.96722, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.4875, 69.19031, 142.4875, 69.19031], "geometry": {"coordinates": [142.4875, 69.19031], "type": "Point"}, "id": "753", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.54, "brightness": 309.1, "confidence": 59, "daynight": "D", "frp": 4.87, "instrument": "MODIS", "latitude": 69.19031, "longitude": 142.4875, "satellite": "Terra", "scan": 1.1, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.06702, 69.19112, 143.06702, 69.19112], "geometry": {"coordinates": [143.06702, 69.19112], "type": "Point"}, "id": "754", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.43, "brightness": 345.68, "confidence": 94, "daynight": "D", "frp": 50.5, "instrument": "MODIS", "latitude": 69.19112, "longitude": 143.06702, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.32985, 69.19329, 143.32985, 69.19329], "geometry": {"coordinates": [143.32985, 69.19329], "type": "Point"}, "id": "755", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.01, "brightness": 352.46, "confidence": 73, "daynight": "D", "frp": 72.67, "instrument": "MODIS", "latitude": 69.19329, "longitude": 143.32985, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.52425, 69.19386, 142.52425, 69.19386], "geometry": {"coordinates": [142.52425, 69.19386], "type": "Point"}, "id": "756", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.46, "brightness": 326.09, "confidence": 29, "daynight": "D", "frp": 18.61, "instrument": "MODIS", "latitude": 69.19386, "longitude": 142.52425, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.68381, 69.19501, 142.68381, 69.19501], "geometry": {"coordinates": [142.68381, 69.19501], "type": "Point"}, "id": "757", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.43, "brightness": 322.69, "confidence": 37, "daynight": "D", "frp": 17.59, "instrument": "MODIS", "latitude": 69.19501, "longitude": 142.68381, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.34148, 69.19635, 143.34148, 69.19635], "geometry": {"coordinates": [143.34148, 69.19635], "type": "Point"}, "id": "758", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 287.67, "brightness": 336.02, "confidence": 67, "daynight": "D", "frp": 37.58, "instrument": "MODIS", "latitude": 69.19635, "longitude": 143.34148, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.50002, 69.19855, 142.50002, 69.19855], "geometry": {"coordinates": [142.50002, 69.19855], "type": "Point"}, "id": "759", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 294.41, "brightness": 336.96, "confidence": 89, "daynight": "D", "frp": 38.46, "instrument": "MODIS", "latitude": 69.19855, "longitude": 142.50002, "satellite": "Terra", "scan": 1.1, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.65924, 69.19978, 142.65924, 69.19978], "geometry": {"coordinates": [142.65924, 69.19978], "type": "Point"}, "id": "760", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 294.02, "brightness": 322.28, "confidence": 26, "daynight": "D", "frp": 16.75, "instrument": "MODIS", "latitude": 69.19978, "longitude": 142.65924, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.63457, 69.20455, 142.63457, 69.20455], "geometry": {"coordinates": [142.63457, 69.20455], "type": "Point"}, "id": "761", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 294.81, "brightness": 338.29, "confidence": 66, "daynight": "D", "frp": 39.07, "instrument": "MODIS", "latitude": 69.20455, "longitude": 142.63457, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.57298, 69.20578, 142.57298, 69.20578], "geometry": {"coordinates": [142.57298, 69.20578], "type": "Point"}, "id": "762", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.83, "brightness": 351.71, "confidence": 96, "daynight": "D", "frp": 67.4, "instrument": "MODIS", "latitude": 69.20578, "longitude": 142.57298, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.51236, 69.20683, 142.51236, 69.20683], "geometry": {"coordinates": [142.51236, 69.20683], "type": "Point"}, "id": "763", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.87, "brightness": 346.17, "confidence": 94, "daynight": "D", "frp": 55.03, "instrument": "MODIS", "latitude": 69.20683, "longitude": 142.51236, "satellite": "Terra", "scan": 1.1, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.60976, 69.20935, 142.60976, 69.20935], "geometry": {"coordinates": [142.60976, 69.20935], "type": "Point"}, "id": "764", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.1, "brightness": 336.26, "confidence": 66, "daynight": "D", "frp": 35.61, "instrument": "MODIS", "latitude": 69.20935, "longitude": 142.60976, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.32968, 69.20961, 143.32968, 69.20961], "geometry": {"coordinates": [143.32968, 69.20961], "type": "Point"}, "id": "765", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 289.83, "brightness": 347.2, "confidence": 95, "daynight": "D", "frp": 58.85, "instrument": "MODIS", "latitude": 69.20961, "longitude": 143.32968, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.54869, 69.21048, 142.54869, 69.21048], "geometry": {"coordinates": [142.54869, 69.21048], "type": "Point"}, "id": "766", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.8, "brightness": 341.28, "confidence": 92, "daynight": "D", "frp": 44.38, "instrument": "MODIS", "latitude": 69.21048, "longitude": 142.54869, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.64729, 69.21278, 142.64729, 69.21278], "geometry": {"coordinates": [142.64729, 69.21278], "type": "Point"}, "id": "767", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.05, "brightness": 337.61, "confidence": 61, "daynight": "D", "frp": 38.12, "instrument": "MODIS", "latitude": 69.21278, "longitude": 142.64729, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.52463, 69.21512, 142.52463, 69.21512], "geometry": {"coordinates": [142.52463, 69.21512], "type": "Point"}, "id": "768", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 306.31, "brightness": 387.98, "confidence": 100, "daynight": "D", "frp": 210.41, "instrument": "MODIS", "latitude": 69.21512, "longitude": 142.52463, "satellite": "Terra", "scan": 1.1, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.50052, 69.21977, 142.50052, 69.21977], "geometry": {"coordinates": [142.50052, 69.21977], "type": "Point"}, "id": "769", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 294.68, "brightness": 344.83, "confidence": 93, "daynight": "D", "frp": 54.47, "instrument": "MODIS", "latitude": 69.21977, "longitude": 142.50052, "satellite": "Terra", "scan": 1.1, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.31778, 69.22287, 143.31778, 69.22287], "geometry": {"coordinates": [143.31778, 69.22287], "type": "Point"}, "id": "770", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 289.78, "brightness": 347.47, "confidence": 95, "daynight": "D", "frp": 59.41, "instrument": "MODIS", "latitude": 69.22287, "longitude": 143.31778, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.30528, 69.23623, 143.30528, 69.23623], "geometry": {"coordinates": [143.30528, 69.23623], "type": "Point"}, "id": "771", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 286.04, "brightness": 328.04, "confidence": 52, "daynight": "D", "frp": 22.53, "instrument": "MODIS", "latitude": 69.23623, "longitude": 143.30528, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.58661, 69.24432, 134.58661, 69.24432], "geometry": {"coordinates": [134.58661, 69.24432], "type": "Point"}, "id": "772", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 299.69, "brightness": 323.93, "confidence": 78, "daynight": "D", "frp": 15.16, "instrument": "MODIS", "latitude": 69.24432, "longitude": 134.58661, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.2933, 69.24947, 143.2933, 69.24947], "geometry": {"coordinates": [143.2933, 69.24947], "type": "Point"}, "id": "773", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 284.58, "brightness": 327.45, "confidence": 29, "daynight": "D", "frp": 21.04, "instrument": "MODIS", "latitude": 69.24947, "longitude": 143.2933, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.20651, 69.25587, 143.20651, 69.25587], "geometry": {"coordinates": [143.20651, 69.25587], "type": "Point"}, "id": "774", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 290.37, "brightness": 338.44, "confidence": 90, "daynight": "D", "frp": 37.09, "instrument": "MODIS", "latitude": 69.25587, "longitude": 143.20651, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.18184, 69.26076, 143.18184, 69.26076], "geometry": {"coordinates": [143.18184, 69.26076], "type": "Point"}, "id": "775", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 287.81, "brightness": 321.28, "confidence": 36, "daynight": "D", "frp": 12.64, "instrument": "MODIS", "latitude": 69.26076, "longitude": 143.18184, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.27072, 69.27565, 143.27072, 69.27565], "geometry": {"coordinates": [143.27072, 69.27565], "type": "Point"}, "id": "776", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 290.55, "brightness": 340.09, "confidence": 74, "daynight": "D", "frp": 42.22, "instrument": "MODIS", "latitude": 69.27565, "longitude": 143.27072, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.02174, 69.28157, 143.02174, 69.28157], "geometry": {"coordinates": [143.02174, 69.28157], "type": "Point"}, "id": "777", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 286.56, "brightness": 336.73, "confidence": 0, "daynight": "D", "frp": 39.22, "instrument": "MODIS", "latitude": 69.28157, "longitude": 143.02174, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.28381, 69.2839, 143.28381, 69.2839], "geometry": {"coordinates": [143.28381, 69.2839], "type": "Point"}, "id": "778", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.01, "brightness": 348.47, "confidence": 90, "daynight": "D", "frp": 61.55, "instrument": "MODIS", "latitude": 69.2839, "longitude": 143.28381, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.22131, 69.28542, 143.22131, 69.28542], "geometry": {"coordinates": [143.22131, 69.28542], "type": "Point"}, "id": "779", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.79, "brightness": 377.31, "confidence": 100, "daynight": "D", "frp": 161.6, "instrument": "MODIS", "latitude": 69.28542, "longitude": 143.22131, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.25905, 69.2888, 143.25905, 69.2888], "geometry": {"coordinates": [143.25905, 69.2888], "type": "Point"}, "id": "780", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.3, "brightness": 356.91, "confidence": 98, "daynight": "D", "frp": 85.47, "instrument": "MODIS", "latitude": 69.2888, "longitude": 143.25905, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.23438, 69.29366, 143.23438, 69.29366], "geometry": {"coordinates": [143.23438, 69.29366], "type": "Point"}, "id": "781", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 290.58, "brightness": 321.03, "confidence": 57, "daynight": "D", "frp": 17.8, "instrument": "MODIS", "latitude": 69.29366, "longitude": 143.23438, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.27206, 69.29705, 143.27206, 69.29705], "geometry": {"coordinates": [143.27206, 69.29705], "type": "Point"}, "id": "782", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.34, "brightness": 364.43, "confidence": 87, "daynight": "D", "frp": 111.1, "instrument": "MODIS", "latitude": 69.29705, "longitude": 143.27206, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.62372, 69.29723, 134.62372, 69.29723], "geometry": {"coordinates": [134.62372, 69.29723], "type": "Point"}, "id": "783", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.68, "brightness": 322.09, "confidence": 49, "daynight": "D", "frp": 11.3, "instrument": "MODIS", "latitude": 69.29723, "longitude": 134.62372, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.66629, 69.31076, 134.66629, 69.31076], "geometry": {"coordinates": [134.66629, 69.31076], "type": "Point"}, "id": "784", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 300.32, "brightness": 339.55, "confidence": 90, "daynight": "D", "frp": 34.83, "instrument": "MODIS", "latitude": 69.31076, "longitude": 134.66629, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.64223, 69.31407, 134.64223, 69.31407], "geometry": {"coordinates": [134.64223, 69.31407], "type": "Point"}, "id": "785", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 302.0, "brightness": 332.04, "confidence": 84, "daynight": "D", "frp": 23.42, "instrument": "MODIS", "latitude": 69.31407, "longitude": 134.64223, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.60332, 69.32912, 134.60332, 69.32912], "geometry": {"coordinates": [134.60332, 69.32912], "type": "Point"}, "id": "786", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 301.87, "brightness": 328.93, "confidence": 79, "daynight": "D", "frp": 21.51, "instrument": "MODIS", "latitude": 69.32912, "longitude": 134.60332, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.62166, 70.03889, 141.62166, 70.03889], "geometry": {"coordinates": [141.62166, 70.03889], "type": "Point"}, "id": "787", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.38, "brightness": 328.62, "confidence": 84, "daynight": "D", "frp": 20.31, "instrument": "MODIS", "latitude": 70.03889, "longitude": 141.62166, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.6582, 70.04265, 141.6582, 70.04265], "geometry": {"coordinates": [141.6582, 70.04265], "type": "Point"}, "id": "788", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.58, "brightness": 333.39, "confidence": 87, "daynight": "D", "frp": 26.81, "instrument": "MODIS", "latitude": 70.04265, "longitude": 141.6582, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.59761, 70.04321, 141.59761, 70.04321], "geometry": {"coordinates": [141.59761, 70.04321], "type": "Point"}, "id": "789", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.08, "brightness": 316.28, "confidence": 22, "daynight": "D", "frp": 6.75, "instrument": "MODIS", "latitude": 70.04321, "longitude": 141.59761, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.69478, 70.04639, 141.69478, 70.04639], "geometry": {"coordinates": [141.69478, 70.04639], "type": "Point"}, "id": "790", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.93, "brightness": 337.46, "confidence": 89, "daynight": "D", "frp": 33.95, "instrument": "MODIS", "latitude": 70.04639, "longitude": 141.69478, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.60999, 70.05131, 141.60999, 70.05131], "geometry": {"coordinates": [141.60999, 70.05131], "type": "Point"}, "id": "791", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.03, "brightness": 315.51, "confidence": 50, "daynight": "D", "frp": 5.8, "instrument": "MODIS", "latitude": 70.05131, "longitude": 141.60999, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.70717, 70.05449, 141.70717, 70.05449], "geometry": {"coordinates": [141.70717, 70.05449], "type": "Point"}, "id": "792", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 298.06, "brightness": 332.52, "confidence": 86, "daynight": "D", "frp": 25.65, "instrument": "MODIS", "latitude": 70.05449, "longitude": 141.70717, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.74376, 70.05823, 141.74376, 70.05823], "geometry": {"coordinates": [141.74376, 70.05823], "type": "Point"}, "id": "793", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 295.76, "brightness": 325.94, "confidence": 66, "daynight": "D", "frp": 17.89, "instrument": "MODIS", "latitude": 70.05823, "longitude": 141.74376, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.71959, 70.06258, 141.71959, 70.06258], "geometry": {"coordinates": [141.71959, 70.06258], "type": "Point"}, "id": "794", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.08, "brightness": 340.33, "confidence": 91, "daynight": "D", "frp": 38.66, "instrument": "MODIS", "latitude": 70.06258, "longitude": 141.71959, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.75623, 70.06632, 141.75623, 70.06632], "geometry": {"coordinates": [141.75623, 70.06632], "type": "Point"}, "id": "795", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 297.59, "brightness": 340.69, "confidence": 91, "daynight": "D", "frp": 40.28, "instrument": "MODIS", "latitude": 70.06632, "longitude": 141.75623, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.76863, 70.07442, 141.76863, 70.07442], "geometry": {"coordinates": [141.76863, 70.07442], "type": "Point"}, "id": "796", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.82, "brightness": 327.12, "confidence": 51, "daynight": "D", "frp": 20.18, "instrument": "MODIS", "latitude": 70.07442, "longitude": 141.76863, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.80534, 70.07815, 141.80534, 70.07815], "geometry": {"coordinates": [141.80534, 70.07815], "type": "Point"}, "id": "797", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 289.69, "brightness": 321.36, "confidence": 67, "daynight": "D", "frp": 14.62, "instrument": "MODIS", "latitude": 70.07815, "longitude": 141.80534, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.81786, 70.08624, 141.81786, 70.08624], "geometry": {"coordinates": [141.81786, 70.08624], "type": "Point"}, "id": "798", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 289.03, "brightness": 325.81, "confidence": 74, "daynight": "D", "frp": 19.85, "instrument": "MODIS", "latitude": 70.08624, "longitude": 141.81786, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.83037, 70.09432, 141.83037, 70.09432], "geometry": {"coordinates": [141.83037, 70.09432], "type": "Point"}, "id": "799", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 290.18, "brightness": 325.03, "confidence": 61, "daynight": "D", "frp": 19.08, "instrument": "MODIS", "latitude": 70.09432, "longitude": 141.83037, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.84688, 70.10056, 141.84688, 70.10056], "geometry": {"coordinates": [141.84688, 70.10056], "type": "Point"}, "id": "800", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.48, "brightness": 331.87, "confidence": 86, "daynight": "D", "frp": 27.76, "instrument": "MODIS", "latitude": 70.10056, "longitude": 141.84688, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.85938, 70.10865, 141.85938, 70.10865], "geometry": {"coordinates": [141.85938, 70.10865], "type": "Point"}, "id": "801", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 296.23, "brightness": 349.36, "confidence": 95, "daynight": "D", "frp": 59.91, "instrument": "MODIS", "latitude": 70.10865, "longitude": 141.85938, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.8351, 70.11304, 141.8351, 70.11304], "geometry": {"coordinates": [141.8351, 70.11304], "type": "Point"}, "id": "802", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 294.07, "brightness": 322.3, "confidence": 79, "daynight": "D", "frp": 16.31, "instrument": "MODIS", "latitude": 70.11304, "longitude": 141.8351, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.87187, 70.11674, 141.87187, 70.11674], "geometry": {"coordinates": [141.87187, 70.11674], "type": "Point"}, "id": "803", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 290.52, "brightness": 338.37, "confidence": 90, "daynight": "D", "frp": 37.57, "instrument": "MODIS", "latitude": 70.11674, "longitude": 141.87187, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.8476, 70.12112, 141.8476, 70.12112], "geometry": {"coordinates": [141.8476, 70.12112], "type": "Point"}, "id": "804", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.12, "brightness": 345.59, "confidence": 94, "daynight": "D", "frp": 50.6, "instrument": "MODIS", "latitude": 70.12112, "longitude": 141.8476, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.86012, 70.12921, 141.86012, 70.12921], "geometry": {"coordinates": [141.86012, 70.12921], "type": "Point"}, "id": "805", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 289.82, "brightness": 345.59, "confidence": 88, "daynight": "D", "frp": 51.46, "instrument": "MODIS", "latitude": 70.12921, "longitude": 141.86012, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.87268, 70.13729, 141.87268, 70.13729], "geometry": {"coordinates": [141.87268, 70.13729], "type": "Point"}, "id": "806", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.83, "brightness": 326.47, "confidence": 67, "daynight": "D", "frp": 21.8, "instrument": "MODIS", "latitude": 70.13729, "longitude": 141.87268, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.52367, 70.13986, 140.52367, 70.13986], "geometry": {"coordinates": [140.52367, 70.13986], "type": "Point"}, "id": "807", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 283.86, "brightness": 336.06, "confidence": 88, "daynight": "D", "frp": 33.54, "instrument": "MODIS", "latitude": 70.13986, "longitude": 140.52367, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.2068, 70.15314, 140.2068, 70.15314], "geometry": {"coordinates": [140.2068, 70.15314], "type": "Point"}, "id": "808", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 283.83, "brightness": 325.7, "confidence": 76, "daynight": "D", "frp": 19.52, "instrument": "MODIS", "latitude": 70.15314, "longitude": 140.2068, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.24258, 70.15719, 140.24258, 70.15719], "geometry": {"coordinates": [140.24258, 70.15719], "type": "Point"}, "id": "809", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 289.79, "brightness": 337.73, "confidence": 89, "daynight": "D", "frp": 36.45, "instrument": "MODIS", "latitude": 70.15719, "longitude": 140.24258, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.82503, 70.16653, 141.82503, 70.16653], "geometry": {"coordinates": [141.82503, 70.16653], "type": "Point"}, "id": "810", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.39, "brightness": 328.9, "confidence": 73, "daynight": "D", "frp": 25.14, "instrument": "MODIS", "latitude": 70.16653, "longitude": 141.82503, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.8008, 70.17087, 141.8008, 70.17087], "geometry": {"coordinates": [141.8008, 70.17087], "type": "Point"}, "id": "811", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.95, "brightness": 313.74, "confidence": 62, "daynight": "D", "frp": 8.63, "instrument": "MODIS", "latitude": 70.17087, "longitude": 141.8008, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.33191, 70.17249, 140.33191, 70.17249], "geometry": {"coordinates": [140.33191, 70.17249], "type": "Point"}, "id": "812", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 288.16, "brightness": 317.47, "confidence": 72, "daynight": "D", "frp": 12.88, "instrument": "MODIS", "latitude": 70.17249, "longitude": 140.33191, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.0275, 70.17313, 140.0275, 70.17313], "geometry": {"coordinates": [140.0275, 70.17313], "type": "Point"}, "id": "813", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 288.57, "brightness": 311.92, "confidence": 51, "daynight": "D", "frp": 7.67, "instrument": "MODIS", "latitude": 70.17313, "longitude": 140.0275, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.65477, 70.17635, 141.65477, 70.17635], "geometry": {"coordinates": [141.65477, 70.17635], "type": "Point"}, "id": "814", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 289.96, "brightness": 315.16, "confidence": 0, "daynight": "D", "frp": 9.37, "instrument": "MODIS", "latitude": 70.17635, "longitude": 141.65477, "satellite": "Terra", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.00346, 70.17714, 140.00346, 70.17714], "geometry": {"coordinates": [140.00346, 70.17714], "type": "Point"}, "id": "815", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 289.21, "brightness": 312.99, "confidence": 63, "daynight": "D", "frp": 8.54, "instrument": "MODIS", "latitude": 70.17714, "longitude": 140.00346, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.50911, 70.18169, 141.50911, 70.18169], "geometry": {"coordinates": [141.50911, 70.18169], "type": "Point"}, "id": "816", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 288.36, "brightness": 310.86, "confidence": 32, "daynight": "D", "frp": 7.25, "instrument": "MODIS", "latitude": 70.18169, "longitude": 141.50911, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.44849, 70.18216, 141.44849, 70.18216], "geometry": {"coordinates": [141.44849, 70.18216], "type": "Point"}, "id": "817", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 290.42, "brightness": 316.35, "confidence": 37, "daynight": "D", "frp": 10.95, "instrument": "MODIS", "latitude": 70.18216, "longitude": 141.44849, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.42429, 70.18645, 141.42429, 70.18645], "geometry": {"coordinates": [141.42429, 70.18645], "type": "Point"}, "id": "818", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 290.29, "brightness": 320.96, "confidence": 77, "daynight": "D", "frp": 15.87, "instrument": "MODIS", "latitude": 70.18645, "longitude": 141.42429, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.65512, 70.18827, 140.65512, 70.18827], "geometry": {"coordinates": [140.65512, 70.18827], "type": "Point"}, "id": "819", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.6, "brightness": 333.43, "confidence": 73, "daynight": "D", "frp": 29.76, "instrument": "MODIS", "latitude": 70.18827, "longitude": 140.65512, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.40007, 70.19073, 141.40007, 70.19073], "geometry": {"coordinates": [141.40007, 70.19073], "type": "Point"}, "id": "820", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 288.89, "brightness": 316.57, "confidence": 64, "daynight": "D", "frp": 11.59, "instrument": "MODIS", "latitude": 70.19073, "longitude": 141.40007, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.69112, 70.19225, 140.69112, 70.19225], "geometry": {"coordinates": [140.69112, 70.19225], "type": "Point"}, "id": "821", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 289.32, "brightness": 328.35, "confidence": 33, "daynight": "D", "frp": 22.36, "instrument": "MODIS", "latitude": 70.19225, "longitude": 140.69112, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.37593, 70.19498, 141.37593, 70.19498], "geometry": {"coordinates": [141.37593, 70.19498], "type": "Point"}, "id": "822", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 286.39, "brightness": 310.77, "confidence": 18, "daynight": "D", "frp": 6.48, "instrument": "MODIS", "latitude": 70.19498, "longitude": 141.37593, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.70747, 70.19958, 140.70747, 70.19958], "geometry": {"coordinates": [140.70747, 70.19958], "type": "Point"}, "id": "823", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 289.03, "brightness": 324.03, "confidence": 24, "daynight": "D", "frp": 16.3, "instrument": "MODIS", "latitude": 70.19958, "longitude": 140.70747, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.11606, 70.20884, 140.11606, 70.20884], "geometry": {"coordinates": [140.11606, 70.20884], "type": "Point"}, "id": "824", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 293.67, "brightness": 315.32, "confidence": 68, "daynight": "D", "frp": 9.24, "instrument": "MODIS", "latitude": 70.20884, "longitude": 140.11606, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.23564, 70.20889, 140.23564, 70.20889], "geometry": {"coordinates": [140.23564, 70.20889], "type": "Point"}, "id": "825", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.21, "brightness": 325.45, "confidence": 80, "daynight": "D", "frp": 19.88, "instrument": "MODIS", "latitude": 70.20889, "longitude": 140.23564, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.21159, 70.21294, 140.21159, 70.21294], "geometry": {"coordinates": [140.21159, 70.21294], "type": "Point"}, "id": "826", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.2, "brightness": 312.51, "confidence": 41, "daynight": "D", "frp": 7.31, "instrument": "MODIS", "latitude": 70.21294, "longitude": 140.21159, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.31586, 70.21581, 141.31586, 70.21581], "geometry": {"coordinates": [141.31586, 70.21581], "type": "Point"}, "id": "827", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 284.92, "brightness": 324.65, "confidence": 53, "daynight": "D", "frp": 18.23, "instrument": "MODIS", "latitude": 70.21581, "longitude": 141.31586, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.30399, 70.22813, 141.30399, 70.22813], "geometry": {"coordinates": [141.30399, 70.22813], "type": "Point"}, "id": "828", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 289.55, "brightness": 338.44, "confidence": 70, "daynight": "D", "frp": 37.42, "instrument": "MODIS", "latitude": 70.22813, "longitude": 141.30399, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.41885, 70.269, 140.41885, 70.269], "geometry": {"coordinates": [140.41885, 70.269], "type": "Point"}, "id": "829", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 294.16, "brightness": 354.97, "confidence": 98, "daynight": "D", "frp": 70.2, "instrument": "MODIS", "latitude": 70.269, "longitude": 140.41885, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.39481, 70.27306, 140.39481, 70.27306], "geometry": {"coordinates": [140.39481, 70.27306], "type": "Point"}, "id": "830", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 291.03, "brightness": 347.05, "confidence": 94, "daynight": "D", "frp": 53.0, "instrument": "MODIS", "latitude": 70.27306, "longitude": 140.39481, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.40668, 70.28115, 140.40668, 70.28115], "geometry": {"coordinates": [140.40668, 70.28115], "type": "Point"}, "id": "831", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 290.97, "brightness": 339.0, "confidence": 90, "daynight": "D", "frp": 37.7, "instrument": "MODIS", "latitude": 70.28115, "longitude": 140.40668, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.58678, 70.30119, 140.58678, 70.30119], "geometry": {"coordinates": [140.58678, 70.30119], "type": "Point"}, "id": "832", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 292.38, "brightness": 328.38, "confidence": 43, "daynight": "D", "frp": 20.77, "instrument": "MODIS", "latitude": 70.30119, "longitude": 140.58678, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.4299, 70.33776, 140.4299, 70.33776], "geometry": {"coordinates": [140.4299, 70.33776], "type": "Point"}, "id": "833", "properties": {"acq_date": "2024-07-11", "acq_time": 204, "bright_t31": 288.0, "brightness": 339.94, "confidence": 79, "daynight": "D", "frp": 39.31, "instrument": "MODIS", "latitude": 70.33776, "longitude": 140.4299, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.64275, 58.93661, 131.64275, 58.93661], "geometry": {"coordinates": [131.64275, 58.93661], "type": "Point"}, "id": "834", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 293.03, "brightness": 322.4, "confidence": 81, "daynight": "D", "frp": 19.83, "instrument": "MODIS", "latitude": 58.93661, "longitude": 131.64275, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.62474, 58.93984, 131.62474, 58.93984], "geometry": {"coordinates": [131.62474, 58.93984], "type": "Point"}, "id": "835", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 292.84, "brightness": 311.11, "confidence": 69, "daynight": "D", "frp": 8.54, "instrument": "MODIS", "latitude": 58.93984, "longitude": 131.62474, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.8873, 58.97401, 130.8873, 58.97401], "geometry": {"coordinates": [130.8873, 58.97401], "type": "Point"}, "id": "836", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 293.73, "brightness": 314.41, "confidence": 65, "daynight": "D", "frp": 10.19, "instrument": "MODIS", "latitude": 58.97401, "longitude": 130.8873, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.25061, 58.98915, 131.25061, 58.98915], "geometry": {"coordinates": [131.25061, 58.98915], "type": "Point"}, "id": "837", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 295.18, "brightness": 321.51, "confidence": 78, "daynight": "D", "frp": 17.15, "instrument": "MODIS", "latitude": 58.98915, "longitude": 131.25061, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.67787, 59.01967, 131.67787, 59.01967], "geometry": {"coordinates": [131.67787, 59.01967], "type": "Point"}, "id": "838", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 293.96, "brightness": 324.35, "confidence": 82, "daynight": "D", "frp": 22.0, "instrument": "MODIS", "latitude": 59.01967, "longitude": 131.67787, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.70499, 59.02148, 131.70499, 59.02148], "geometry": {"coordinates": [131.70499, 59.02148], "type": "Point"}, "id": "839", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 294.41, "brightness": 326.98, "confidence": 34, "daynight": "D", "frp": 21.79, "instrument": "MODIS", "latitude": 59.02148, "longitude": 131.70499, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.65976, 59.02288, 131.65976, 59.02288], "geometry": {"coordinates": [131.65976, 59.02288], "type": "Point"}, "id": "840", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 293.82, "brightness": 316.99, "confidence": 75, "daynight": "D", "frp": 13.66, "instrument": "MODIS", "latitude": 59.02288, "longitude": 131.65976, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.6869, 59.02473, 131.6869, 59.02473], "geometry": {"coordinates": [131.6869, 59.02473], "type": "Point"}, "id": "841", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 295.88, "brightness": 353.32, "confidence": 97, "daynight": "D", "frp": 72.1, "instrument": "MODIS", "latitude": 59.02473, "longitude": 131.6869, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.66879, 59.02798, 131.66879, 59.02798], "geometry": {"coordinates": [131.66879, 59.02798], "type": "Point"}, "id": "842", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 295.56, "brightness": 332.66, "confidence": 77, "daynight": "D", "frp": 29.51, "instrument": "MODIS", "latitude": 59.02798, "longitude": 131.66879, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.69278, 59.0336, 131.69278, 59.0336], "geometry": {"coordinates": [131.69278, 59.0336], "type": "Point"}, "id": "843", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 292.21, "brightness": 326.75, "confidence": 42, "daynight": "D", "frp": 20.51, "instrument": "MODIS", "latitude": 59.0336, "longitude": 131.69278, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.11855, 59.04899, 131.11855, 59.04899], "geometry": {"coordinates": [131.11855, 59.04899], "type": "Point"}, "id": "844", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 295.36, "brightness": 314.69, "confidence": 73, "daynight": "D", "frp": 8.4, "instrument": "MODIS", "latitude": 59.04899, "longitude": 131.11855, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.82692, 59.06209, 130.82692, 59.06209], "geometry": {"coordinates": [130.82692, 59.06209], "type": "Point"}, "id": "845", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 294.92, "brightness": 319.2, "confidence": 68, "daynight": "D", "frp": 13.34, "instrument": "MODIS", "latitude": 59.06209, "longitude": 130.82692, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.48235, 59.08098, 131.48235, 59.08098], "geometry": {"coordinates": [131.48235, 59.08098], "type": "Point"}, "id": "846", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 293.58, "brightness": 315.26, "confidence": 60, "daynight": "D", "frp": 9.66, "instrument": "MODIS", "latitude": 59.08098, "longitude": 131.48235, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.14659, 59.09298, 131.14659, 59.09298], "geometry": {"coordinates": [131.14659, 59.09298], "type": "Point"}, "id": "847", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 295.33, "brightness": 309.5, "confidence": 12, "daynight": "D", "frp": 4.34, "instrument": "MODIS", "latitude": 59.09298, "longitude": 131.14659, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.79634, 59.09486, 130.79634, 59.09486], "geometry": {"coordinates": [130.79634, 59.09486], "type": "Point"}, "id": "848", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 294.66, "brightness": 320.06, "confidence": 78, "daynight": "D", "frp": 15.57, "instrument": "MODIS", "latitude": 59.09486, "longitude": 130.79634, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.15245, 59.10174, 131.15245, 59.10174], "geometry": {"coordinates": [131.15245, 59.10174], "type": "Point"}, "id": "849", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 295.05, "brightness": 318.59, "confidence": 76, "daynight": "D", "frp": 11.85, "instrument": "MODIS", "latitude": 59.10174, "longitude": 131.15245, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.15862, 59.24313, 131.15862, 59.24313], "geometry": {"coordinates": [131.15862, 59.24313], "type": "Point"}, "id": "850", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.88, "brightness": 372.41, "confidence": 100, "daynight": "D", "frp": 128.72, "instrument": "MODIS", "latitude": 59.24313, "longitude": 131.15862, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.2234, 59.25144, 131.2234, 59.25144], "geometry": {"coordinates": [131.2234, 59.25144], "type": "Point"}, "id": "851", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.87, "brightness": 327.29, "confidence": 56, "daynight": "D", "frp": 19.62, "instrument": "MODIS", "latitude": 59.25144, "longitude": 131.2234, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.98126, 59.3028, 130.98126, 59.3028], "geometry": {"coordinates": [130.98126, 59.3028], "type": "Point"}, "id": "852", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 297.0, "brightness": 312.3, "confidence": 61, "daynight": "D", "frp": 5.37, "instrument": "MODIS", "latitude": 59.3028, "longitude": 130.98126, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.42165, 59.30297, 131.42165, 59.30297], "geometry": {"coordinates": [131.42165, 59.30297], "type": "Point"}, "id": "853", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 297.78, "brightness": 354.94, "confidence": 98, "daynight": "D", "frp": 73.96, "instrument": "MODIS", "latitude": 59.30297, "longitude": 131.42165, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.46368, 59.30544, 131.46368, 59.30544], "geometry": {"coordinates": [131.46368, 59.30544], "type": "Point"}, "id": "854", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 291.66, "brightness": 320.63, "confidence": 22, "daynight": "D", "frp": 13.01, "instrument": "MODIS", "latitude": 59.30544, "longitude": 131.46368, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.96365, 59.3058, 130.96365, 59.3058], "geometry": {"coordinates": [130.96365, 59.3058], "type": "Point"}, "id": "855", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 296.57, "brightness": 311.11, "confidence": 57, "daynight": "D", "frp": 4.59, "instrument": "MODIS", "latitude": 59.3058, "longitude": 130.96365, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.40395, 59.30606, 131.40395, 59.30606], "geometry": {"coordinates": [131.40395, 59.30606], "type": "Point"}, "id": "856", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 297.33, "brightness": 337.04, "confidence": 89, "daynight": "D", "frp": 35.77, "instrument": "MODIS", "latitude": 59.30606, "longitude": 131.40395, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.06329, 59.30822, 131.06329, 59.30822], "geometry": {"coordinates": [131.06329, 59.30822], "type": "Point"}, "id": "857", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.7, "brightness": 322.91, "confidence": 80, "daynight": "D", "frp": 16.39, "instrument": "MODIS", "latitude": 59.30822, "longitude": 131.06329, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.44566, 59.30859, 131.44566, 59.30859], "geometry": {"coordinates": [131.44566, 59.30859], "type": "Point"}, "id": "858", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 291.53, "brightness": 327.96, "confidence": 79, "daynight": "D", "frp": 22.84, "instrument": "MODIS", "latitude": 59.30859, "longitude": 131.44566, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.42757, 59.31174, 131.42757, 59.31174], "geometry": {"coordinates": [131.42757, 59.31174], "type": "Point"}, "id": "859", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 292.65, "brightness": 324.19, "confidence": 43, "daynight": "D", "frp": 17.89, "instrument": "MODIS", "latitude": 59.31174, "longitude": 131.42757, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.06889, 59.31697, 131.06889, 59.31697], "geometry": {"coordinates": [131.06889, 59.31697], "type": "Point"}, "id": "860", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.86, "brightness": 326.24, "confidence": 83, "daynight": "D", "frp": 19.55, "instrument": "MODIS", "latitude": 59.31697, "longitude": 131.06889, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.7174, 60.09749, 120.7174, 60.09749], "geometry": {"coordinates": [120.7174, 60.09749], "type": "Point"}, "id": "861", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.33, "brightness": 319.26, "confidence": 39, "daynight": "D", "frp": 18.52, "instrument": "MODIS", "latitude": 60.09749, "longitude": 120.7174, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [118.85025, 60.16081, 118.85025, 60.16081], "geometry": {"coordinates": [118.85025, 60.16081], "type": "Point"}, "id": "862", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 296.65, "brightness": 328.03, "confidence": 84, "daynight": "D", "frp": 45.53, "instrument": "MODIS", "latitude": 60.16081, "longitude": 118.85025, "satellite": "Terra", "scan": 1.67, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.71501, 60.17295, 120.71501, 60.17295], "geometry": {"coordinates": [120.71501, 60.17295], "type": "Point"}, "id": "863", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.15, "brightness": 327.48, "confidence": 67, "daynight": "D", "frp": 31.86, "instrument": "MODIS", "latitude": 60.17295, "longitude": 120.71501, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.69811, 60.17944, 120.69811, 60.17944], "geometry": {"coordinates": [120.69811, 60.17944], "type": "Point"}, "id": "864", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.85, "brightness": 338.22, "confidence": 85, "daynight": "D", "frp": 58.16, "instrument": "MODIS", "latitude": 60.17944, "longitude": 120.69811, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.6767, 60.19199, 120.6767, 60.19199], "geometry": {"coordinates": [120.6767, 60.19199], "type": "Point"}, "id": "865", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 298.71, "brightness": 319.45, "confidence": 66, "daynight": "D", "frp": 18.57, "instrument": "MODIS", "latitude": 60.19199, "longitude": 120.6767, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.07138, 60.33281, 122.07138, 60.33281], "geometry": {"coordinates": [122.07138, 60.33281], "type": "Point"}, "id": "866", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.34, "brightness": 324.6, "confidence": 38, "daynight": "D", "frp": 21.14, "instrument": "MODIS", "latitude": 60.33281, "longitude": 122.07138, "satellite": "Terra", "scan": 1.3, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.04809, 60.33498, 122.04809, 60.33498], "geometry": {"coordinates": [122.04809, 60.33498], "type": "Point"}, "id": "867", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.88, "brightness": 336.37, "confidence": 85, "daynight": "D", "frp": 43.1, "instrument": "MODIS", "latitude": 60.33498, "longitude": 122.04809, "satellite": "Terra", "scan": 1.3, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.12127, 60.33845, 122.12127, 60.33845], "geometry": {"coordinates": [122.12127, 60.33845], "type": "Point"}, "id": "868", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 302.11, "brightness": 330.05, "confidence": 66, "daynight": "D", "frp": 29.47, "instrument": "MODIS", "latitude": 60.33845, "longitude": 122.12127, "satellite": "Terra", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.21753, 60.33964, 122.21753, 60.33964], "geometry": {"coordinates": [122.21753, 60.33964], "type": "Point"}, "id": "869", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.72, "brightness": 323.25, "confidence": 50, "daynight": "D", "frp": 19.59, "instrument": "MODIS", "latitude": 60.33964, "longitude": 122.21753, "satellite": "Terra", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.09815, 60.34062, 122.09815, 60.34062], "geometry": {"coordinates": [122.09815, 60.34062], "type": "Point"}, "id": "870", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 303.77, "brightness": 328.77, "confidence": 54, "daynight": "D", "frp": 26.1, "instrument": "MODIS", "latitude": 60.34062, "longitude": 122.09815, "satellite": "Terra", "scan": 1.3, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.19476, 60.3418, 122.19476, 60.3418], "geometry": {"coordinates": [122.19476, 60.3418], "type": "Point"}, "id": "871", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.29, "brightness": 324.96, "confidence": 43, "daynight": "D", "frp": 20.52, "instrument": "MODIS", "latitude": 60.3418, "longitude": 122.19476, "satellite": "Terra", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.02909, 60.34707, 122.02909, 60.34707], "geometry": {"coordinates": [122.02909, 60.34707], "type": "Point"}, "id": "872", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.15, "brightness": 326.74, "confidence": 55, "daynight": "D", "frp": 24.87, "instrument": "MODIS", "latitude": 60.34707, "longitude": 122.02909, "satellite": "Terra", "scan": 1.3, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.00617, 60.3492, 122.00617, 60.3492], "geometry": {"coordinates": [122.00617, 60.3492], "type": "Point"}, "id": "873", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 298.97, "brightness": 322.58, "confidence": 61, "daynight": "D", "frp": 20.5, "instrument": "MODIS", "latitude": 60.3492, "longitude": 122.00617, "satellite": "Terra", "scan": 1.31, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.205, 60.37166, 122.205, 60.37166], "geometry": {"coordinates": [122.205, 60.37166], "type": "Point"}, "id": "874", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.88, "brightness": 324.83, "confidence": 30, "daynight": "D", "frp": 19.15, "instrument": "MODIS", "latitude": 60.37166, "longitude": 122.205, "satellite": "Terra", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.11368, 60.38038, 122.11368, 60.38038], "geometry": {"coordinates": [122.11368, 60.38038], "type": "Point"}, "id": "875", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.22, "brightness": 331.24, "confidence": 63, "daynight": "D", "frp": 31.81, "instrument": "MODIS", "latitude": 60.38038, "longitude": 122.11368, "satellite": "Terra", "scan": 1.3, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.09041, 60.38259, 122.09041, 60.38259], "geometry": {"coordinates": [122.09041, 60.38259], "type": "Point"}, "id": "876", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.72, "brightness": 335.5, "confidence": 73, "daynight": "D", "frp": 41.23, "instrument": "MODIS", "latitude": 60.38259, "longitude": 122.09041, "satellite": "Terra", "scan": 1.3, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.04373, 60.38702, 122.04373, 60.38702], "geometry": {"coordinates": [122.04373, 60.38702], "type": "Point"}, "id": "877", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 298.2, "brightness": 320.12, "confidence": 31, "daynight": "D", "frp": 18.25, "instrument": "MODIS", "latitude": 60.38702, "longitude": 122.04373, "satellite": "Terra", "scan": 1.3, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [121.18427, 60.41221, 121.18427, 60.41221], "geometry": {"coordinates": [121.18427, 60.41221], "type": "Point"}, "id": "878", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.91, "brightness": 318.78, "confidence": 58, "daynight": "D", "frp": 17.59, "instrument": "MODIS", "latitude": 60.41221, "longitude": 121.18427, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [121.23742, 60.41824, 121.23742, 60.41824], "geometry": {"coordinates": [121.23742, 60.41824], "type": "Point"}, "id": "879", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.02, "brightness": 330.78, "confidence": 85, "daynight": "D", "frp": 38.13, "instrument": "MODIS", "latitude": 60.41824, "longitude": 121.23742, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [121.21237, 60.4204, 121.21237, 60.4204], "geometry": {"coordinates": [121.21237, 60.4204], "type": "Point"}, "id": "880", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.14, "brightness": 328.71, "confidence": 84, "daynight": "D", "frp": 34.27, "instrument": "MODIS", "latitude": 60.4204, "longitude": 121.21237, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [121.9938, 60.49369, 121.9938, 60.49369], "geometry": {"coordinates": [121.9938, 60.49369], "type": "Point"}, "id": "881", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 295.88, "brightness": 308.62, "confidence": 45, "daynight": "D", "frp": 7.54, "instrument": "MODIS", "latitude": 60.49369, "longitude": 121.9938, "satellite": "Terra", "scan": 1.31, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [121.97047, 60.49589, 121.97047, 60.49589], "geometry": {"coordinates": [121.97047, 60.49589], "type": "Point"}, "id": "882", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 296.35, "brightness": 313.95, "confidence": 68, "daynight": "D", "frp": 13.52, "instrument": "MODIS", "latitude": 60.49589, "longitude": 121.97047, "satellite": "Terra", "scan": 1.31, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [119.2084, 60.56612, 119.2084, 60.56612], "geometry": {"coordinates": [119.2084, 60.56612], "type": "Point"}, "id": "883", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.53, "brightness": 316.22, "confidence": 44, "daynight": "D", "frp": 16.97, "instrument": "MODIS", "latitude": 60.56612, "longitude": 119.2084, "satellite": "Terra", "scan": 1.64, "track": 1.26, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [119.20322, 60.56702, 119.20322, 60.56702], "geometry": {"coordinates": [119.20322, 60.56702], "type": "Point"}, "id": "884", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.88, "brightness": 320.73, "confidence": 42, "daynight": "D", "frp": 23.96, "instrument": "MODIS", "latitude": 60.56702, "longitude": 119.20322, "satellite": "Terra", "scan": 1.64, "track": 1.26, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [119.18287, 60.57932, 119.18287, 60.57932], "geometry": {"coordinates": [119.18287, 60.57932], "type": "Point"}, "id": "885", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.67, "brightness": 319.19, "confidence": 75, "daynight": "D", "frp": 22.95, "instrument": "MODIS", "latitude": 60.57932, "longitude": 119.18287, "satellite": "Terra", "scan": 1.65, "track": 1.26, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [118.10365, 60.59579, 118.10365, 60.59579], "geometry": {"coordinates": [118.10365, 60.59579], "type": "Point"}, "id": "886", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 295.63, "brightness": 307.82, "confidence": 58, "daynight": "D", "frp": 9.88, "instrument": "MODIS", "latitude": 60.59579, "longitude": 118.10365, "satellite": "Terra", "scan": 1.81, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [118.10667, 60.60751, 118.10667, 60.60751], "geometry": {"coordinates": [118.10667, 60.60751], "type": "Point"}, "id": "887", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.4, "brightness": 364.41, "confidence": 100, "daynight": "D", "frp": 226.34, "instrument": "MODIS", "latitude": 60.60751, "longitude": 118.10667, "satellite": "Terra", "scan": 1.81, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [118.07406, 60.60958, 118.07406, 60.60958], "geometry": {"coordinates": [118.07406, 60.60958], "type": "Point"}, "id": "888", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 302.57, "brightness": 381.36, "confidence": 100, "daynight": "D", "frp": 370.79, "instrument": "MODIS", "latitude": 60.60958, "longitude": 118.07406, "satellite": "Terra", "scan": 1.81, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.02639, 60.71022, 120.02639, 60.71022], "geometry": {"coordinates": [120.02639, 60.71022], "type": "Point"}, "id": "889", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.59, "brightness": 319.77, "confidence": 49, "daynight": "D", "frp": 21.49, "instrument": "MODIS", "latitude": 60.71022, "longitude": 120.02639, "satellite": "Terra", "scan": 1.54, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [121.39207, 60.73184, 121.39207, 60.73184], "geometry": {"coordinates": [121.39207, 60.73184], "type": "Point"}, "id": "890", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 298.83, "brightness": 312.37, "confidence": 63, "daynight": "D", "frp": 11.13, "instrument": "MODIS", "latitude": 60.73184, "longitude": 121.39207, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [121.3719, 60.74423, 121.3719, 60.74423], "geometry": {"coordinates": [121.3719, 60.74423], "type": "Point"}, "id": "891", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 297.66, "brightness": 313.54, "confidence": 37, "daynight": "D", "frp": 11.64, "instrument": "MODIS", "latitude": 60.74423, "longitude": 121.3719, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.06889, 60.82005, 120.06889, 60.82005], "geometry": {"coordinates": [120.06889, 60.82005], "type": "Point"}, "id": "892", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.36, "brightness": 322.67, "confidence": 62, "daynight": "D", "frp": 23.2, "instrument": "MODIS", "latitude": 60.82005, "longitude": 120.06889, "satellite": "Terra", "scan": 1.54, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.04099, 60.82221, 120.04099, 60.82221], "geometry": {"coordinates": [120.04099, 60.82221], "type": "Point"}, "id": "893", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.75, "brightness": 327.51, "confidence": 72, "daynight": "D", "frp": 32.74, "instrument": "MODIS", "latitude": 60.82221, "longitude": 120.04099, "satellite": "Terra", "scan": 1.54, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.01589, 60.83527, 120.01589, 60.83527], "geometry": {"coordinates": [120.01589, 60.83527], "type": "Point"}, "id": "894", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.76, "brightness": 358.94, "confidence": 99, "daynight": "D", "frp": 141.23, "instrument": "MODIS", "latitude": 60.83527, "longitude": 120.01589, "satellite": "Terra", "scan": 1.55, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [119.98762, 60.83746, 119.98762, 60.83746], "geometry": {"coordinates": [119.98762, 60.83746], "type": "Point"}, "id": "895", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 303.04, "brightness": 367.14, "confidence": 100, "daynight": "D", "frp": 188.41, "instrument": "MODIS", "latitude": 60.83746, "longitude": 119.98762, "satellite": "Terra", "scan": 1.55, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [121.09777, 60.83834, 121.09777, 60.83834], "geometry": {"coordinates": [121.09777, 60.83834], "type": "Point"}, "id": "896", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 298.82, "brightness": 319.45, "confidence": 76, "daynight": "D", "frp": 20.34, "instrument": "MODIS", "latitude": 60.83834, "longitude": 121.09777, "satellite": "Terra", "scan": 1.42, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [121.06235, 60.8681, 121.06235, 60.8681], "geometry": {"coordinates": [121.06235, 60.8681], "type": "Point"}, "id": "897", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 296.49, "brightness": 307.21, "confidence": 30, "daynight": "D", "frp": 6.09, "instrument": "MODIS", "latitude": 60.8681, "longitude": 121.06235, "satellite": "Terra", "scan": 1.42, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.63795, 60.97883, 120.63795, 60.97883], "geometry": {"coordinates": [120.63795, 60.97883], "type": "Point"}, "id": "898", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.07, "brightness": 328.49, "confidence": 79, "daynight": "D", "frp": 35.09, "instrument": "MODIS", "latitude": 60.97883, "longitude": 120.63795, "satellite": "Terra", "scan": 1.48, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.61138, 60.98101, 120.61138, 60.98101], "geometry": {"coordinates": [120.61138, 60.98101], "type": "Point"}, "id": "899", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.59, "brightness": 332.0, "confidence": 86, "daynight": "D", "frp": 44.68, "instrument": "MODIS", "latitude": 60.98101, "longitude": 120.61138, "satellite": "Terra", "scan": 1.48, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.66798, 60.98727, 120.66798, 60.98727], "geometry": {"coordinates": [120.66798, 60.98727], "type": "Point"}, "id": "900", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.13, "brightness": 331.82, "confidence": 86, "daynight": "D", "frp": 41.84, "instrument": "MODIS", "latitude": 60.98727, "longitude": 120.66798, "satellite": "Terra", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.64157, 60.98945, 120.64157, 60.98945], "geometry": {"coordinates": [120.64157, 60.98945], "type": "Point"}, "id": "901", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.59, "brightness": 319.62, "confidence": 49, "daynight": "D", "frp": 17.74, "instrument": "MODIS", "latitude": 60.98945, "longitude": 120.64157, "satellite": "Terra", "scan": 1.48, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.6754, 60.9907, 120.6754, 60.9907], "geometry": {"coordinates": [120.6754, 60.9907], "type": "Point"}, "id": "902", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.27, "brightness": 328.63, "confidence": 83, "daynight": "D", "frp": 33.57, "instrument": "MODIS", "latitude": 60.9907, "longitude": 120.6754, "satellite": "Terra", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.72433, 60.9935, 120.72433, 60.9935], "geometry": {"coordinates": [120.72433, 60.9935], "type": "Point"}, "id": "903", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.68, "brightness": 320.51, "confidence": 24, "daynight": "D", "frp": 18.61, "instrument": "MODIS", "latitude": 60.9935, "longitude": 120.72433, "satellite": "Terra", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.76214, 61.00551, 120.76214, 61.00551], "geometry": {"coordinates": [120.76214, 61.00551], "type": "Point"}, "id": "904", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.88, "brightness": 319.22, "confidence": 33, "daynight": "D", "frp": 15.18, "instrument": "MODIS", "latitude": 61.00551, "longitude": 120.76214, "satellite": "Terra", "scan": 1.46, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.45647, 61.01557, 120.45647, 61.01557], "geometry": {"coordinates": [120.45647, 61.01557], "type": "Point"}, "id": "905", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 302.23, "brightness": 341.52, "confidence": 92, "daynight": "D", "frp": 69.34, "instrument": "MODIS", "latitude": 61.01557, "longitude": 120.45647, "satellite": "Terra", "scan": 1.5, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.46348, 61.01831, 120.46348, 61.01831], "geometry": {"coordinates": [120.46348, 61.01831], "type": "Point"}, "id": "906", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 303.36, "brightness": 355.76, "confidence": 98, "daynight": "D", "frp": 120.22, "instrument": "MODIS", "latitude": 61.01831, "longitude": 120.46348, "satellite": "Terra", "scan": 1.5, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.43658, 61.0204, 120.43658, 61.0204], "geometry": {"coordinates": [120.43658, 61.0204], "type": "Point"}, "id": "907", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.69, "brightness": 344.96, "confidence": 93, "daynight": "D", "frp": 78.62, "instrument": "MODIS", "latitude": 61.0204, "longitude": 120.43658, "satellite": "Terra", "scan": 1.5, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.29131, 61.02891, 120.29131, 61.02891], "geometry": {"coordinates": [120.29131, 61.02891], "type": "Point"}, "id": "908", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.79, "brightness": 333.64, "confidence": 29, "daynight": "D", "frp": 45.92, "instrument": "MODIS", "latitude": 61.02891, "longitude": 120.29131, "satellite": "Terra", "scan": 1.52, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.29815, 61.0311, 120.29815, 61.0311], "geometry": {"coordinates": [120.29815, 61.0311], "type": "Point"}, "id": "909", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 303.36, "brightness": 352.72, "confidence": 97, "daynight": "D", "frp": 113.17, "instrument": "MODIS", "latitude": 61.0311, "longitude": 120.29815, "satellite": "Terra", "scan": 1.52, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.96349, 61.03227, 120.96349, 61.03227], "geometry": {"coordinates": [120.96349, 61.03227], "type": "Point"}, "id": "910", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.77, "brightness": 331.42, "confidence": 83, "daynight": "D", "frp": 39.1, "instrument": "MODIS", "latitude": 61.03227, "longitude": 120.96349, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.99313, 61.04058, 120.99313, 61.04058], "geometry": {"coordinates": [120.99313, 61.04058], "type": "Point"}, "id": "911", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.13, "brightness": 317.85, "confidence": 63, "daynight": "D", "frp": 15.02, "instrument": "MODIS", "latitude": 61.04058, "longitude": 120.99313, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.30135, 61.0419, 120.30135, 61.0419], "geometry": {"coordinates": [120.30135, 61.0419], "type": "Point"}, "id": "912", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.6, "brightness": 323.28, "confidence": 34, "daynight": "D", "frp": 26.13, "instrument": "MODIS", "latitude": 61.0419, "longitude": 120.30135, "satellite": "Terra", "scan": 1.52, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.967, 61.04278, 120.967, 61.04278], "geometry": {"coordinates": [120.967, 61.04278], "type": "Point"}, "id": "913", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.32, "brightness": 339.18, "confidence": 90, "daynight": "D", "frp": 57.52, "instrument": "MODIS", "latitude": 61.04278, "longitude": 120.967, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.89095, 61.06001, 120.89095, 61.06001], "geometry": {"coordinates": [120.89095, 61.06001], "type": "Point"}, "id": "914", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 304.5, "brightness": 330.0, "confidence": 63, "daynight": "D", "frp": 31.08, "instrument": "MODIS", "latitude": 61.06001, "longitude": 120.89095, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.9259, 61.06163, 120.9259, 61.06163], "geometry": {"coordinates": [120.9259, 61.06163], "type": "Point"}, "id": "915", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.89, "brightness": 321.44, "confidence": 54, "daynight": "D", "frp": 17.98, "instrument": "MODIS", "latitude": 61.06163, "longitude": 120.9259, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.86431, 61.06224, 120.86431, 61.06224], "geometry": {"coordinates": [120.86431, 61.06224], "type": "Point"}, "id": "916", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 305.67, "brightness": 340.62, "confidence": 91, "daynight": "D", "frp": 54.57, "instrument": "MODIS", "latitude": 61.06224, "longitude": 120.86431, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.89925, 61.06378, 120.89925, 61.06378], "geometry": {"coordinates": [120.89925, 61.06378], "type": "Point"}, "id": "917", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 304.61, "brightness": 337.0, "confidence": 89, "daynight": "D", "frp": 49.7, "instrument": "MODIS", "latitude": 61.06378, "longitude": 120.89925, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.83762, 61.06448, 120.83762, 61.06448], "geometry": {"coordinates": [120.83762, 61.06448], "type": "Point"}, "id": "918", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 306.17, "brightness": 324.18, "confidence": 50, "daynight": "D", "frp": 15.54, "instrument": "MODIS", "latitude": 61.06448, "longitude": 120.83762, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.87269, 61.06593, 120.87269, 61.06593], "geometry": {"coordinates": [120.87269, 61.06593], "type": "Point"}, "id": "919", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 306.11, "brightness": 347.05, "confidence": 92, "daynight": "D", "frp": 73.9, "instrument": "MODIS", "latitude": 61.06593, "longitude": 120.87269, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.84596, 61.06808, 120.84596, 61.06808], "geometry": {"coordinates": [120.84596, 61.06808], "type": "Point"}, "id": "920", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 307.25, "brightness": 345.68, "confidence": 94, "daynight": "D", "frp": 69.21, "instrument": "MODIS", "latitude": 61.06808, "longitude": 120.84596, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.92124, 61.06828, 120.92124, 61.06828], "geometry": {"coordinates": [120.92124, 61.06828], "type": "Point"}, "id": "921", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.27, "brightness": 323.92, "confidence": 71, "daynight": "D", "frp": 22.22, "instrument": "MODIS", "latitude": 61.06828, "longitude": 120.92124, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.89473, 61.07053, 120.89473, 61.07053], "geometry": {"coordinates": [120.89473, 61.07053], "type": "Point"}, "id": "922", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 309.16, "brightness": 371.52, "confidence": 100, "daynight": "D", "frp": 192.99, "instrument": "MODIS", "latitude": 61.07053, "longitude": 120.89473, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.86816, 61.07277, 120.86816, 61.07277], "geometry": {"coordinates": [120.86816, 61.07277], "type": "Point"}, "id": "923", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 309.51, "brightness": 362.6, "confidence": 100, "daynight": "D", "frp": 138.09, "instrument": "MODIS", "latitude": 61.07277, "longitude": 120.86816, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.90311, 61.0743, 120.90311, 61.0743], "geometry": {"coordinates": [120.90311, 61.0743], "type": "Point"}, "id": "924", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 309.21, "brightness": 390.12, "confidence": 100, "daynight": "D", "frp": 327.31, "instrument": "MODIS", "latitude": 61.0743, "longitude": 120.90311, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.84142, 61.07502, 120.84142, 61.07502], "geometry": {"coordinates": [120.84142, 61.07502], "type": "Point"}, "id": "925", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 312.11, "brightness": 371.16, "confidence": 100, "daynight": "D", "frp": 184.88, "instrument": "MODIS", "latitude": 61.07502, "longitude": 120.84142, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.87649, 61.07645, 120.87649, 61.07645], "geometry": {"coordinates": [120.87649, 61.07645], "type": "Point"}, "id": "926", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 315.84, "brightness": 408.57, "confidence": 100, "daynight": "D", "frp": 511.97, "instrument": "MODIS", "latitude": 61.07645, "longitude": 120.87649, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.84972, 61.07862, 120.84972, 61.07862], "geometry": {"coordinates": [120.84972, 61.07862], "type": "Point"}, "id": "927", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 314.06, "brightness": 397.08, "confidence": 100, "daynight": "D", "frp": 389.38, "instrument": "MODIS", "latitude": 61.07862, "longitude": 120.84972, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.88007, 61.087, 120.88007, 61.087], "geometry": {"coordinates": [120.88007, 61.087], "type": "Point"}, "id": "928", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.42, "brightness": 340.86, "confidence": 71, "daynight": "D", "frp": 60.8, "instrument": "MODIS", "latitude": 61.087, "longitude": 120.88007, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.85326, 61.08918, 120.85326, 61.08918], "geometry": {"coordinates": [120.85326, 61.08918], "type": "Point"}, "id": "929", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.22, "brightness": 339.91, "confidence": 77, "daynight": "D", "frp": 57.84, "instrument": "MODIS", "latitude": 61.08918, "longitude": 120.85326, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.56336, 61.20349, 120.56336, 61.20349], "geometry": {"coordinates": [120.56336, 61.20349], "type": "Point"}, "id": "930", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.21, "brightness": 321.56, "confidence": 43, "daynight": "D", "frp": 21.59, "instrument": "MODIS", "latitude": 61.20349, "longitude": 120.56336, "satellite": "Terra", "scan": 1.5, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.17973, 61.25529, 120.17973, 61.25529], "geometry": {"coordinates": [120.17973, 61.25529], "type": "Point"}, "id": "931", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 298.55, "brightness": 322.81, "confidence": 69, "daynight": "D", "frp": 28.01, "instrument": "MODIS", "latitude": 61.25529, "longitude": 120.17973, "satellite": "Terra", "scan": 1.55, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.18697, 61.277, 120.18697, 61.277], "geometry": {"coordinates": [120.18697, 61.277], "type": "Point"}, "id": "932", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.23, "brightness": 327.97, "confidence": 74, "daynight": "D", "frp": 37.87, "instrument": "MODIS", "latitude": 61.277, "longitude": 120.18697, "satellite": "Terra", "scan": 1.55, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [112.80582, 61.34392, 112.80582, 61.34392], "geometry": {"coordinates": [112.80582, 61.34392], "type": "Point"}, "id": "933", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 291.12, "brightness": 341.21, "confidence": 92, "daynight": "D", "frp": 215.18, "instrument": "MODIS", "latitude": 61.34392, "longitude": 112.80582, "satellite": "Terra", "scan": 2.96, "track": 1.64, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.2982, 61.38214, 122.2982, 61.38214], "geometry": {"coordinates": [122.2982, 61.38214], "type": "Point"}, "id": "934", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 297.69, "brightness": 316.92, "confidence": 41, "daynight": "D", "frp": 13.46, "instrument": "MODIS", "latitude": 61.38214, "longitude": 122.2982, "satellite": "Terra", "scan": 1.32, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.20053, 61.39119, 122.20053, 61.39119], "geometry": {"coordinates": [122.20053, 61.39119], "type": "Point"}, "id": "935", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 298.09, "brightness": 314.21, "confidence": 40, "daynight": "D", "frp": 9.6, "instrument": "MODIS", "latitude": 61.39119, "longitude": 122.20053, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.17583, 61.39346, 122.17583, 61.39346], "geometry": {"coordinates": [122.17583, 61.39346], "type": "Point"}, "id": "936", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 298.37, "brightness": 322.46, "confidence": 78, "daynight": "D", "frp": 21.92, "instrument": "MODIS", "latitude": 61.39346, "longitude": 122.17583, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.29055, 61.41216, 122.29055, 61.41216], "geometry": {"coordinates": [122.29055, 61.41216], "type": "Point"}, "id": "937", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 296.56, "brightness": 315.72, "confidence": 35, "daynight": "D", "frp": 11.74, "instrument": "MODIS", "latitude": 61.41216, "longitude": 122.29055, "satellite": "Terra", "scan": 1.32, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.26637, 61.41434, 122.26637, 61.41434], "geometry": {"coordinates": [122.26637, 61.41434], "type": "Point"}, "id": "938", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 298.58, "brightness": 322.81, "confidence": 77, "daynight": "D", "frp": 21.91, "instrument": "MODIS", "latitude": 61.41434, "longitude": 122.26637, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.33108, 61.4146, 120.33108, 61.4146], "geometry": {"coordinates": [120.33108, 61.4146], "type": "Point"}, "id": "939", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 299.02, "brightness": 312.59, "confidence": 29, "daynight": "D", "frp": 11.68, "instrument": "MODIS", "latitude": 61.4146, "longitude": 120.33108, "satellite": "Terra", "scan": 1.54, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.26977, 61.78302, 120.26977, 61.78302], "geometry": {"coordinates": [120.26977, 61.78302], "type": "Point"}, "id": "940", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 297.66, "brightness": 309.31, "confidence": 59, "daynight": "D", "frp": 9.38, "instrument": "MODIS", "latitude": 61.78302, "longitude": 120.26977, "satellite": "Terra", "scan": 1.56, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [123.18684, 61.93036, 123.18684, 61.93036], "geometry": {"coordinates": [123.18684, 61.93036], "type": "Point"}, "id": "941", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 297.25, "brightness": 321.03, "confidence": 45, "daynight": "D", "frp": 16.26, "instrument": "MODIS", "latitude": 61.93036, "longitude": 123.18684, "satellite": "Terra", "scan": 1.27, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [123.30569, 62.0209, 123.30569, 62.0209], "geometry": {"coordinates": [123.30569, 62.0209], "type": "Point"}, "id": "942", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 297.41, "brightness": 318.21, "confidence": 44, "daynight": "D", "frp": 13.33, "instrument": "MODIS", "latitude": 62.0209, "longitude": 123.30569, "satellite": "Terra", "scan": 1.26, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [123.2254, 62.0491, 123.2254, 62.0491], "geometry": {"coordinates": [123.2254, 62.0491], "type": "Point"}, "id": "943", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 297.57, "brightness": 329.48, "confidence": 24, "daynight": "D", "frp": 28.88, "instrument": "MODIS", "latitude": 62.0491, "longitude": 123.2254, "satellite": "Terra", "scan": 1.27, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [123.21982, 62.04976, 123.21982, 62.04976], "geometry": {"coordinates": [123.21982, 62.04976], "type": "Point"}, "id": "944", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 297.93, "brightness": 327.19, "confidence": 25, "daynight": "D", "frp": 23.41, "instrument": "MODIS", "latitude": 62.04976, "longitude": 123.21982, "satellite": "Terra", "scan": 1.27, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [121.34235, 63.12162, 121.34235, 63.12162], "geometry": {"coordinates": [121.34235, 63.12162], "type": "Point"}, "id": "945", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 301.0, "brightness": 317.54, "confidence": 20, "daynight": "D", "frp": 12.89, "instrument": "MODIS", "latitude": 63.12162, "longitude": 121.34235, "satellite": "Terra", "scan": 1.5, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [121.30169, 63.16098, 121.30169, 63.16098], "geometry": {"coordinates": [121.30169, 63.16098], "type": "Point"}, "id": "946", "properties": {"acq_date": "2024-07-11", "acq_time": 206, "bright_t31": 300.21, "brightness": 321.53, "confidence": 60, "daynight": "D", "frp": 21.98, "instrument": "MODIS", "latitude": 63.16098, "longitude": 121.30169, "satellite": "Terra", "scan": 1.51, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.63599, 48.63662, 126.63599, 48.63662], "geometry": {"coordinates": [126.63599, 48.63662], "type": "Point"}, "id": "947", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 297.72, "brightness": 310.62, "confidence": 42, "daynight": "D", "frp": 6.95, "instrument": "MODIS", "latitude": 48.63662, "longitude": 126.63599, "satellite": "Terra", "scan": 1.18, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.6207, 48.63939, 126.6207, 48.63939], "geometry": {"coordinates": [126.6207, 48.63939], "type": "Point"}, "id": "948", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 297.59, "brightness": 311.9, "confidence": 53, "daynight": "D", "frp": 8.28, "instrument": "MODIS", "latitude": 48.63939, "longitude": 126.6207, "satellite": "Terra", "scan": 1.18, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.41895, 51.39139, 131.41895, 51.39139], "geometry": {"coordinates": [131.41895, 51.39139], "type": "Point"}, "id": "949", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.37, "brightness": 313.42, "confidence": 74, "daynight": "D", "frp": 22.0, "instrument": "MODIS", "latitude": 51.39139, "longitude": 131.41895, "satellite": "Terra", "scan": 1.61, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.42543, 51.39186, 131.42543, 51.39186], "geometry": {"coordinates": [131.42543, 51.39186], "type": "Point"}, "id": "950", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.49, "brightness": 313.28, "confidence": 67, "daynight": "D", "frp": 19.99, "instrument": "MODIS", "latitude": 51.39186, "longitude": 131.42543, "satellite": "Terra", "scan": 1.61, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.88359, 51.43441, 130.88359, 51.43441], "geometry": {"coordinates": [130.88359, 51.43441], "type": "Point"}, "id": "951", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.82, "brightness": 305.82, "confidence": 62, "daynight": "D", "frp": 9.28, "instrument": "MODIS", "latitude": 51.43441, "longitude": 130.88359, "satellite": "Terra", "scan": 1.52, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [116.16652, 51.47614, 116.16652, 51.47614], "geometry": {"coordinates": [116.16652, 51.47614], "type": "Point"}, "id": "952", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 296.95, "brightness": 314.96, "confidence": 23, "daynight": "D", "frp": 16.19, "instrument": "MODIS", "latitude": 51.47614, "longitude": 116.16652, "satellite": "Terra", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [128.16576, 51.48283, 128.16576, 51.48283], "geometry": {"coordinates": [128.16576, 51.48283], "type": "Point"}, "id": "953", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 297.36, "brightness": 309.05, "confidence": 47, "daynight": "D", "frp": 6.1, "instrument": "MODIS", "latitude": 51.48283, "longitude": 128.16576, "satellite": "Terra", "scan": 1.19, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [128.16246, 51.51376, 128.16246, 51.51376], "geometry": {"coordinates": [128.16246, 51.51376], "type": "Point"}, "id": "954", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 297.69, "brightness": 310.99, "confidence": 15, "daynight": "D", "frp": 6.48, "instrument": "MODIS", "latitude": 51.51376, "longitude": 128.16246, "satellite": "Terra", "scan": 1.19, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.64081, 51.55823, 130.64081, 51.55823], "geometry": {"coordinates": [130.64081, 51.55823], "type": "Point"}, "id": "955", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 293.11, "brightness": 333.85, "confidence": 89, "daynight": "D", "frp": 52.92, "instrument": "MODIS", "latitude": 51.55823, "longitude": 130.64081, "satellite": "Terra", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.6582, 51.56045, 130.6582, 51.56045], "geometry": {"coordinates": [130.6582, 51.56045], "type": "Point"}, "id": "956", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.05, "brightness": 319.05, "confidence": 47, "daynight": "D", "frp": 22.82, "instrument": "MODIS", "latitude": 51.56045, "longitude": 130.6582, "satellite": "Terra", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.63828, 51.5645, 130.63828, 51.5645], "geometry": {"coordinates": [130.63828, 51.5645], "type": "Point"}, "id": "957", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.88, "brightness": 316.01, "confidence": 19, "daynight": "D", "frp": 17.76, "instrument": "MODIS", "latitude": 51.5645, "longitude": 130.63828, "satellite": "Terra", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.55661, 51.56662, 129.55661, 51.56662], "geometry": {"coordinates": [129.55661, 51.56662], "type": "Point"}, "id": "958", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 286.35, "brightness": 330.78, "confidence": 65, "daynight": "D", "frp": 38.33, "instrument": "MODIS", "latitude": 51.56662, "longitude": 129.55661, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.53368, 51.57445, 130.53368, 51.57445], "geometry": {"coordinates": [130.53368, 51.57445], "type": "Point"}, "id": "959", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.78, "brightness": 319.0, "confidence": 47, "daynight": "D", "frp": 20.92, "instrument": "MODIS", "latitude": 51.57445, "longitude": 130.53368, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.37645, 51.60614, 130.37645, 51.60614], "geometry": {"coordinates": [130.37645, 51.60614], "type": "Point"}, "id": "960", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 290.26, "brightness": 308.57, "confidence": 29, "daynight": "D", "frp": 11.03, "instrument": "MODIS", "latitude": 51.60614, "longitude": 130.37645, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.66335, 51.60884, 129.66335, 51.60884], "geometry": {"coordinates": [129.66335, 51.60884], "type": "Point"}, "id": "961", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 296.39, "brightness": 340.12, "confidence": 66, "daynight": "D", "frp": 50.76, "instrument": "MODIS", "latitude": 51.60884, "longitude": 129.66335, "satellite": "Terra", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.65004, 51.62219, 129.65004, 51.62219], "geometry": {"coordinates": [129.65004, 51.62219], "type": "Point"}, "id": "962", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 295.95, "brightness": 322.98, "confidence": 82, "daynight": "D", "frp": 20.31, "instrument": "MODIS", "latitude": 51.62219, "longitude": 129.65004, "satellite": "Terra", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.54115, 51.64344, 129.54115, 51.64344], "geometry": {"coordinates": [129.54115, 51.64344], "type": "Point"}, "id": "963", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 290.37, "brightness": 316.39, "confidence": 57, "daynight": "D", "frp": 16.79, "instrument": "MODIS", "latitude": 51.64344, "longitude": 129.54115, "satellite": "Terra", "scan": 1.32, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.57372, 51.66917, 129.57372, 51.66917], "geometry": {"coordinates": [129.57372, 51.66917], "type": "Point"}, "id": "964", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 294.35, "brightness": 316.39, "confidence": 31, "daynight": "D", "frp": 14.69, "instrument": "MODIS", "latitude": 51.66917, "longitude": 129.57372, "satellite": "Terra", "scan": 1.32, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.40218, 51.6854, 130.40218, 51.6854], "geometry": {"coordinates": [130.40218, 51.6854], "type": "Point"}, "id": "965", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.16, "brightness": 317.82, "confidence": 38, "daynight": "D", "frp": 20.69, "instrument": "MODIS", "latitude": 51.6854, "longitude": 130.40218, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.62871, 51.69005, 130.62871, 51.69005], "geometry": {"coordinates": [130.62871, 51.69005], "type": "Point"}, "id": "966", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.67, "brightness": 318.99, "confidence": 58, "daynight": "D", "frp": 19.84, "instrument": "MODIS", "latitude": 51.69005, "longitude": 130.62871, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.52463, 51.70021, 130.52463, 51.70021], "geometry": {"coordinates": [130.52463, 51.70021], "type": "Point"}, "id": "967", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 289.62, "brightness": 311.08, "confidence": 26, "daynight": "D", "frp": 12.63, "instrument": "MODIS", "latitude": 51.70021, "longitude": 130.52463, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.61426, 51.70424, 130.61426, 51.70424], "geometry": {"coordinates": [130.61426, 51.70424], "type": "Point"}, "id": "968", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.82, "brightness": 319.05, "confidence": 50, "daynight": "D", "frp": 22.33, "instrument": "MODIS", "latitude": 51.70424, "longitude": 130.61426, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.50487, 51.70426, 130.50487, 51.70426], "geometry": {"coordinates": [130.50487, 51.70426], "type": "Point"}, "id": "969", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 290.1, "brightness": 315.49, "confidence": 62, "daynight": "D", "frp": 19.54, "instrument": "MODIS", "latitude": 51.70426, "longitude": 130.50487, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.71132, 51.75766, 129.71132, 51.75766], "geometry": {"coordinates": [129.71132, 51.75766], "type": "Point"}, "id": "970", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 291.41, "brightness": 308.08, "confidence": 51, "daynight": "D", "frp": 6.33, "instrument": "MODIS", "latitude": 51.75766, "longitude": 129.71132, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.69305, 51.76126, 129.69305, 51.76126], "geometry": {"coordinates": [129.69305, 51.76126], "type": "Point"}, "id": "971", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.53, "brightness": 309.24, "confidence": 63, "daynight": "D", "frp": 6.69, "instrument": "MODIS", "latitude": 51.76126, "longitude": 129.69305, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.42253, 51.81428, 129.42253, 51.81428], "geometry": {"coordinates": [129.42253, 51.81428], "type": "Point"}, "id": "972", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 295.04, "brightness": 323.39, "confidence": 45, "daynight": "D", "frp": 22.55, "instrument": "MODIS", "latitude": 51.81428, "longitude": 129.42253, "satellite": "Terra", "scan": 1.3, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.40465, 51.81776, 129.40465, 51.81776], "geometry": {"coordinates": [129.40465, 51.81776], "type": "Point"}, "id": "973", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 293.36, "brightness": 335.42, "confidence": 89, "daynight": "D", "frp": 45.77, "instrument": "MODIS", "latitude": 51.81776, "longitude": 129.40465, "satellite": "Terra", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.40935, 51.82743, 129.40935, 51.82743], "geometry": {"coordinates": [129.40935, 51.82743], "type": "Point"}, "id": "974", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 295.21, "brightness": 328.57, "confidence": 40, "daynight": "D", "frp": 29.42, "instrument": "MODIS", "latitude": 51.82743, "longitude": 129.40935, "satellite": "Terra", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.39633, 51.84052, 129.39633, 51.84052], "geometry": {"coordinates": [129.39633, 51.84052], "type": "Point"}, "id": "975", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 295.27, "brightness": 329.91, "confidence": 21, "daynight": "D", "frp": 32.06, "instrument": "MODIS", "latitude": 51.84052, "longitude": 129.39633, "satellite": "Terra", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.44936, 51.89353, 129.44936, 51.89353], "geometry": {"coordinates": [129.44936, 51.89353], "type": "Point"}, "id": "976", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 296.52, "brightness": 321.57, "confidence": 74, "daynight": "D", "frp": 21.4, "instrument": "MODIS", "latitude": 51.89353, "longitude": 129.44936, "satellite": "Terra", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.72404, 51.9291, 130.72404, 51.9291], "geometry": {"coordinates": [130.72404, 51.9291], "type": "Point"}, "id": "977", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 285.24, "brightness": 322.59, "confidence": 82, "daynight": "D", "frp": 34.29, "instrument": "MODIS", "latitude": 51.9291, "longitude": 130.72404, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.70428, 51.93309, 130.70428, 51.93309], "geometry": {"coordinates": [130.70428, 51.93309], "type": "Point"}, "id": "978", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 286.62, "brightness": 341.42, "confidence": 92, "daynight": "D", "frp": 78.18, "instrument": "MODIS", "latitude": 51.93309, "longitude": 130.70428, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.73198, 51.93347, 130.73198, 51.93347], "geometry": {"coordinates": [130.73198, 51.93347], "type": "Point"}, "id": "979", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 285.77, "brightness": 341.39, "confidence": 63, "daynight": "D", "frp": 68.87, "instrument": "MODIS", "latitude": 51.93347, "longitude": 130.73198, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.68449, 51.93708, 130.68449, 51.93708], "geometry": {"coordinates": [130.68449, 51.93708], "type": "Point"}, "id": "980", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 287.06, "brightness": 340.55, "confidence": 92, "daynight": "D", "frp": 73.29, "instrument": "MODIS", "latitude": 51.93708, "longitude": 130.68449, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.71237, 51.93752, 130.71237, 51.93752], "geometry": {"coordinates": [130.71237, 51.93752], "type": "Point"}, "id": "981", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 288.24, "brightness": 355.63, "confidence": 97, "daynight": "D", "frp": 119.1, "instrument": "MODIS", "latitude": 51.93752, "longitude": 130.71237, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.6926, 51.94159, 130.6926, 51.94159], "geometry": {"coordinates": [130.6926, 51.94159], "type": "Point"}, "id": "982", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 289.99, "brightness": 363.45, "confidence": 95, "daynight": "D", "frp": 152.27, "instrument": "MODIS", "latitude": 51.94159, "longitude": 130.6926, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.81238, 51.97118, 129.81238, 51.97118], "geometry": {"coordinates": [129.81238, 51.97118], "type": "Point"}, "id": "983", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 293.51, "brightness": 339.18, "confidence": 91, "daynight": "D", "frp": 57.84, "instrument": "MODIS", "latitude": 51.97118, "longitude": 129.81238, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.8187, 51.97183, 130.8187, 51.97183], "geometry": {"coordinates": [130.8187, 51.97183], "type": "Point"}, "id": "984", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 287.05, "brightness": 329.53, "confidence": 75, "daynight": "D", "frp": 42.74, "instrument": "MODIS", "latitude": 51.97183, "longitude": 130.8187, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.64423, 51.97388, 130.64423, 51.97388], "geometry": {"coordinates": [130.64423, 51.97388], "type": "Point"}, "id": "985", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 286.57, "brightness": 344.09, "confidence": 88, "daynight": "D", "frp": 74.75, "instrument": "MODIS", "latitude": 51.97388, "longitude": 130.64423, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.79405, 51.97476, 129.79405, 51.97476], "geometry": {"coordinates": [129.79405, 51.97476], "type": "Point"}, "id": "986", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 290.88, "brightness": 316.69, "confidence": 41, "daynight": "D", "frp": 17.31, "instrument": "MODIS", "latitude": 51.97476, "longitude": 129.79405, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.89604, 51.97631, 129.89604, 51.97631], "geometry": {"coordinates": [129.89604, 51.97631], "type": "Point"}, "id": "987", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 293.05, "brightness": 322.53, "confidence": 55, "daynight": "D", "frp": 24.34, "instrument": "MODIS", "latitude": 51.97631, "longitude": 129.89604, "satellite": "Terra", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.66925, 51.97993, 130.66925, 51.97993], "geometry": {"coordinates": [130.66925, 51.97993], "type": "Point"}, "id": "988", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 290.51, "brightness": 358.06, "confidence": 98, "daynight": "D", "frp": 119.94, "instrument": "MODIS", "latitude": 51.97993, "longitude": 130.66925, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.81737, 51.98093, 129.81737, 51.98093], "geometry": {"coordinates": [129.81737, 51.98093], "type": "Point"}, "id": "989", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 294.67, "brightness": 340.86, "confidence": 72, "daynight": "D", "frp": 58.12, "instrument": "MODIS", "latitude": 51.98093, "longitude": 129.81737, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.64955, 51.98395, 130.64955, 51.98395], "geometry": {"coordinates": [130.64955, 51.98395], "type": "Point"}, "id": "990", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.26, "brightness": 358.06, "confidence": 99, "daynight": "D", "frp": 123.07, "instrument": "MODIS", "latitude": 51.98395, "longitude": 130.64955, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.90108, 51.9861, 129.90108, 51.9861], "geometry": {"coordinates": [129.90108, 51.9861], "type": "Point"}, "id": "991", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.91, "brightness": 327.9, "confidence": 52, "daynight": "D", "frp": 30.92, "instrument": "MODIS", "latitude": 51.9861, "longitude": 129.90108, "satellite": "Terra", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.92995, 51.98949, 129.92995, 51.98949], "geometry": {"coordinates": [129.92995, 51.98949], "type": "Point"}, "id": "992", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 290.46, "brightness": 329.01, "confidence": 14, "daynight": "D", "frp": 32.19, "instrument": "MODIS", "latitude": 51.98949, "longitude": 129.92995, "satellite": "Terra", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.82237, 51.99068, 129.82237, 51.99068], "geometry": {"coordinates": [129.82237, 51.99068], "type": "Point"}, "id": "993", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 294.75, "brightness": 333.47, "confidence": 38, "daynight": "D", "frp": 39.3, "instrument": "MODIS", "latitude": 51.99068, "longitude": 129.82237, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.92462, 51.99228, 129.92462, 51.99228], "geometry": {"coordinates": [129.92462, 51.99228], "type": "Point"}, "id": "994", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.28, "brightness": 342.85, "confidence": 85, "daynight": "D", "frp": 65.94, "instrument": "MODIS", "latitude": 51.99228, "longitude": 129.92462, "satellite": "Terra", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.83846, 51.99585, 130.83846, 51.99585], "geometry": {"coordinates": [130.83846, 51.99585], "type": "Point"}, "id": "995", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 287.35, "brightness": 311.6, "confidence": 61, "daynight": "D", "frp": 13.51, "instrument": "MODIS", "latitude": 51.99585, "longitude": 130.83846, "satellite": "Terra", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.93497, 51.99928, 129.93497, 51.99928], "geometry": {"coordinates": [129.93497, 51.99928], "type": "Point"}, "id": "996", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 293.24, "brightness": 336.8, "confidence": 79, "daynight": "D", "frp": 48.82, "instrument": "MODIS", "latitude": 51.99928, "longitude": 129.93497, "satellite": "Terra", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.82738, 52.00043, 129.82738, 52.00043], "geometry": {"coordinates": [129.82738, 52.00043], "type": "Point"}, "id": "997", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 295.53, "brightness": 331.69, "confidence": 50, "daynight": "D", "frp": 36.38, "instrument": "MODIS", "latitude": 52.00043, "longitude": 129.82738, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.69968, 52.02459, 130.69968, 52.02459], "geometry": {"coordinates": [130.69968, 52.02459], "type": "Point"}, "id": "998", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 290.67, "brightness": 311.82, "confidence": 38, "daynight": "D", "frp": 9.39, "instrument": "MODIS", "latitude": 52.02459, "longitude": 130.69968, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.02089, 52.04711, 130.02089, 52.04711], "geometry": {"coordinates": [130.02089, 52.04711], "type": "Point"}, "id": "999", "properties": {"acq_date": "2024-07-11", "acq_time": 209, "bright_t31": 292.51, "brightness": 326.66, "confidence": 40, "daynight": "D", "frp": 29.98, "instrument": "MODIS", "latitude": 52.04711, "longitude": 130.02089, "satellite": "Terra", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}], "type": "FeatureCollection"});\n", - " geo_json_44bff450c24ee607d2f0debc86197ed0.setStyle(function(feature) {return feature.properties.style;});\n", + " geo_json_b0be9b43188cb0eab858ecb7a3988c88_add({"bbox": [-119.39926, -32.11799, 148.664, 72.17689], "features": [{"bbox": [140.30499, 30.48004, 140.30499, 30.48004], "geometry": {"coordinates": [140.30499, 30.48004], "type": "Point"}, "id": "0", "properties": {"acq_date": "2024-07-15", "acq_time": 3, "bright_t31": 294.83, "brightness": 310.67, "confidence": 42, "daynight": "D", "frp": 45.73, "instrument": "MODIS", "latitude": 30.48004, "longitude": 140.30499, "satellite": "Terra", "scan": 3.57, "track": 1.77, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [148.52379, -9.68397, 148.52379, -9.68397], "geometry": {"coordinates": [148.52379, -9.68397], "type": "Point"}, "id": "1", "properties": {"acq_date": "2024-07-15", "acq_time": 11, "bright_t31": 289.31, "brightness": 305.43, "confidence": 61, "daynight": "D", "frp": 17.6, "instrument": "MODIS", "latitude": -9.68397, "longitude": 148.52379, "satellite": "Terra", "scan": 2.42, "track": 1.5, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [148.51765, -9.68, 148.51765, -9.68], "geometry": {"coordinates": [148.51765, -9.68], "type": "Point"}, "id": "2", "properties": {"acq_date": "2024-07-15", "acq_time": 11, "bright_t31": 289.16, "brightness": 302.94, "confidence": 54, "daynight": "D", "frp": 12.9, "instrument": "MODIS", "latitude": -9.68, "longitude": 148.51765, "satellite": "Terra", "scan": 2.42, "track": 1.5, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.94067, -5.92378, 146.94067, -5.92378], "geometry": {"coordinates": [146.94067, -5.92378], "type": "Point"}, "id": "3", "properties": {"acq_date": "2024-07-15", "acq_time": 11, "bright_t31": 295.34, "brightness": 312.43, "confidence": 43, "daynight": "D", "frp": 11.4, "instrument": "MODIS", "latitude": -5.92378, "longitude": 146.94067, "satellite": "Terra", "scan": 1.59, "track": 1.24, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.65868, -15.38558, 141.65868, -15.38558], "geometry": {"coordinates": [141.65868, -15.38558], "type": "Point"}, "id": "4", "properties": {"acq_date": "2024-07-15", "acq_time": 13, "bright_t31": 299.32, "brightness": 315.29, "confidence": 50, "daynight": "D", "frp": 7.43, "instrument": "MODIS", "latitude": -15.38558, "longitude": 141.65868, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [144.22754, -14.49895, 144.22754, -14.49895], "geometry": {"coordinates": [144.22754, -14.49895], "type": "Point"}, "id": "5", "properties": {"acq_date": "2024-07-15", "acq_time": 13, "bright_t31": 294.26, "brightness": 309.05, "confidence": 50, "daynight": "D", "frp": 8.17, "instrument": "MODIS", "latitude": -14.49895, "longitude": 144.22754, "satellite": "Terra", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.31598, -13.13552, 132.31598, -13.13552], "geometry": {"coordinates": [132.31598, -13.13552], "type": "Point"}, "id": "6", "properties": {"acq_date": "2024-07-15", "acq_time": 13, "bright_t31": 293.56, "brightness": 308.43, "confidence": 61, "daynight": "D", "frp": 24.69, "instrument": "MODIS", "latitude": -13.13552, "longitude": 132.31598, "satellite": "Terra", "scan": 3.23, "track": 1.7, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.71312, -12.96186, 141.71312, -12.96186], "geometry": {"coordinates": [141.71312, -12.96186], "type": "Point"}, "id": "7", "properties": {"acq_date": "2024-07-15", "acq_time": 13, "bright_t31": 288.57, "brightness": 307.05, "confidence": 57, "daynight": "D", "frp": 5.64, "instrument": "MODIS", "latitude": -12.96186, "longitude": 141.71312, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.82921, -12.54697, 142.82921, -12.54697], "geometry": {"coordinates": [142.82921, -12.54697], "type": "Point"}, "id": "8", "properties": {"acq_date": "2024-07-15", "acq_time": 13, "bright_t31": 285.36, "brightness": 311.77, "confidence": 72, "daynight": "D", "frp": 10.09, "instrument": "MODIS", "latitude": -12.54697, "longitude": 142.82921, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.48065, -12.26091, 132.48065, -12.26091], "geometry": {"coordinates": [132.48065, -12.26091], "type": "Point"}, "id": "9", "properties": {"acq_date": "2024-07-15", "acq_time": 13, "bright_t31": 278.42, "brightness": 304.47, "confidence": 0, "daynight": "D", "frp": 30.46, "instrument": "MODIS", "latitude": -12.26091, "longitude": 132.48065, "satellite": "Terra", "scan": 3.26, "track": 1.71, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.91098, -16.49349, 136.91098, -16.49349], "geometry": {"coordinates": [136.91098, -16.49349], "type": "Point"}, "id": "10", "properties": {"acq_date": "2024-07-15", "acq_time": 16, "bright_t31": 296.6, "brightness": 321.05, "confidence": 78, "daynight": "D", "frp": 22.96, "instrument": "MODIS", "latitude": -16.49349, "longitude": 136.91098, "satellite": "Terra", "scan": 1.29, "track": 1.13, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.89528, -22.74807, 146.89528, -22.74807], "geometry": {"coordinates": [146.89528, -22.74807], "type": "Point"}, "id": "11", "properties": {"acq_date": "2024-07-15", "acq_time": 18, "bright_t31": 290.42, "brightness": 300.58, "confidence": 7, "daynight": "D", "frp": 13.51, "instrument": "MODIS", "latitude": -22.74807, "longitude": 146.89528, "satellite": "Terra", "scan": 2.76, "track": 1.59, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.86877, -22.74574, 146.86877, -22.74574], "geometry": {"coordinates": [146.86877, -22.74574], "type": "Point"}, "id": "12", "properties": {"acq_date": "2024-07-15", "acq_time": 18, "bright_t31": 290.42, "brightness": 304.57, "confidence": 57, "daynight": "D", "frp": 22.48, "instrument": "MODIS", "latitude": -22.74574, "longitude": 146.86877, "satellite": "Terra", "scan": 2.75, "track": 1.59, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.87621, -22.74177, 146.87621, -22.74177], "geometry": {"coordinates": [146.87621, -22.74177], "type": "Point"}, "id": "13", "properties": {"acq_date": "2024-07-15", "acq_time": 18, "bright_t31": 290.72, "brightness": 307.01, "confidence": 65, "daynight": "D", "frp": 30.73, "instrument": "MODIS", "latitude": -22.74177, "longitude": 146.87621, "satellite": "Terra", "scan": 2.75, "track": 1.59, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.88081, -22.6993, 146.88081, -22.6993], "geometry": {"coordinates": [146.88081, -22.6993], "type": "Point"}, "id": "14", "properties": {"acq_date": "2024-07-15", "acq_time": 18, "bright_t31": 292.1, "brightness": 306.92, "confidence": 64, "daynight": "D", "frp": 32.42, "instrument": "MODIS", "latitude": -22.6993, "longitude": 146.88081, "satellite": "Terra", "scan": 2.75, "track": 1.59, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.48477, -20.73321, 139.48477, -20.73321], "geometry": {"coordinates": [139.48477, -20.73321], "type": "Point"}, "id": "15", "properties": {"acq_date": "2024-07-15", "acq_time": 18, "bright_t31": 292.03, "brightness": 305.64, "confidence": 62, "daynight": "D", "frp": 4.62, "instrument": "MODIS", "latitude": -20.73321, "longitude": 139.48477, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.47531, -20.73186, 139.47531, -20.73186], "geometry": {"coordinates": [139.47531, -20.73186], "type": "Point"}, "id": "16", "properties": {"acq_date": "2024-07-15", "acq_time": 18, "bright_t31": 293.34, "brightness": 315.83, "confidence": 72, "daynight": "D", "frp": 12.01, "instrument": "MODIS", "latitude": -20.73186, "longitude": 139.47531, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [39.88292, 50.94622, 39.88292, 50.94622], "geometry": {"coordinates": [39.88292, 50.94622], "type": "Point"}, "id": "17", "properties": {"acq_date": "2024-07-15", "acq_time": 22, "bright_t31": 291.01, "brightness": 302.35, "confidence": 49, "daynight": "N", "frp": 5.66, "instrument": "MODIS", "latitude": 50.94622, "longitude": 39.88292, "satellite": "Aqua", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [39.86849, 50.94867, 39.86849, 50.94867], "geometry": {"coordinates": [39.86849, 50.94867], "type": "Point"}, "id": "18", "properties": {"acq_date": "2024-07-15", "acq_time": 22, "bright_t31": 290.84, "brightness": 303.29, "confidence": 54, "daynight": "N", "frp": 6.21, "instrument": "MODIS", "latitude": 50.94867, "longitude": 39.86849, "satellite": "Aqua", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [39.63948, 52.5456, 39.63948, 52.5456], "geometry": {"coordinates": [39.63948, 52.5456], "type": "Point"}, "id": "19", "properties": {"acq_date": "2024-07-15", "acq_time": 22, "bright_t31": 292.9, "brightness": 303.43, "confidence": 55, "daynight": "N", "frp": 4.97, "instrument": "MODIS", "latitude": 52.5456, "longitude": 39.63948, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [39.56748, 52.55721, 39.56748, 52.55721], "geometry": {"coordinates": [39.56748, 52.55721], "type": "Point"}, "id": "20", "properties": {"acq_date": "2024-07-15", "acq_time": 22, "bright_t31": 293.16, "brightness": 321.21, "confidence": 100, "daynight": "N", "frp": 19.27, "instrument": "MODIS", "latitude": 52.55721, "longitude": 39.56748, "satellite": "Aqua", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [37.55042, 54.13654, 37.55042, 54.13654], "geometry": {"coordinates": [37.55042, 54.13654], "type": "Point"}, "id": "21", "properties": {"acq_date": "2024-07-15", "acq_time": 22, "bright_t31": 289.83, "brightness": 311.95, "confidence": 84, "daynight": "N", "frp": 12.01, "instrument": "MODIS", "latitude": 54.13654, "longitude": 37.55042, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [37.71428, 54.16927, 37.71428, 54.16927], "geometry": {"coordinates": [37.71428, 54.16927], "type": "Point"}, "id": "22", "properties": {"acq_date": "2024-07-15", "acq_time": 22, "bright_t31": 291.37, "brightness": 304.57, "confidence": 61, "daynight": "N", "frp": 6.54, "instrument": "MODIS", "latitude": 54.16927, "longitude": 37.71428, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.38972, 41.86883, 26.38972, 41.86883], "geometry": {"coordinates": [26.38972, 41.86883], "type": "Point"}, "id": "23", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 290.75, "brightness": 307.21, "confidence": 71, "daynight": "N", "frp": 24.76, "instrument": "MODIS", "latitude": 41.86883, "longitude": 26.38972, "satellite": "Aqua", "scan": 2.02, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [37.85802, 45.19746, 37.85802, 45.19746], "geometry": {"coordinates": [37.85802, 45.19746], "type": "Point"}, "id": "24", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 292.61, "brightness": 304.64, "confidence": 61, "daynight": "N", "frp": 7.1, "instrument": "MODIS", "latitude": 45.19746, "longitude": 37.85802, "satellite": "Aqua", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [41.43193, 45.89032, 41.43193, 45.89032], "geometry": {"coordinates": [41.43193, 45.89032], "type": "Point"}, "id": "25", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 290.0, "brightness": 300.37, "confidence": 26, "daynight": "N", "frp": 8.99, "instrument": "MODIS", "latitude": 45.89032, "longitude": 41.43193, "satellite": "Aqua", "scan": 1.46, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.85702, 45.94511, 29.85702, 45.94511], "geometry": {"coordinates": [29.85702, 45.94511], "type": "Point"}, "id": "26", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 291.98, "brightness": 304.33, "confidence": 60, "daynight": "N", "frp": 9.79, "instrument": "MODIS", "latitude": 45.94511, "longitude": 29.85702, "satellite": "Aqua", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [41.9352, 45.96651, 41.9352, 45.96651], "geometry": {"coordinates": [41.9352, 45.96651], "type": "Point"}, "id": "27", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 288.15, "brightness": 314.25, "confidence": 89, "daynight": "N", "frp": 26.43, "instrument": "MODIS", "latitude": 45.96651, "longitude": 41.9352, "satellite": "Aqua", "scan": 1.54, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [41.94158, 45.96934, 41.94158, 45.96934], "geometry": {"coordinates": [41.94158, 45.96934], "type": "Point"}, "id": "28", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 287.98, "brightness": 307.74, "confidence": 72, "daynight": "N", "frp": 17.54, "instrument": "MODIS", "latitude": 45.96934, "longitude": 41.94158, "satellite": "Aqua", "scan": 1.54, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [41.92278, 45.97329, 41.92278, 45.97329], "geometry": {"coordinates": [41.92278, 45.97329], "type": "Point"}, "id": "29", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 289.06, "brightness": 317.94, "confidence": 96, "daynight": "N", "frp": 32.21, "instrument": "MODIS", "latitude": 45.97329, "longitude": 41.92278, "satellite": "Aqua", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [38.37284, 46.4191, 38.37284, 46.4191], "geometry": {"coordinates": [38.37284, 46.4191], "type": "Point"}, "id": "30", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 288.9, "brightness": 300.25, "confidence": 23, "daynight": "N", "frp": 5.68, "instrument": "MODIS", "latitude": 46.4191, "longitude": 38.37284, "satellite": "Aqua", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [40.08825, 46.4447, 40.08825, 46.4447], "geometry": {"coordinates": [40.08825, 46.4447], "type": "Point"}, "id": "31", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 288.74, "brightness": 311.05, "confidence": 82, "daynight": "N", "frp": 16.34, "instrument": "MODIS", "latitude": 46.4447, "longitude": 40.08825, "satellite": "Aqua", "scan": 1.24, "track": 1.11, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [33.50003, 46.65881, 33.50003, 46.65881], "geometry": {"coordinates": [33.50003, 46.65881], "type": "Point"}, "id": "32", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 287.73, "brightness": 301.05, "confidence": 37, "daynight": "N", "frp": 4.82, "instrument": "MODIS", "latitude": 46.65881, "longitude": 33.50003, "satellite": "Aqua", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [33.79839, 46.90581, 33.79839, 46.90581], "geometry": {"coordinates": [33.79839, 46.90581], "type": "Point"}, "id": "33", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 292.81, "brightness": 304.35, "confidence": 60, "daynight": "N", "frp": 6.13, "instrument": "MODIS", "latitude": 46.90581, "longitude": 33.79839, "satellite": "Aqua", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [36.17489, 46.99785, 36.17489, 46.99785], "geometry": {"coordinates": [36.17489, 46.99785], "type": "Point"}, "id": "34", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 292.19, "brightness": 302.51, "confidence": 50, "daynight": "N", "frp": 4.57, "instrument": "MODIS", "latitude": 46.99785, "longitude": 36.17489, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [37.95603, 48.06151, 37.95603, 48.06151], "geometry": {"coordinates": [37.95603, 48.06151], "type": "Point"}, "id": "35", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 292.77, "brightness": 302.85, "confidence": 52, "daynight": "N", "frp": 4.85, "instrument": "MODIS", "latitude": 48.06151, "longitude": 37.95603, "satellite": "Aqua", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [38.77222, 48.45891, 38.77222, 48.45891], "geometry": {"coordinates": [38.77222, 48.45891], "type": "Point"}, "id": "36", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 291.67, "brightness": 301.68, "confidence": 43, "daynight": "N", "frp": 4.88, "instrument": "MODIS", "latitude": 48.45891, "longitude": 38.77222, "satellite": "Aqua", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [38.67221, 48.89774, 38.67221, 48.89774], "geometry": {"coordinates": [38.67221, 48.89774], "type": "Point"}, "id": "37", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 291.6, "brightness": 314.47, "confidence": 89, "daynight": "N", "frp": 14.06, "instrument": "MODIS", "latitude": 48.89774, "longitude": 38.67221, "satellite": "Aqua", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [38.6585, 48.90003, 38.6585, 48.90003], "geometry": {"coordinates": [38.6585, 48.90003], "type": "Point"}, "id": "38", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 292.29, "brightness": 330.9, "confidence": 100, "daynight": "N", "frp": 32.33, "instrument": "MODIS", "latitude": 48.90003, "longitude": 38.6585, "satellite": "Aqua", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [38.66187, 48.90887, 38.66187, 48.90887], "geometry": {"coordinates": [38.66187, 48.90887], "type": "Point"}, "id": "39", "properties": {"acq_date": "2024-07-15", "acq_time": 24, "bright_t31": 291.73, "brightness": 311.49, "confidence": 83, "daynight": "N", "frp": 11.74, "instrument": "MODIS", "latitude": 48.90887, "longitude": 38.66187, "satellite": "Aqua", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [34.29501, 33.20584, 34.29501, 33.20584], "geometry": {"coordinates": [34.29501, 33.20584], "type": "Point"}, "id": "40", "properties": {"acq_date": "2024-07-15", "acq_time": 26, "bright_t31": 297.06, "brightness": 308.61, "confidence": 62, "daynight": "N", "frp": 6.68, "instrument": "MODIS", "latitude": 33.20584, "longitude": 34.29501, "satellite": "Aqua", "scan": 1.15, "track": 1.07, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [34.28306, 33.2079, 34.28306, 33.2079], "geometry": {"coordinates": [34.28306, 33.2079], "type": "Point"}, "id": "41", "properties": {"acq_date": "2024-07-15", "acq_time": 26, "bright_t31": 297.22, "brightness": 308.3, "confidence": 60, "daynight": "N", "frp": 6.37, "instrument": "MODIS", "latitude": 33.2079, "longitude": 34.28306, "satellite": "Aqua", "scan": 1.15, "track": 1.07, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [40.07935, 37.3913, 40.07935, 37.3913], "geometry": {"coordinates": [40.07935, 37.3913], "type": "Point"}, "id": "42", "properties": {"acq_date": "2024-07-15", "acq_time": 26, "bright_t31": 295.88, "brightness": 306.88, "confidence": 70, "daynight": "N", "frp": 13.55, "instrument": "MODIS", "latitude": 37.3913, "longitude": 40.07935, "satellite": "Aqua", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [27.44499, 37.76087, 27.44499, 37.76087], "geometry": {"coordinates": [27.44499, 37.76087], "type": "Point"}, "id": "43", "properties": {"acq_date": "2024-07-15", "acq_time": 26, "bright_t31": 296.84, "brightness": 312.98, "confidence": 86, "daynight": "N", "frp": 18.33, "instrument": "MODIS", "latitude": 37.76087, "longitude": 27.44499, "satellite": "Aqua", "scan": 1.54, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [27.46389, 37.76996, 27.46389, 37.76996], "geometry": {"coordinates": [27.46389, 37.76996], "type": "Point"}, "id": "44", "properties": {"acq_date": "2024-07-15", "acq_time": 26, "bright_t31": 296.69, "brightness": 313.29, "confidence": 87, "daynight": "N", "frp": 19.01, "instrument": "MODIS", "latitude": 37.76996, "longitude": 27.46389, "satellite": "Aqua", "scan": 1.54, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [27.44689, 37.77172, 27.44689, 37.77172], "geometry": {"coordinates": [27.44689, 37.77172], "type": "Point"}, "id": "45", "properties": {"acq_date": "2024-07-15", "acq_time": 26, "bright_t31": 303.54, "brightness": 395.13, "confidence": 100, "daynight": "N", "frp": 422.2, "instrument": "MODIS", "latitude": 37.77172, "longitude": 27.44689, "satellite": "Aqua", "scan": 1.54, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [27.43036, 37.77343, 27.43036, 37.77343], "geometry": {"coordinates": [27.43036, 37.77343], "type": "Point"}, "id": "46", "properties": {"acq_date": "2024-07-15", "acq_time": 26, "bright_t31": 296.41, "brightness": 319.01, "confidence": 98, "daynight": "N", "frp": 27.91, "instrument": "MODIS", "latitude": 37.77343, "longitude": 27.43036, "satellite": "Aqua", "scan": 1.55, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.80176, 28.91275, 19.80176, 28.91275], "geometry": {"coordinates": [19.80176, 28.91275], "type": "Point"}, "id": "47", "properties": {"acq_date": "2024-07-15", "acq_time": 28, "bright_t31": 294.64, "brightness": 309.59, "confidence": 78, "daynight": "N", "frp": 64.84, "instrument": "MODIS", "latitude": 28.91275, "longitude": 19.80176, "satellite": "Aqua", "scan": 3.87, "track": 1.83, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.76317, 28.91548, 19.76317, 28.91548], "geometry": {"coordinates": [19.76317, 28.91548], "type": "Point"}, "id": "48", "properties": {"acq_date": "2024-07-15", "acq_time": 28, "bright_t31": 294.67, "brightness": 309.1, "confidence": 76, "daynight": "N", "frp": 63.56, "instrument": "MODIS", "latitude": 28.91548, "longitude": 19.76317, "satellite": "Aqua", "scan": 3.9, "track": 1.84, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.69548, 29.22934, 19.69548, 29.22934], "geometry": {"coordinates": [19.69548, 29.22934], "type": "Point"}, "id": "49", "properties": {"acq_date": "2024-07-15", "acq_time": 28, "bright_t31": 293.25, "brightness": 305.63, "confidence": 65, "daynight": "N", "frp": 45.77, "instrument": "MODIS", "latitude": 29.22934, "longitude": 19.69548, "satellite": "Aqua", "scan": 3.97, "track": 1.85, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [19.69107, 29.2382, 19.69107, 29.2382], "geometry": {"coordinates": [19.69107, 29.2382], "type": "Point"}, "id": "50", "properties": {"acq_date": "2024-07-15", "acq_time": 28, "bright_t31": 293.13, "brightness": 303.15, "confidence": 54, "daynight": "N", "frp": 35.12, "instrument": "MODIS", "latitude": 29.2382, "longitude": 19.69107, "satellite": "Aqua", "scan": 3.97, "track": 1.85, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [32.31973, 29.69305, 32.31973, 29.69305], "geometry": {"coordinates": [32.31973, 29.69305], "type": "Point"}, "id": "51", "properties": {"acq_date": "2024-07-15", "acq_time": 28, "bright_t31": 299.43, "brightness": 310.44, "confidence": 80, "daynight": "N", "frp": 7.62, "instrument": "MODIS", "latitude": 29.69305, "longitude": 32.31973, "satellite": "Aqua", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.12081, -3.50185, 25.12081, -3.50185], "geometry": {"coordinates": [25.12081, -3.50185], "type": "Point"}, "id": "52", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 294.39, "brightness": 310.03, "confidence": 79, "daynight": "N", "frp": 11.07, "instrument": "MODIS", "latitude": -3.50185, "longitude": 25.12081, "satellite": "Aqua", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.11091, -3.50041, 25.11091, -3.50041], "geometry": {"coordinates": [25.11091, -3.50041], "type": "Point"}, "id": "53", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 294.85, "brightness": 326.76, "confidence": 100, "daynight": "N", "frp": 29.4, "instrument": "MODIS", "latitude": -3.50041, "longitude": 25.11091, "satellite": "Aqua", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.11225, -3.49105, 25.11225, -3.49105], "geometry": {"coordinates": [25.11225, -3.49105], "type": "Point"}, "id": "54", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 294.37, "brightness": 322.56, "confidence": 100, "daynight": "N", "frp": 24.37, "instrument": "MODIS", "latitude": -3.49105, "longitude": 25.11225, "satellite": "Aqua", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.10237, -3.48961, 25.10237, -3.48961], "geometry": {"coordinates": [25.10237, -3.48961], "type": "Point"}, "id": "55", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 294.02, "brightness": 304.82, "confidence": 62, "daynight": "N", "frp": 7.4, "instrument": "MODIS", "latitude": -3.48961, "longitude": 25.10237, "satellite": "Aqua", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [30.54557, -3.20154, 30.54557, -3.20154], "geometry": {"coordinates": [30.54557, -3.20154], "type": "Point"}, "id": "56", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 287.63, "brightness": 301.85, "confidence": 45, "daynight": "N", "frp": 28.73, "instrument": "MODIS", "latitude": -3.20154, "longitude": 30.54557, "satellite": "Aqua", "scan": 2.73, "track": 1.58, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.21034, -1.41386, 29.21034, -1.41386], "geometry": {"coordinates": [29.21034, -1.41386], "type": "Point"}, "id": "57", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 285.89, "brightness": 325.76, "confidence": 100, "daynight": "N", "frp": 72.58, "instrument": "MODIS", "latitude": -1.41386, "longitude": 29.21034, "satellite": "Aqua", "scan": 1.99, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.21918, -1.41058, 29.21918, -1.41058], "geometry": {"coordinates": [29.21918, -1.41058], "type": "Point"}, "id": "58", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 288.81, "brightness": 327.1, "confidence": 85, "daynight": "N", "frp": 72.35, "instrument": "MODIS", "latitude": -1.41058, "longitude": 29.21918, "satellite": "Aqua", "scan": 1.99, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.20013, -1.4077, 29.20013, -1.4077], "geometry": {"coordinates": [29.20013, -1.4077], "type": "Point"}, "id": "59", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 284.43, "brightness": 325.54, "confidence": 99, "daynight": "N", "frp": 67.16, "instrument": "MODIS", "latitude": -1.4077, "longitude": 29.20013, "satellite": "Aqua", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.21271, -1.40181, 29.21271, -1.40181], "geometry": {"coordinates": [29.21271, -1.40181], "type": "Point"}, "id": "60", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 287.83, "brightness": 323.79, "confidence": 85, "daynight": "N", "frp": 62.49, "instrument": "MODIS", "latitude": -1.40181, "longitude": 29.21271, "satellite": "Aqua", "scan": 1.99, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.19515, -1.39932, 29.19515, -1.39932], "geometry": {"coordinates": [29.19515, -1.39932], "type": "Point"}, "id": "61", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 285.96, "brightness": 380.86, "confidence": 100, "daynight": "N", "frp": 431.18, "instrument": "MODIS", "latitude": -1.39932, "longitude": 29.19515, "satellite": "Aqua", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.18003, -1.39715, 29.18003, -1.39715], "geometry": {"coordinates": [29.18003, -1.39715], "type": "Point"}, "id": "62", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 283.14, "brightness": 349.12, "confidence": 100, "daynight": "N", "frp": 168.05, "instrument": "MODIS", "latitude": -1.39715, "longitude": 29.18003, "satellite": "Aqua", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.20323, -1.3958, 29.20323, -1.3958], "geometry": {"coordinates": [29.20323, -1.3958], "type": "Point"}, "id": "63", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 284.05, "brightness": 361.01, "confidence": 100, "daynight": "N", "frp": 245.46, "instrument": "MODIS", "latitude": -1.3958, "longitude": 29.20323, "satellite": "Aqua", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.18726, -1.39341, 29.18726, -1.39341], "geometry": {"coordinates": [29.18726, -1.39341], "type": "Point"}, "id": "64", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 292.58, "brightness": 406.22, "confidence": 100, "daynight": "N", "frp": 795.76, "instrument": "MODIS", "latitude": -1.39341, "longitude": 29.18726, "satellite": "Aqua", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.19909, -1.3875, 29.19909, -1.3875], "geometry": {"coordinates": [29.19909, -1.3875], "type": "Point"}, "id": "65", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 286.42, "brightness": 348.52, "confidence": 100, "daynight": "N", "frp": 164.97, "instrument": "MODIS", "latitude": -1.3875, "longitude": 29.19909, "satellite": "Aqua", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.18301, -1.38522, 29.18301, -1.38522], "geometry": {"coordinates": [29.18301, -1.38522], "type": "Point"}, "id": "66", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 286.52, "brightness": 352.67, "confidence": 100, "daynight": "N", "frp": 188.63, "instrument": "MODIS", "latitude": -1.38522, "longitude": 29.18301, "satellite": "Aqua", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.20747, -1.38407, 29.20747, -1.38407], "geometry": {"coordinates": [29.20747, -1.38407], "type": "Point"}, "id": "67", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 280.69, "brightness": 300.52, "confidence": 17, "daynight": "N", "frp": 15.32, "instrument": "MODIS", "latitude": -1.38407, "longitude": 29.20747, "satellite": "Aqua", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.19044, -1.38153, 29.19044, -1.38153], "geometry": {"coordinates": [29.19044, -1.38153], "type": "Point"}, "id": "68", "properties": {"acq_date": "2024-07-15", "acq_time": 37, "bright_t31": 284.13, "brightness": 309.05, "confidence": 75, "daynight": "N", "frp": 29.69, "instrument": "MODIS", "latitude": -1.38153, "longitude": 29.19044, "satellite": "Aqua", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [16.98715, -11.33999, 16.98715, -11.33999], "geometry": {"coordinates": [16.98715, -11.33999], "type": "Point"}, "id": "69", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 285.47, "brightness": 303.42, "confidence": 55, "daynight": "N", "frp": 15.39, "instrument": "MODIS", "latitude": -11.33999, "longitude": 16.98715, "satellite": "Aqua", "scan": 1.54, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [23.13753, -10.92466, 23.13753, -10.92466], "geometry": {"coordinates": [23.13753, -10.92466], "type": "Point"}, "id": "70", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 288.1, "brightness": 300.69, "confidence": 32, "daynight": "N", "frp": 6.63, "instrument": "MODIS", "latitude": -10.92466, "longitude": 23.13753, "satellite": "Aqua", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.78686, -10.53256, 26.78686, -10.53256], "geometry": {"coordinates": [26.78686, -10.53256], "type": "Point"}, "id": "71", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 287.73, "brightness": 322.11, "confidence": 100, "daynight": "N", "frp": 53.12, "instrument": "MODIS", "latitude": -10.53256, "longitude": 26.78686, "satellite": "Aqua", "scan": 1.8, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.77087, -10.53048, 26.77087, -10.53048], "geometry": {"coordinates": [26.77087, -10.53048], "type": "Point"}, "id": "72", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 285.85, "brightness": 306.55, "confidence": 68, "daynight": "N", "frp": 22.6, "instrument": "MODIS", "latitude": -10.53048, "longitude": 26.77087, "satellite": "Aqua", "scan": 1.79, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.77191, -10.51876, 26.77191, -10.51876], "geometry": {"coordinates": [26.77191, -10.51876], "type": "Point"}, "id": "73", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 286.91, "brightness": 300.73, "confidence": 26, "daynight": "N", "frp": 14.49, "instrument": "MODIS", "latitude": -10.51876, "longitude": 26.77191, "satellite": "Aqua", "scan": 1.79, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.76536, -9.8362, 25.76536, -9.8362], "geometry": {"coordinates": [25.76536, -9.8362], "type": "Point"}, "id": "74", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 291.2, "brightness": 309.23, "confidence": 77, "daynight": "N", "frp": 17.68, "instrument": "MODIS", "latitude": -9.8362, "longitude": 25.76536, "satellite": "Aqua", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [27.38949, -9.48866, 27.38949, -9.48866], "geometry": {"coordinates": [27.38949, -9.48866], "type": "Point"}, "id": "75", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.1, "brightness": 300.9, "confidence": 32, "daynight": "N", "frp": 13.68, "instrument": "MODIS", "latitude": -9.48866, "longitude": 27.38949, "satellite": "Aqua", "scan": 1.93, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [27.39422, -9.48296, 27.39422, -9.48296], "geometry": {"coordinates": [27.39422, -9.48296], "type": "Point"}, "id": "76", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.42, "brightness": 301.94, "confidence": 45, "daynight": "N", "frp": 16.06, "instrument": "MODIS", "latitude": -9.48296, "longitude": 27.39422, "satellite": "Aqua", "scan": 1.93, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [17.71321, -9.45365, 17.71321, -9.45365], "geometry": {"coordinates": [17.71321, -9.45365], "type": "Point"}, "id": "77", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 292.48, "brightness": 307.67, "confidence": 72, "daynight": "N", "frp": 15.87, "instrument": "MODIS", "latitude": -9.45365, "longitude": 17.71321, "satellite": "Aqua", "scan": 1.46, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [17.72096, -9.45036, 17.72096, -9.45036], "geometry": {"coordinates": [17.72096, -9.45036], "type": "Point"}, "id": "78", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 291.27, "brightness": 305.33, "confidence": 48, "daynight": "N", "frp": 12.72, "instrument": "MODIS", "latitude": -9.45036, "longitude": 17.72096, "satellite": "Aqua", "scan": 1.46, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [21.29624, -8.97495, 21.29624, -8.97495], "geometry": {"coordinates": [21.29624, -8.97495], "type": "Point"}, "id": "79", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 287.27, "brightness": 303.18, "confidence": 54, "daynight": "N", "frp": 7.06, "instrument": "MODIS", "latitude": -8.97495, "longitude": 21.29624, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [21.29759, -8.96605, 21.29759, -8.96605], "geometry": {"coordinates": [21.29759, -8.96605], "type": "Point"}, "id": "80", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 287.53, "brightness": 305.59, "confidence": 65, "daynight": "N", "frp": 8.54, "instrument": "MODIS", "latitude": -8.96605, "longitude": 21.29759, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.85643, -8.92818, 26.85643, -8.92818], "geometry": {"coordinates": [26.85643, -8.92818], "type": "Point"}, "id": "81", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.01, "brightness": 306.42, "confidence": 68, "daynight": "N", "frp": 18.37, "instrument": "MODIS", "latitude": -8.92818, "longitude": 26.85643, "satellite": "Aqua", "scan": 1.72, "track": 1.29, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [24.4787, -8.89081, 24.4787, -8.89081], "geometry": {"coordinates": [24.4787, -8.89081], "type": "Point"}, "id": "82", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 286.59, "brightness": 316.29, "confidence": 93, "daynight": "N", "frp": 22.18, "instrument": "MODIS", "latitude": -8.89081, "longitude": 24.4787, "satellite": "Aqua", "scan": 1.19, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [22.48667, -8.7565, 22.48667, -8.7565], "geometry": {"coordinates": [22.48667, -8.7565], "type": "Point"}, "id": "83", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 285.79, "brightness": 305.8, "confidence": 66, "daynight": "N", "frp": 9.2, "instrument": "MODIS", "latitude": -8.7565, "longitude": 22.48667, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [22.47768, -8.75517, 22.47768, -8.75517], "geometry": {"coordinates": [22.47768, -8.75517], "type": "Point"}, "id": "84", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 285.25, "brightness": 301.46, "confidence": 41, "daynight": "N", "frp": 6.63, "instrument": "MODIS", "latitude": -8.75517, "longitude": 22.47768, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [21.74149, -8.67273, 21.74149, -8.67273], "geometry": {"coordinates": [21.74149, -8.67273], "type": "Point"}, "id": "85", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 292.38, "brightness": 337.59, "confidence": 100, "daynight": "N", "frp": 41.25, "instrument": "MODIS", "latitude": -8.67273, "longitude": 21.74149, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [21.41331, -8.60527, 21.41331, -8.60527], "geometry": {"coordinates": [21.41331, -8.60527], "type": "Point"}, "id": "86", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 288.83, "brightness": 302.32, "confidence": 46, "daynight": "N", "frp": 6.07, "instrument": "MODIS", "latitude": -8.60527, "longitude": 21.41331, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [21.41464, -8.59637, 21.41464, -8.59637], "geometry": {"coordinates": [21.41464, -8.59637], "type": "Point"}, "id": "87", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.9, "brightness": 304.17, "confidence": 59, "daynight": "N", "frp": 7.17, "instrument": "MODIS", "latitude": -8.59637, "longitude": 21.41464, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [21.0624, -8.37691, 21.0624, -8.37691], "geometry": {"coordinates": [21.0624, -8.37691], "type": "Point"}, "id": "88", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.35, "brightness": 314.05, "confidence": 88, "daynight": "N", "frp": 14.45, "instrument": "MODIS", "latitude": -8.37691, "longitude": 21.0624, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [21.05325, -8.37552, 21.05325, -8.37552], "geometry": {"coordinates": [21.05325, -8.37552], "type": "Point"}, "id": "89", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.2, "brightness": 339.31, "confidence": 100, "daynight": "N", "frp": 45.64, "instrument": "MODIS", "latitude": -8.37552, "longitude": 21.05325, "satellite": "Aqua", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.67925, -8.29501, 25.67925, -8.29501], "geometry": {"coordinates": [25.67925, -8.29501], "type": "Point"}, "id": "90", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.32, "brightness": 313.33, "confidence": 76, "daynight": "N", "frp": 19.08, "instrument": "MODIS", "latitude": -8.29501, "longitude": 25.67925, "satellite": "Aqua", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.68034, -8.28463, 25.68034, -8.28463], "geometry": {"coordinates": [25.68034, -8.28463], "type": "Point"}, "id": "91", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.13, "brightness": 305.24, "confidence": 54, "daynight": "N", "frp": 10.55, "instrument": "MODIS", "latitude": -8.28463, "longitude": 25.68034, "satellite": "Aqua", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.66811, -8.28293, 25.66811, -8.28293], "geometry": {"coordinates": [25.66811, -8.28293], "type": "Point"}, "id": "92", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 291.59, "brightness": 309.03, "confidence": 76, "daynight": "N", "frp": 14.52, "instrument": "MODIS", "latitude": -8.28293, "longitude": 25.66811, "satellite": "Aqua", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [17.45669, -8.25786, 17.45669, -8.25786], "geometry": {"coordinates": [17.45669, -8.25786], "type": "Point"}, "id": "93", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 288.35, "brightness": 305.59, "confidence": 65, "daynight": "N", "frp": 16.65, "instrument": "MODIS", "latitude": -8.25786, "longitude": 17.45669, "satellite": "Aqua", "scan": 1.6, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [24.04334, -7.7319, 24.04334, -7.7319], "geometry": {"coordinates": [24.04334, -7.7319], "type": "Point"}, "id": "94", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 284.73, "brightness": 302.78, "confidence": 51, "daynight": "N", "frp": 8.53, "instrument": "MODIS", "latitude": -7.7319, "longitude": 24.04334, "satellite": "Aqua", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.55518, -7.70453, 26.55518, -7.70453], "geometry": {"coordinates": [26.55518, -7.70453], "type": "Point"}, "id": "95", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 292.49, "brightness": 305.67, "confidence": 65, "daynight": "N", "frp": 14.11, "instrument": "MODIS", "latitude": -7.70453, "longitude": 26.55518, "satellite": "Aqua", "scan": 1.56, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.85118, -7.64466, 25.85118, -7.64466], "geometry": {"coordinates": [25.85118, -7.64466], "type": "Point"}, "id": "96", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.28, "brightness": 300.81, "confidence": 34, "daynight": "N", "frp": 9.62, "instrument": "MODIS", "latitude": -7.64466, "longitude": 25.85118, "satellite": "Aqua", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [27.01186, -7.64261, 27.01186, -7.64261], "geometry": {"coordinates": [27.01186, -7.64261], "type": "Point"}, "id": "97", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 288.91, "brightness": 308.67, "confidence": 75, "daynight": "N", "frp": 22.07, "instrument": "MODIS", "latitude": -7.64261, "longitude": 27.01186, "satellite": "Aqua", "scan": 1.68, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [21.06663, -7.62094, 21.06663, -7.62094], "geometry": {"coordinates": [21.06663, -7.62094], "type": "Point"}, "id": "98", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 288.52, "brightness": 301.35, "confidence": 26, "daynight": "N", "frp": 5.27, "instrument": "MODIS", "latitude": -7.62094, "longitude": 21.06663, "satellite": "Aqua", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [21.05748, -7.61955, 21.05748, -7.61955], "geometry": {"coordinates": [21.05748, -7.61955], "type": "Point"}, "id": "99", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.46, "brightness": 321.98, "confidence": 100, "daynight": "N", "frp": 21.42, "instrument": "MODIS", "latitude": -7.61955, "longitude": 21.05748, "satellite": "Aqua", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.71872, -7.61366, 26.71872, -7.61366], "geometry": {"coordinates": [26.71872, -7.61366], "type": "Point"}, "id": "100", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.17, "brightness": 321.54, "confidence": 100, "daynight": "N", "frp": 39.5, "instrument": "MODIS", "latitude": -7.61366, "longitude": 26.71872, "satellite": "Aqua", "scan": 1.6, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [21.06799, -7.61193, 21.06799, -7.61193], "geometry": {"coordinates": [21.06799, -7.61193], "type": "Point"}, "id": "101", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.31, "brightness": 325.74, "confidence": 100, "daynight": "N", "frp": 25.72, "instrument": "MODIS", "latitude": -7.61193, "longitude": 21.06799, "satellite": "Aqua", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [21.05883, -7.61054, 21.05883, -7.61054], "geometry": {"coordinates": [21.05883, -7.61054], "type": "Point"}, "id": "102", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 291.45, "brightness": 350.69, "confidence": 100, "daynight": "N", "frp": 68.03, "instrument": "MODIS", "latitude": -7.61054, "longitude": 21.05883, "satellite": "Aqua", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [21.04966, -7.60914, 21.04966, -7.60914], "geometry": {"coordinates": [21.04966, -7.60914], "type": "Point"}, "id": "103", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.48, "brightness": 308.98, "confidence": 76, "daynight": "N", "frp": 10.16, "instrument": "MODIS", "latitude": -7.60914, "longitude": 21.04966, "satellite": "Aqua", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.73466, -7.60458, 26.73466, -7.60458], "geometry": {"coordinates": [26.73466, -7.60458], "type": "Point"}, "id": "104", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 287.57, "brightness": 302.1, "confidence": 25, "daynight": "N", "frp": 10.62, "instrument": "MODIS", "latitude": -7.60458, "longitude": 26.73466, "satellite": "Aqua", "scan": 1.6, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.7202, -7.60259, 26.7202, -7.60259], "geometry": {"coordinates": [26.7202, -7.60259], "type": "Point"}, "id": "105", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 291.41, "brightness": 326.85, "confidence": 100, "daynight": "N", "frp": 51.14, "instrument": "MODIS", "latitude": -7.60259, "longitude": 26.7202, "satellite": "Aqua", "scan": 1.6, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.97102, -7.31492, 25.97102, -7.31492], "geometry": {"coordinates": [25.97102, -7.31492], "type": "Point"}, "id": "106", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.77, "brightness": 302.49, "confidence": 49, "daynight": "N", "frp": 10.11, "instrument": "MODIS", "latitude": -7.31492, "longitude": 25.97102, "satellite": "Aqua", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.95912, -7.31325, 25.95912, -7.31325], "geometry": {"coordinates": [25.95912, -7.31325], "type": "Point"}, "id": "107", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.3, "brightness": 300.07, "confidence": 15, "daynight": "N", "frp": 7.83, "instrument": "MODIS", "latitude": -7.31325, "longitude": 25.95912, "satellite": "Aqua", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.08446, -7.21968, 25.08446, -7.21968], "geometry": {"coordinates": [25.08446, -7.21968], "type": "Point"}, "id": "108", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 285.67, "brightness": 307.5, "confidence": 72, "daynight": "N", "frp": 13.43, "instrument": "MODIS", "latitude": -7.21968, "longitude": 25.08446, "satellite": "Aqua", "scan": 1.23, "track": 1.1, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.07342, -7.21808, 25.07342, -7.21808], "geometry": {"coordinates": [25.07342, -7.21808], "type": "Point"}, "id": "109", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 293.05, "brightness": 380.59, "confidence": 100, "daynight": "N", "frp": 213.53, "instrument": "MODIS", "latitude": -7.21808, "longitude": 25.07342, "satellite": "Aqua", "scan": 1.23, "track": 1.1, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.07478, -7.20832, 25.07478, -7.20832], "geometry": {"coordinates": [25.07478, -7.20832], "type": "Point"}, "id": "110", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.47, "brightness": 318.75, "confidence": 97, "daynight": "N", "frp": 24.5, "instrument": "MODIS", "latitude": -7.20832, "longitude": 25.07478, "satellite": "Aqua", "scan": 1.23, "track": 1.1, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.11097, -7.15263, 29.11097, -7.15263], "geometry": {"coordinates": [29.11097, -7.15263], "type": "Point"}, "id": "111", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 284.7, "brightness": 308.59, "confidence": 75, "daynight": "N", "frp": 40.03, "instrument": "MODIS", "latitude": -7.15263, "longitude": 29.11097, "satellite": "Aqua", "scan": 2.43, "track": 1.5, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [29.11685, -7.14283, 29.11685, -7.14283], "geometry": {"coordinates": [29.11685, -7.14283], "type": "Point"}, "id": "112", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 285.31, "brightness": 303.22, "confidence": 54, "daynight": "N", "frp": 28.42, "instrument": "MODIS", "latitude": -7.14283, "longitude": 29.11685, "satellite": "Aqua", "scan": 2.43, "track": 1.5, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.18424, -6.92757, 26.18424, -6.92757], "geometry": {"coordinates": [26.18424, -6.92757], "type": "Point"}, "id": "113", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.39, "brightness": 301.97, "confidence": 46, "daynight": "N", "frp": 9.86, "instrument": "MODIS", "latitude": -6.92757, "longitude": 26.18424, "satellite": "Aqua", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.24031, -6.90337, 26.24031, -6.90337], "geometry": {"coordinates": [26.24031, -6.90337], "type": "Point"}, "id": "114", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 288.02, "brightness": 306.11, "confidence": 67, "daynight": "N", "frp": 15.02, "instrument": "MODIS", "latitude": -6.90337, "longitude": 26.24031, "satellite": "Aqua", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [12.39611, -6.85097, 12.39611, -6.85097], "geometry": {"coordinates": [12.39611, -6.85097], "type": "Point"}, "id": "115", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.02, "brightness": 314.6, "confidence": 86, "daynight": "N", "frp": 110.71, "instrument": "MODIS", "latitude": -6.85097, "longitude": 12.39611, "satellite": "Aqua", "scan": 4.22, "track": 1.9, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.05077, -6.3758, 25.05077, -6.3758], "geometry": {"coordinates": [25.05077, -6.3758], "type": "Point"}, "id": "116", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 292.64, "brightness": 342.66, "confidence": 100, "daynight": "N", "frp": 63.6, "instrument": "MODIS", "latitude": -6.3758, "longitude": 25.05077, "satellite": "Aqua", "scan": 1.2, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.04018, -6.37427, 25.04018, -6.37427], "geometry": {"coordinates": [25.04018, -6.37427], "type": "Point"}, "id": "117", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 294.44, "brightness": 362.12, "confidence": 100, "daynight": "N", "frp": 120.66, "instrument": "MODIS", "latitude": -6.37427, "longitude": 25.04018, "satellite": "Aqua", "scan": 1.19, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.05214, -6.36615, 25.05214, -6.36615], "geometry": {"coordinates": [25.05214, -6.36615], "type": "Point"}, "id": "118", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 291.88, "brightness": 336.99, "confidence": 100, "daynight": "N", "frp": 51.54, "instrument": "MODIS", "latitude": -6.36615, "longitude": 25.05214, "satellite": "Aqua", "scan": 1.2, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.0416, -6.36464, 25.0416, -6.36464], "geometry": {"coordinates": [25.0416, -6.36464], "type": "Point"}, "id": "119", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 296.05, "brightness": 381.48, "confidence": 100, "daynight": "N", "frp": 208.45, "instrument": "MODIS", "latitude": -6.36464, "longitude": 25.0416, "satellite": "Aqua", "scan": 1.19, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.043, -6.355, 25.043, -6.355], "geometry": {"coordinates": [25.043, -6.355], "type": "Point"}, "id": "120", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 288.67, "brightness": 310.05, "confidence": 79, "daynight": "N", "frp": 14.3, "instrument": "MODIS", "latitude": -6.355, "longitude": 25.043, "satellite": "Aqua", "scan": 1.19, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.98242, -6.12102, 25.98242, -6.12102], "geometry": {"coordinates": [25.98242, -6.12102], "type": "Point"}, "id": "121", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 288.82, "brightness": 300.44, "confidence": 27, "daynight": "N", "frp": 7.61, "instrument": "MODIS", "latitude": -6.12102, "longitude": 25.98242, "satellite": "Aqua", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [18.37257, -6.1194, 18.37257, -6.1194], "geometry": {"coordinates": [18.37257, -6.1194], "type": "Point"}, "id": "122", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.39, "brightness": 306.78, "confidence": 69, "daynight": "N", "frp": 15.3, "instrument": "MODIS", "latitude": -6.1194, "longitude": 18.37257, "satellite": "Aqua", "scan": 1.49, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.00016, -6.08182, 26.00016, -6.08182], "geometry": {"coordinates": [26.00016, -6.08182], "type": "Point"}, "id": "123", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 291.01, "brightness": 303.79, "confidence": 49, "daynight": "N", "frp": 9.18, "instrument": "MODIS", "latitude": -6.08182, "longitude": 26.00016, "satellite": "Aqua", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.98386, -6.07146, 25.98386, -6.07146], "geometry": {"coordinates": [25.98386, -6.07146], "type": "Point"}, "id": "124", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 291.71, "brightness": 317.31, "confidence": 95, "daynight": "N", "frp": 24.15, "instrument": "MODIS", "latitude": -6.07146, "longitude": 25.98386, "satellite": "Aqua", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [25.97201, -6.06974, 25.97201, -6.06974], "geometry": {"coordinates": [25.97201, -6.06974], "type": "Point"}, "id": "125", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 294.79, "brightness": 376.09, "confidence": 100, "daynight": "N", "frp": 214.93, "instrument": "MODIS", "latitude": -6.06974, "longitude": 25.97201, "satellite": "Aqua", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.33563, -5.82454, 26.33563, -5.82454], "geometry": {"coordinates": [26.33563, -5.82454], "type": "Point"}, "id": "126", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.17, "brightness": 300.23, "confidence": 22, "daynight": "N", "frp": 8.3, "instrument": "MODIS", "latitude": -5.82454, "longitude": 26.33563, "satellite": "Aqua", "scan": 1.41, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.99167, -5.73433, 26.99167, -5.73433], "geometry": {"coordinates": [26.99167, -5.73433], "type": "Point"}, "id": "127", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.57, "brightness": 301.23, "confidence": 39, "daynight": "N", "frp": 9.6, "instrument": "MODIS", "latitude": -5.73433, "longitude": 26.99167, "satellite": "Aqua", "scan": 1.57, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.99317, -5.72338, 26.99317, -5.72338], "geometry": {"coordinates": [26.99317, -5.72338], "type": "Point"}, "id": "128", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 294.62, "brightness": 355.34, "confidence": 100, "daynight": "N", "frp": 145.57, "instrument": "MODIS", "latitude": -5.72338, "longitude": 26.99317, "satellite": "Aqua", "scan": 1.57, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.97932, -5.72142, 26.97932, -5.72142], "geometry": {"coordinates": [26.97932, -5.72142], "type": "Point"}, "id": "129", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.58, "brightness": 326.48, "confidence": 100, "daynight": "N", "frp": 48.32, "instrument": "MODIS", "latitude": -5.72142, "longitude": 26.97932, "satellite": "Aqua", "scan": 1.57, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.16407, -5.09515, 26.16407, -5.09515], "geometry": {"coordinates": [26.16407, -5.09515], "type": "Point"}, "id": "130", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 292.21, "brightness": 302.25, "confidence": 48, "daynight": "N", "frp": 7.32, "instrument": "MODIS", "latitude": -5.09515, "longitude": 26.16407, "satellite": "Aqua", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [26.17062, -5.09501, 26.17062, -5.09501], "geometry": {"coordinates": [26.17062, -5.09501], "type": "Point"}, "id": "131", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 292.3, "brightness": 303.14, "confidence": 47, "daynight": "N", "frp": 8.31, "instrument": "MODIS", "latitude": -5.09501, "longitude": 26.17062, "satellite": "Aqua", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [27.0859, -5.06065, 27.0859, -5.06065], "geometry": {"coordinates": [27.0859, -5.06065], "type": "Point"}, "id": "132", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 285.94, "brightness": 300.61, "confidence": 24, "daynight": "N", "frp": 8.03, "instrument": "MODIS", "latitude": -5.06065, "longitude": 27.0859, "satellite": "Aqua", "scan": 1.56, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.86242, -4.8079, 15.86242, -4.8079], "geometry": {"coordinates": [15.86242, -4.8079], "type": "Point"}, "id": "133", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.05, "brightness": 301.01, "confidence": 36, "daynight": "N", "frp": 19.44, "instrument": "MODIS", "latitude": -4.8079, "longitude": 15.86242, "satellite": "Aqua", "scan": 2.46, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.84143, -4.8046, 15.84143, -4.8046], "geometry": {"coordinates": [15.84143, -4.8046], "type": "Point"}, "id": "134", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.15, "brightness": 311.22, "confidence": 82, "daynight": "N", "frp": 43.54, "instrument": "MODIS", "latitude": -4.8046, "longitude": 15.84143, "satellite": "Aqua", "scan": 2.47, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.85805, -4.80424, 15.85805, -4.80424], "geometry": {"coordinates": [15.85805, -4.80424], "type": "Point"}, "id": "135", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.28, "brightness": 308.18, "confidence": 74, "daynight": "N", "frp": 34.33, "instrument": "MODIS", "latitude": -4.80424, "longitude": 15.85805, "satellite": "Aqua", "scan": 2.46, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [15.83696, -4.80076, 15.83696, -4.80076], "geometry": {"coordinates": [15.83696, -4.80076], "type": "Point"}, "id": "136", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 288.98, "brightness": 306.37, "confidence": 68, "daynight": "N", "frp": 30.04, "instrument": "MODIS", "latitude": -4.80076, "longitude": 15.83696, "satellite": "Aqua", "scan": 2.47, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [28.06184, -4.52978, 28.06184, -4.52978], "geometry": {"coordinates": [28.06184, -4.52978], "type": "Point"}, "id": "137", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.2, "brightness": 305.06, "confidence": 9, "daynight": "N", "frp": 15.55, "instrument": "MODIS", "latitude": -4.52978, "longitude": 28.06184, "satellite": "Aqua", "scan": 1.81, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [28.06967, -4.52309, 28.06967, -4.52309], "geometry": {"coordinates": [28.06967, -4.52309], "type": "Point"}, "id": "138", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.88, "brightness": 304.94, "confidence": 62, "daynight": "N", "frp": 16.34, "instrument": "MODIS", "latitude": -4.52309, "longitude": 28.06967, "satellite": "Aqua", "scan": 1.81, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [28.05347, -4.52075, 28.05347, -4.52075], "geometry": {"coordinates": [28.05347, -4.52075], "type": "Point"}, "id": "139", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 291.28, "brightness": 313.14, "confidence": 86, "daynight": "N", "frp": 30.12, "instrument": "MODIS", "latitude": -4.52075, "longitude": 28.05347, "satellite": "Aqua", "scan": 1.81, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [28.03759, -4.51847, 28.03759, -4.51847], "geometry": {"coordinates": [28.03759, -4.51847], "type": "Point"}, "id": "140", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.45, "brightness": 303.02, "confidence": 38, "daynight": "N", "frp": 13.48, "instrument": "MODIS", "latitude": -4.51847, "longitude": 28.03759, "satellite": "Aqua", "scan": 1.8, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [13.11907, -4.32172, 13.11907, -4.32172], "geometry": {"coordinates": [13.11907, -4.32172], "type": "Point"}, "id": "141", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.74, "brightness": 303.56, "confidence": 56, "daynight": "N", "frp": 47.89, "instrument": "MODIS", "latitude": -4.32172, "longitude": 13.11907, "satellite": "Aqua", "scan": 4.14, "track": 1.88, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [27.64865, -4.26716, 27.64865, -4.26716], "geometry": {"coordinates": [27.64865, -4.26716], "type": "Point"}, "id": "142", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 289.93, "brightness": 310.06, "confidence": 79, "daynight": "N", "frp": 21.06, "instrument": "MODIS", "latitude": -4.26716, "longitude": 27.64865, "satellite": "Aqua", "scan": 1.67, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [27.66465, -4.25797, 27.66465, -4.25797], "geometry": {"coordinates": [27.66465, -4.25797], "type": "Point"}, "id": "143", "properties": {"acq_date": "2024-07-15", "acq_time": 39, "bright_t31": 290.16, "brightness": 306.93, "confidence": 70, "daynight": "N", "frp": 16.91, "instrument": "MODIS", "latitude": -4.25797, "longitude": 27.66465, "satellite": "Aqua", "scan": 1.67, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [23.32142, -19.4692, 23.32142, -19.4692], "geometry": {"coordinates": [23.32142, -19.4692], "type": "Point"}, "id": "144", "properties": {"acq_date": "2024-07-15", "acq_time": 41, "bright_t31": 283.23, "brightness": 301.32, "confidence": 40, "daynight": "N", "frp": 13.32, "instrument": "MODIS", "latitude": -19.4692, "longitude": 23.32142, "satellite": "Aqua", "scan": 1.37, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [20.46864, -17.62191, 20.46864, -17.62191], "geometry": {"coordinates": [20.46864, -17.62191], "type": "Point"}, "id": "145", "properties": {"acq_date": "2024-07-15", "acq_time": 41, "bright_t31": 278.76, "brightness": 300.66, "confidence": 32, "daynight": "N", "frp": 8.02, "instrument": "MODIS", "latitude": -17.62191, "longitude": 20.46864, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.25437, -21.9004, -47.25437, -21.9004], "geometry": {"coordinates": [-47.25437, -21.9004], "type": "Point"}, "id": "146", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 285.1, "brightness": 312.09, "confidence": 84, "daynight": "N", "frp": 18.58, "instrument": "MODIS", "latitude": -21.9004, "longitude": -47.25437, "satellite": "Terra", "scan": 1.28, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.24207, -21.89894, -47.24207, -21.89894], "geometry": {"coordinates": [-47.24207, -21.89894], "type": "Point"}, "id": "147", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 289.55, "brightness": 360.87, "confidence": 100, "daynight": "N", "frp": 130.48, "instrument": "MODIS", "latitude": -21.89894, "longitude": -47.24207, "satellite": "Terra", "scan": 1.28, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.63119, -21.42577, -49.63119, -21.42577], "geometry": {"coordinates": [-49.63119, -21.42577], "type": "Point"}, "id": "148", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 289.31, "brightness": 320.58, "confidence": 100, "daynight": "N", "frp": 47.52, "instrument": "MODIS", "latitude": -21.42577, "longitude": -49.63119, "satellite": "Terra", "scan": 1.82, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-44.85173, -21.34801, -44.85173, -21.34801], "geometry": {"coordinates": [-44.85173, -21.34801], "type": "Point"}, "id": "149", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 286.52, "brightness": 305.2, "confidence": 63, "daynight": "N", "frp": 9.51, "instrument": "MODIS", "latitude": -21.34801, "longitude": -44.85173, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-42.78032, -21.16662, -42.78032, -21.16662], "geometry": {"coordinates": [-42.78032, -21.16662], "type": "Point"}, "id": "150", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 287.87, "brightness": 311.84, "confidence": 83, "daynight": "N", "frp": 13.18, "instrument": "MODIS", "latitude": -21.16662, "longitude": -42.78032, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-42.34387, -21.08336, -42.34387, -21.08336], "geometry": {"coordinates": [-42.34387, -21.08336], "type": "Point"}, "id": "151", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 289.96, "brightness": 301.76, "confidence": 44, "daynight": "N", "frp": 6.15, "instrument": "MODIS", "latitude": -21.08336, "longitude": -42.34387, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.99318, -21.00289, -46.99318, -21.00289], "geometry": {"coordinates": [-46.99318, -21.00289], "type": "Point"}, "id": "152", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 284.51, "brightness": 301.9, "confidence": 45, "daynight": "N", "frp": 9.06, "instrument": "MODIS", "latitude": -21.00289, "longitude": -46.99318, "satellite": "Terra", "scan": 1.21, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.75856, -20.63949, -47.75856, -20.63949], "geometry": {"coordinates": [-47.75856, -20.63949], "type": "Point"}, "id": "153", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 285.61, "brightness": 310.34, "confidence": 80, "daynight": "N", "frp": 18.75, "instrument": "MODIS", "latitude": -20.63949, "longitude": -47.75856, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-43.76248, -20.54395, -43.76248, -20.54395], "geometry": {"coordinates": [-43.76248, -20.54395], "type": "Point"}, "id": "154", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 287.53, "brightness": 310.4, "confidence": 80, "daynight": "N", "frp": 12.37, "instrument": "MODIS", "latitude": -20.54395, "longitude": -43.76248, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-41.37718, -20.48438, -41.37718, -20.48438], "geometry": {"coordinates": [-41.37718, -20.48438], "type": "Point"}, "id": "155", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 288.52, "brightness": 308.71, "confidence": 75, "daynight": "N", "frp": 13.35, "instrument": "MODIS", "latitude": -20.48438, "longitude": -41.37718, "satellite": "Terra", "scan": 1.2, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-40.2637, -19.83568, -40.2637, -19.83568], "geometry": {"coordinates": [-40.2637, -19.83568], "type": "Point"}, "id": "156", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 288.96, "brightness": 301.01, "confidence": 36, "daynight": "N", "frp": 8.48, "instrument": "MODIS", "latitude": -19.83568, "longitude": -40.2637, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-42.5432, -19.48169, -42.5432, -19.48169], "geometry": {"coordinates": [-42.5432, -19.48169], "type": "Point"}, "id": "157", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 290.94, "brightness": 301.86, "confidence": 45, "daynight": "N", "frp": 5.89, "instrument": "MODIS", "latitude": -19.48169, "longitude": -42.5432, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-42.53297, -19.48017, -42.53297, -19.48017], "geometry": {"coordinates": [-42.53297, -19.48017], "type": "Point"}, "id": "158", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 290.66, "brightness": 305.92, "confidence": 66, "daynight": "N", "frp": 8.67, "instrument": "MODIS", "latitude": -19.48017, "longitude": -42.53297, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-41.00993, -19.10379, -41.00993, -19.10379], "geometry": {"coordinates": [-41.00993, -19.10379], "type": "Point"}, "id": "159", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 289.3, "brightness": 338.07, "confidence": 100, "daynight": "N", "frp": 63.49, "instrument": "MODIS", "latitude": -19.10379, "longitude": -41.00993, "satellite": "Terra", "scan": 1.32, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-40.99842, -19.10195, -40.99842, -19.10195], "geometry": {"coordinates": [-40.99842, -19.10195], "type": "Point"}, "id": "160", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 286.74, "brightness": 320.23, "confidence": 100, "daynight": "N", "frp": 30.71, "instrument": "MODIS", "latitude": -19.10195, "longitude": -40.99842, "satellite": "Terra", "scan": 1.32, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-41.01258, -19.09385, -41.01258, -19.09385], "geometry": {"coordinates": [-41.01258, -19.09385], "type": "Point"}, "id": "161", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 287.95, "brightness": 340.76, "confidence": 100, "daynight": "N", "frp": 70.48, "instrument": "MODIS", "latitude": -19.09385, "longitude": -41.01258, "satellite": "Terra", "scan": 1.32, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-41.00058, -19.09192, -41.00058, -19.09192], "geometry": {"coordinates": [-41.00058, -19.09192], "type": "Point"}, "id": "162", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 285.71, "brightness": 321.69, "confidence": 100, "daynight": "N", "frp": 33.09, "instrument": "MODIS", "latitude": -19.09192, "longitude": -41.00058, "satellite": "Terra", "scan": 1.32, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.63472, -18.60795, -47.63472, -18.60795], "geometry": {"coordinates": [-47.63472, -18.60795], "type": "Point"}, "id": "163", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 285.27, "brightness": 301.07, "confidence": 37, "daynight": "N", "frp": 8.79, "instrument": "MODIS", "latitude": -18.60795, "longitude": -47.63472, "satellite": "Terra", "scan": 1.23, "track": 1.1, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-40.82522, -18.38847, -40.82522, -18.38847], "geometry": {"coordinates": [-40.82522, -18.38847], "type": "Point"}, "id": "164", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 288.96, "brightness": 308.54, "confidence": 75, "daynight": "N", "frp": 15.36, "instrument": "MODIS", "latitude": -18.38847, "longitude": -40.82522, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.88828, -18.33354, -49.88828, -18.33354], "geometry": {"coordinates": [-49.88828, -18.33354], "type": "Point"}, "id": "165", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 291.59, "brightness": 323.93, "confidence": 100, "daynight": "N", "frp": 52.07, "instrument": "MODIS", "latitude": -18.33354, "longitude": -49.88828, "satellite": "Terra", "scan": 1.72, "track": 1.29, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.87198, -18.33162, -49.87198, -18.33162], "geometry": {"coordinates": [-49.87198, -18.33162], "type": "Point"}, "id": "166", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 290.09, "brightness": 307.9, "confidence": 73, "daynight": "N", "frp": 21.37, "instrument": "MODIS", "latitude": -18.33162, "longitude": -49.87198, "satellite": "Terra", "scan": 1.72, "track": 1.29, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.88206, -18.33125, -49.88206, -18.33125], "geometry": {"coordinates": [-49.88206, -18.33125], "type": "Point"}, "id": "167", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 292.1, "brightness": 329.72, "confidence": 100, "daynight": "N", "frp": 66.01, "instrument": "MODIS", "latitude": -18.33125, "longitude": -49.88206, "satellite": "Terra", "scan": 1.72, "track": 1.29, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-44.27709, -18.00176, -44.27709, -18.00176], "geometry": {"coordinates": [-44.27709, -18.00176], "type": "Point"}, "id": "168", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 285.63, "brightness": 319.14, "confidence": 98, "daynight": "N", "frp": 18.95, "instrument": "MODIS", "latitude": -18.00176, "longitude": -44.27709, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-44.24904, -17.99776, -44.24904, -17.99776], "geometry": {"coordinates": [-44.24904, -17.99776], "type": "Point"}, "id": "169", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 287.06, "brightness": 300.18, "confidence": 20, "daynight": "N", "frp": 4.52, "instrument": "MODIS", "latitude": -17.99776, "longitude": -44.24904, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-42.63005, -17.31619, -42.63005, -17.31619], "geometry": {"coordinates": [-42.63005, -17.31619], "type": "Point"}, "id": "170", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 286.97, "brightness": 323.09, "confidence": 100, "daynight": "N", "frp": 27.53, "instrument": "MODIS", "latitude": -17.31619, "longitude": -42.63005, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-42.61943, -17.31457, -42.61943, -17.31457], "geometry": {"coordinates": [-42.61943, -17.31457], "type": "Point"}, "id": "171", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 287.8, "brightness": 303.14, "confidence": 53, "daynight": "N", "frp": 8.19, "instrument": "MODIS", "latitude": -17.31457, "longitude": -42.61943, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-43.35333, -16.62322, -43.35333, -16.62322], "geometry": {"coordinates": [-43.35333, -16.62322], "type": "Point"}, "id": "172", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 284.25, "brightness": 308.11, "confidence": 74, "daynight": "N", "frp": 12.26, "instrument": "MODIS", "latitude": -16.62322, "longitude": -43.35333, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-43.34343, -16.62176, -43.34343, -16.62176], "geometry": {"coordinates": [-43.34343, -16.62176], "type": "Point"}, "id": "173", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 284.32, "brightness": 307.32, "confidence": 71, "daynight": "N", "frp": 11.58, "instrument": "MODIS", "latitude": -16.62176, "longitude": -43.34343, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.73613, -16.0289, -46.73613, -16.0289], "geometry": {"coordinates": [-46.73613, -16.0289], "type": "Point"}, "id": "174", "properties": {"acq_date": "2024-07-15", "acq_time": 54, "bright_t31": 285.16, "brightness": 300.27, "confidence": 23, "daynight": "N", "frp": 6.56, "instrument": "MODIS", "latitude": -16.0289, "longitude": -46.73613, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.98374, -12.48237, -47.98374, -12.48237], "geometry": {"coordinates": [-47.98374, -12.48237], "type": "Point"}, "id": "175", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 290.28, "brightness": 303.7, "confidence": 57, "daynight": "N", "frp": 7.68, "instrument": "MODIS", "latitude": -12.48237, "longitude": -47.98374, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.97372, -12.48104, -47.97372, -12.48104], "geometry": {"coordinates": [-47.97372, -12.48104], "type": "Point"}, "id": "176", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 289.88, "brightness": 306.24, "confidence": 67, "daynight": "N", "frp": 9.45, "instrument": "MODIS", "latitude": -12.48104, "longitude": -47.97372, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-54.91722, -11.1652, -54.91722, -11.1652], "geometry": {"coordinates": [-54.91722, -11.1652], "type": "Point"}, "id": "177", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 290.33, "brightness": 301.1, "confidence": 38, "daynight": "N", "frp": 29.05, "instrument": "MODIS", "latitude": -11.1652, "longitude": -54.91722, "satellite": "Terra", "scan": 3.34, "track": 1.72, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-50.15403, -11.0501, -50.15403, -11.0501], "geometry": {"coordinates": [-50.15403, -11.0501], "type": "Point"}, "id": "178", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 290.74, "brightness": 300.76, "confidence": 29, "daynight": "N", "frp": 7.41, "instrument": "MODIS", "latitude": -11.0501, "longitude": -50.15403, "satellite": "Terra", "scan": 1.42, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-44.51317, -10.6814, -44.51317, -10.6814], "geometry": {"coordinates": [-44.51317, -10.6814], "type": "Point"}, "id": "179", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 289.37, "brightness": 308.37, "confidence": 74, "daynight": "N", "frp": 10.77, "instrument": "MODIS", "latitude": -10.6814, "longitude": -44.51317, "satellite": "Terra", "scan": 1.1, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-44.50337, -10.67997, -44.50337, -10.67997], "geometry": {"coordinates": [-44.50337, -10.67997], "type": "Point"}, "id": "180", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 288.8, "brightness": 317.44, "confidence": 95, "daynight": "N", "frp": 18.99, "instrument": "MODIS", "latitude": -10.67997, "longitude": -44.50337, "satellite": "Terra", "scan": 1.1, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.53489, -10.60135, -46.53489, -10.60135], "geometry": {"coordinates": [-46.53489, -10.60135], "type": "Point"}, "id": "181", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 291.49, "brightness": 313.15, "confidence": 86, "daynight": "N", "frp": 12.54, "instrument": "MODIS", "latitude": -10.60135, "longitude": -46.53489, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-42.53119, -10.52915, -42.53119, -10.52915], "geometry": {"coordinates": [-42.53119, -10.52915], "type": "Point"}, "id": "182", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 293.45, "brightness": 328.35, "confidence": 100, "daynight": "N", "frp": 44.72, "instrument": "MODIS", "latitude": -10.52915, "longitude": -42.53119, "satellite": "Terra", "scan": 1.42, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.11995, -10.04556, -48.11995, -10.04556], "geometry": {"coordinates": [-48.11995, -10.04556], "type": "Point"}, "id": "183", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 289.95, "brightness": 300.14, "confidence": 19, "daynight": "N", "frp": 4.46, "instrument": "MODIS", "latitude": -10.04556, "longitude": -48.11995, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.86147, -9.96397, -47.86147, -9.96397], "geometry": {"coordinates": [-47.86147, -9.96397], "type": "Point"}, "id": "184", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 292.7, "brightness": 333.73, "confidence": 100, "daynight": "N", "frp": 37.5, "instrument": "MODIS", "latitude": -9.96397, "longitude": -47.86147, "satellite": "Terra", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.85213, -9.9627, -47.85213, -9.9627], "geometry": {"coordinates": [-47.85213, -9.9627], "type": "Point"}, "id": "185", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 291.26, "brightness": 327.89, "confidence": 100, "daynight": "N", "frp": 29.21, "instrument": "MODIS", "latitude": -9.9627, "longitude": -47.85213, "satellite": "Terra", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-40.25031, -9.31289, -40.25031, -9.31289], "geometry": {"coordinates": [-40.25031, -9.31289], "type": "Point"}, "id": "186", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 291.94, "brightness": 312.58, "confidence": 85, "daynight": "N", "frp": 36.12, "instrument": "MODIS", "latitude": -9.31289, "longitude": -40.25031, "satellite": "Terra", "scan": 2.22, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-40.2305, -9.30974, -40.2305, -9.30974], "geometry": {"coordinates": [-40.2305, -9.30974], "type": "Point"}, "id": "187", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 292.19, "brightness": 316.52, "confidence": 93, "daynight": "N", "frp": 46.64, "instrument": "MODIS", "latitude": -9.30974, "longitude": -40.2305, "satellite": "Terra", "scan": 2.23, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.9706, -8.87421, -46.9706, -8.87421], "geometry": {"coordinates": [-46.9706, -8.87421], "type": "Point"}, "id": "188", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 291.3, "brightness": 302.55, "confidence": 30, "daynight": "N", "frp": 4.28, "instrument": "MODIS", "latitude": -8.87421, "longitude": -46.9706, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.34265, -8.54845, -47.34265, -8.54845], "geometry": {"coordinates": [-47.34265, -8.54845], "type": "Point"}, "id": "189", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 292.29, "brightness": 305.45, "confidence": 59, "daynight": "N", "frp": 6.26, "instrument": "MODIS", "latitude": -8.54845, "longitude": -47.34265, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.24838, -8.20226, -46.24838, -8.20226], "geometry": {"coordinates": [-46.24838, -8.20226], "type": "Point"}, "id": "190", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 291.3, "brightness": 305.79, "confidence": 47, "daynight": "N", "frp": 6.87, "instrument": "MODIS", "latitude": -8.20226, "longitude": -46.24838, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.24968, -8.19335, -46.24968, -8.19335], "geometry": {"coordinates": [-46.24968, -8.19335], "type": "Point"}, "id": "191", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 291.31, "brightness": 307.66, "confidence": 71, "daynight": "N", "frp": 8.0, "instrument": "MODIS", "latitude": -8.19335, "longitude": -46.24968, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.24069, -8.19209, -46.24069, -8.19209], "geometry": {"coordinates": [-46.24069, -8.19209], "type": "Point"}, "id": "192", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 292.93, "brightness": 322.89, "confidence": 100, "daynight": "N", "frp": 20.89, "instrument": "MODIS", "latitude": -8.19209, "longitude": -46.24069, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.24198, -8.18318, -46.24198, -8.18318], "geometry": {"coordinates": [-46.24198, -8.18318], "type": "Point"}, "id": "193", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 291.23, "brightness": 302.46, "confidence": 8, "daynight": "N", "frp": 4.41, "instrument": "MODIS", "latitude": -8.18318, "longitude": -46.24198, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.19166, -8.18291, -49.19166, -8.18291], "geometry": {"coordinates": [-49.19166, -8.18291], "type": "Point"}, "id": "194", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 293.68, "brightness": 316.98, "confidence": 94, "daynight": "N", "frp": 17.88, "instrument": "MODIS", "latitude": -8.18291, "longitude": -49.19166, "satellite": "Terra", "scan": 1.15, "track": 1.07, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-55.11437, -7.78196, -55.11437, -7.78196], "geometry": {"coordinates": [-55.11437, -7.78196], "type": "Point"}, "id": "195", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 291.15, "brightness": 314.54, "confidence": 89, "daynight": "N", "frp": 62.81, "instrument": "MODIS", "latitude": -7.78196, "longitude": -55.11437, "satellite": "Terra", "scan": 3.08, "track": 1.67, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-55.08727, -7.77863, -55.08727, -7.77863], "geometry": {"coordinates": [-55.08727, -7.77863], "type": "Point"}, "id": "196", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 292.64, "brightness": 308.1, "confidence": 73, "daynight": "N", "frp": 38.39, "instrument": "MODIS", "latitude": -7.77863, "longitude": -55.08727, "satellite": "Terra", "scan": 3.06, "track": 1.66, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-55.11626, -7.76722, -55.11626, -7.76722], "geometry": {"coordinates": [-55.11626, -7.76722], "type": "Point"}, "id": "197", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 291.75, "brightness": 310.34, "confidence": 80, "daynight": "N", "frp": 44.09, "instrument": "MODIS", "latitude": -7.76722, "longitude": -55.11626, "satellite": "Terra", "scan": 3.08, "track": 1.67, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-55.12187, -7.76677, -55.12187, -7.76677], "geometry": {"coordinates": [-55.12187, -7.76677], "type": "Point"}, "id": "198", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 291.49, "brightness": 304.26, "confidence": 30, "daynight": "N", "frp": 23.71, "instrument": "MODIS", "latitude": -7.76677, "longitude": -55.12187, "satellite": "Terra", "scan": 3.08, "track": 1.67, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-55.08925, -7.76393, -55.08925, -7.76393], "geometry": {"coordinates": [-55.08925, -7.76393], "type": "Point"}, "id": "199", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 293.48, "brightness": 320.48, "confidence": 100, "daynight": "N", "frp": 87.08, "instrument": "MODIS", "latitude": -7.76393, "longitude": -55.08925, "satellite": "Terra", "scan": 3.06, "track": 1.66, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-55.09497, -7.7633, -55.09497, -7.7633], "geometry": {"coordinates": [-55.09497, -7.7633], "type": "Point"}, "id": "200", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 293.17, "brightness": 315.68, "confidence": 92, "daynight": "N", "frp": 64.34, "instrument": "MODIS", "latitude": -7.7633, "longitude": -55.09497, "satellite": "Terra", "scan": 3.06, "track": 1.66, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-55.06214, -7.76063, -55.06214, -7.76063], "geometry": {"coordinates": [-55.06214, -7.76063], "type": "Point"}, "id": "201", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 292.97, "brightness": 320.67, "confidence": 100, "daynight": "N", "frp": 87.88, "instrument": "MODIS", "latitude": -7.76063, "longitude": -55.06214, "satellite": "Terra", "scan": 3.05, "track": 1.66, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-55.06794, -7.75981, -55.06794, -7.75981], "geometry": {"coordinates": [-55.06794, -7.75981], "type": "Point"}, "id": "202", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 293.44, "brightness": 325.97, "confidence": 100, "daynight": "N", "frp": 113.75, "instrument": "MODIS", "latitude": -7.75981, "longitude": -55.06794, "satellite": "Terra", "scan": 3.05, "track": 1.66, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-44.93811, -7.34229, -44.93811, -7.34229], "geometry": {"coordinates": [-44.93811, -7.34229], "type": "Point"}, "id": "203", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 292.55, "brightness": 319.97, "confidence": 99, "daynight": "N", "frp": 21.55, "instrument": "MODIS", "latitude": -7.34229, "longitude": -44.93811, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-44.92802, -7.34083, -44.92802, -7.34083], "geometry": {"coordinates": [-44.92802, -7.34083], "type": "Point"}, "id": "204", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 292.84, "brightness": 323.45, "confidence": 100, "daynight": "N", "frp": 25.87, "instrument": "MODIS", "latitude": -7.34083, "longitude": -44.92802, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-44.93954, -7.33292, -44.93954, -7.33292], "geometry": {"coordinates": [-44.93954, -7.33292], "type": "Point"}, "id": "205", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 294.21, "brightness": 334.31, "confidence": 100, "daynight": "N", "frp": 41.96, "instrument": "MODIS", "latitude": -7.33292, "longitude": -44.93954, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-44.92942, -7.33145, -44.92942, -7.33145], "geometry": {"coordinates": [-44.92942, -7.33145], "type": "Point"}, "id": "206", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 294.88, "brightness": 349.64, "confidence": 100, "daynight": "N", "frp": 74.32, "instrument": "MODIS", "latitude": -7.33145, "longitude": -44.92942, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-52.73334, -6.89765, -52.73334, -6.89765], "geometry": {"coordinates": [-52.73334, -6.89765], "type": "Point"}, "id": "207", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 293.65, "brightness": 309.45, "confidence": 77, "daynight": "N", "frp": 21.37, "instrument": "MODIS", "latitude": -6.89765, "longitude": -52.73334, "satellite": "Terra", "scan": 1.92, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-52.71645, -6.89552, -52.71645, -6.89552], "geometry": {"coordinates": [-52.71645, -6.89552], "type": "Point"}, "id": "208", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 293.12, "brightness": 311.74, "confidence": 83, "daynight": "N", "frp": 25.79, "instrument": "MODIS", "latitude": -6.89552, "longitude": -52.71645, "satellite": "Terra", "scan": 1.91, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-52.72269, -6.88984, -52.72269, -6.88984], "geometry": {"coordinates": [-52.72269, -6.88984], "type": "Point"}, "id": "209", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 293.78, "brightness": 311.12, "confidence": 60, "daynight": "N", "frp": 23.18, "instrument": "MODIS", "latitude": -6.88984, "longitude": -52.72269, "satellite": "Terra", "scan": 1.91, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-44.21127, -6.68348, -44.21127, -6.68348], "geometry": {"coordinates": [-44.21127, -6.68348], "type": "Point"}, "id": "210", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 291.06, "brightness": 314.97, "confidence": 90, "daynight": "N", "frp": 18.59, "instrument": "MODIS", "latitude": -6.68348, "longitude": -44.21127, "satellite": "Terra", "scan": 1.26, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-44.20005, -6.68183, -44.20005, -6.68183], "geometry": {"coordinates": [-44.20005, -6.68183], "type": "Point"}, "id": "211", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 292.88, "brightness": 322.99, "confidence": 100, "daynight": "N", "frp": 29.16, "instrument": "MODIS", "latitude": -6.68183, "longitude": -44.20005, "satellite": "Terra", "scan": 1.26, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-51.11246, -6.57052, -51.11246, -6.57052], "geometry": {"coordinates": [-51.11246, -6.57052], "type": "Point"}, "id": "212", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 294.38, "brightness": 315.6, "confidence": 92, "daynight": "N", "frp": 22.64, "instrument": "MODIS", "latitude": -6.57052, "longitude": -51.11246, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-51.10017, -6.56886, -51.10017, -6.56886], "geometry": {"coordinates": [-51.10017, -6.56886], "type": "Point"}, "id": "213", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 294.38, "brightness": 328.91, "confidence": 100, "daynight": "N", "frp": 46.05, "instrument": "MODIS", "latitude": -6.56886, "longitude": -51.10017, "satellite": "Terra", "scan": 1.43, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-43.20206, -6.46402, -43.20206, -6.46402], "geometry": {"coordinates": [-43.20206, -6.46402], "type": "Point"}, "id": "214", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 291.58, "brightness": 304.1, "confidence": 58, "daynight": "N", "frp": 10.96, "instrument": "MODIS", "latitude": -6.46402, "longitude": -43.20206, "satellite": "Terra", "scan": 1.48, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-45.42084, -6.09353, -45.42084, -6.09353], "geometry": {"coordinates": [-45.42084, -6.09353], "type": "Point"}, "id": "215", "properties": {"acq_date": "2024-07-15", "acq_time": 56, "bright_t31": 293.17, "brightness": 304.98, "confidence": 62, "daynight": "N", "frp": 6.61, "instrument": "MODIS", "latitude": -6.09353, "longitude": -45.42084, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-45.83939, -5.72125, -45.83939, -5.72125], "geometry": {"coordinates": [-45.83939, -5.72125], "type": "Point"}, "id": "216", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 293.03, "brightness": 307.51, "confidence": 72, "daynight": "N", "frp": 8.34, "instrument": "MODIS", "latitude": -5.72125, "longitude": -45.83939, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-45.82987, -5.71989, -45.82987, -5.71989], "geometry": {"coordinates": [-45.82987, -5.71989], "type": "Point"}, "id": "217", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 292.86, "brightness": 309.81, "confidence": 78, "daynight": "N", "frp": 10.13, "instrument": "MODIS", "latitude": -5.71989, "longitude": -45.82987, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-45.84078, -5.71212, -45.84078, -5.71212], "geometry": {"coordinates": [-45.84078, -5.71212], "type": "Point"}, "id": "218", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 295.4, "brightness": 328.72, "confidence": 100, "daynight": "N", "frp": 28.99, "instrument": "MODIS", "latitude": -5.71212, "longitude": -45.84078, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-45.83127, -5.71075, -45.83127, -5.71075], "geometry": {"coordinates": [-45.83127, -5.71075], "type": "Point"}, "id": "219", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 296.54, "brightness": 350.15, "confidence": 100, "daynight": "N", "frp": 68.28, "instrument": "MODIS", "latitude": -5.71075, "longitude": -45.83127, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.84679, -4.93443, -47.84679, -4.93443], "geometry": {"coordinates": [-47.84679, -4.93443], "type": "Point"}, "id": "220", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 293.15, "brightness": 310.63, "confidence": 81, "daynight": "N", "frp": 9.63, "instrument": "MODIS", "latitude": -4.93443, "longitude": -47.84679, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-43.17569, -4.65578, -43.17569, -4.65578], "geometry": {"coordinates": [-43.17569, -4.65578], "type": "Point"}, "id": "221", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 292.78, "brightness": 336.26, "confidence": 100, "daynight": "N", "frp": 73.89, "instrument": "MODIS", "latitude": -4.65578, "longitude": -43.17569, "satellite": "Terra", "scan": 1.59, "track": 1.24, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-43.18167, -4.65456, -43.18167, -4.65456], "geometry": {"coordinates": [-43.18167, -4.65456], "type": "Point"}, "id": "222", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 292.19, "brightness": 326.54, "confidence": 100, "daynight": "N", "frp": 48.2, "instrument": "MODIS", "latitude": -4.65456, "longitude": -43.18167, "satellite": "Terra", "scan": 1.59, "track": 1.24, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-43.16768, -4.65255, -43.16768, -4.65255], "geometry": {"coordinates": [-43.16768, -4.65255], "type": "Point"}, "id": "223", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 292.53, "brightness": 313.95, "confidence": 88, "daynight": "N", "frp": 24.14, "instrument": "MODIS", "latitude": -4.65255, "longitude": -43.16768, "satellite": "Terra", "scan": 1.59, "track": 1.24, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.0214, -4.32289, -48.0214, -4.32289], "geometry": {"coordinates": [-48.0214, -4.32289], "type": "Point"}, "id": "224", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 294.13, "brightness": 325.46, "confidence": 100, "daynight": "N", "frp": 23.03, "instrument": "MODIS", "latitude": -4.32289, "longitude": -48.0214, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.63861, -4.24395, -48.63861, -4.24395], "geometry": {"coordinates": [-48.63861, -4.24395], "type": "Point"}, "id": "225", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 293.62, "brightness": 309.12, "confidence": 76, "daynight": "N", "frp": 8.29, "instrument": "MODIS", "latitude": -4.24395, "longitude": -48.63861, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.40124, -4.15536, -48.40124, -4.15536], "geometry": {"coordinates": [-48.40124, -4.15536], "type": "Point"}, "id": "226", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 300.2, "brightness": 375.88, "confidence": 100, "daynight": "N", "frp": 137.59, "instrument": "MODIS", "latitude": -4.15536, "longitude": -48.40124, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.3923, -4.15411, -48.3923, -4.15411], "geometry": {"coordinates": [-48.3923, -4.15411], "type": "Point"}, "id": "227", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 298.15, "brightness": 363.37, "confidence": 100, "daynight": "N", "frp": 95.6, "instrument": "MODIS", "latitude": -4.15411, "longitude": -48.3923, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.42926, -4.15017, -48.42926, -4.15017], "geometry": {"coordinates": [-48.42926, -4.15017], "type": "Point"}, "id": "228", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 294.51, "brightness": 305.11, "confidence": 47, "daynight": "N", "frp": 4.55, "instrument": "MODIS", "latitude": -4.15017, "longitude": -48.42926, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.41142, -4.1477, -48.41142, -4.1477], "geometry": {"coordinates": [-48.41142, -4.1477], "type": "Point"}, "id": "229", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 298.69, "brightness": 349.76, "confidence": 100, "daynight": "N", "frp": 60.35, "instrument": "MODIS", "latitude": -4.1477, "longitude": -48.41142, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.40248, -4.14646, -48.40248, -4.14646], "geometry": {"coordinates": [-48.40248, -4.14646], "type": "Point"}, "id": "230", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 309.94, "brightness": 429.72, "confidence": 100, "daynight": "N", "frp": 488.87, "instrument": "MODIS", "latitude": -4.14646, "longitude": -48.40248, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.39355, -4.14522, -48.39355, -4.14522], "geometry": {"coordinates": [-48.39355, -4.14522], "type": "Point"}, "id": "231", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 296.7, "brightness": 366.95, "confidence": 100, "daynight": "N", "frp": 106.37, "instrument": "MODIS", "latitude": -4.14522, "longitude": -48.39355, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.41264, -4.13879, -48.41264, -4.13879], "geometry": {"coordinates": [-48.41264, -4.13879], "type": "Point"}, "id": "232", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 294.55, "brightness": 305.27, "confidence": 25, "daynight": "N", "frp": 4.06, "instrument": "MODIS", "latitude": -4.13879, "longitude": -48.41264, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.40372, -4.13755, -48.40372, -4.13755], "geometry": {"coordinates": [-48.40372, -4.13755], "type": "Point"}, "id": "233", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 294.79, "brightness": 334.72, "confidence": 100, "daynight": "N", "frp": 33.98, "instrument": "MODIS", "latitude": -4.13755, "longitude": -48.40372, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-46.5328, -4.01374, -46.5328, -4.01374], "geometry": {"coordinates": [-46.5328, -4.01374], "type": "Point"}, "id": "234", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 293.6, "brightness": 308.41, "confidence": 74, "daynight": "N", "frp": 8.5, "instrument": "MODIS", "latitude": -4.01374, "longitude": -46.5328, "satellite": "Terra", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.42297, -3.61508, -49.42297, -3.61508], "geometry": {"coordinates": [-49.42297, -3.61508], "type": "Point"}, "id": "235", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 294.46, "brightness": 320.38, "confidence": 100, "daynight": "N", "frp": 18.99, "instrument": "MODIS", "latitude": -3.61508, "longitude": -49.42297, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-49.41356, -3.61379, -49.41356, -3.61379], "geometry": {"coordinates": [-49.41356, -3.61379], "type": "Point"}, "id": "236", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 294.96, "brightness": 321.59, "confidence": 100, "daynight": "N", "frp": 20.25, "instrument": "MODIS", "latitude": -3.61379, "longitude": -49.41356, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.66892, -3.47346, -47.66892, -3.47346], "geometry": {"coordinates": [-47.66892, -3.47346], "type": "Point"}, "id": "237", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 292.4, "brightness": 306.92, "confidence": 70, "daynight": "N", "frp": 6.49, "instrument": "MODIS", "latitude": -3.47346, "longitude": -47.66892, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.67018, -3.46461, -47.67018, -3.46461], "geometry": {"coordinates": [-47.67018, -3.46461], "type": "Point"}, "id": "238", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 292.15, "brightness": 306.34, "confidence": 68, "daynight": "N", "frp": 6.17, "instrument": "MODIS", "latitude": -3.46461, "longitude": -47.67018, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.81859, -3.24666, -48.81859, -3.24666], "geometry": {"coordinates": [-48.81859, -3.24666], "type": "Point"}, "id": "239", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 293.6, "brightness": 306.38, "confidence": 68, "daynight": "N", "frp": 6.38, "instrument": "MODIS", "latitude": -3.24666, "longitude": -48.81859, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-48.56495, -3.14677, -48.56495, -3.14677], "geometry": {"coordinates": [-48.56495, -3.14677], "type": "Point"}, "id": "240", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 293.79, "brightness": 306.15, "confidence": 67, "daynight": "N", "frp": 5.84, "instrument": "MODIS", "latitude": -3.14677, "longitude": -48.56495, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.98975, -2.33866, -47.98975, -2.33866], "geometry": {"coordinates": [-47.98975, -2.33866], "type": "Point"}, "id": "241", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 295.61, "brightness": 327.27, "confidence": 100, "daynight": "N", "frp": 23.89, "instrument": "MODIS", "latitude": -2.33866, "longitude": -47.98975, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-47.98094, -2.33743, -47.98094, -2.33743], "geometry": {"coordinates": [-47.98094, -2.33743], "type": "Point"}, "id": "242", "properties": {"acq_date": "2024-07-15", "acq_time": 58, "bright_t31": 294.51, "brightness": 314.06, "confidence": 88, "daynight": "N", "frp": 10.86, "instrument": "MODIS", "latitude": -2.33743, "longitude": -47.98094, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-67.75809, 49.66917, -67.75809, 49.66917], "geometry": {"coordinates": [-67.75809, 49.66917], "type": "Point"}, "id": "243", "properties": {"acq_date": "2024-07-15", "acq_time": 113, "bright_t31": 279.74, "brightness": 305.95, "confidence": 51, "daynight": "N", "frp": 18.38, "instrument": "MODIS", "latitude": 49.66917, "longitude": -67.75809, "satellite": "Terra", "scan": 1.44, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.01381, 68.26105, 147.01381, 68.26105], "geometry": {"coordinates": [147.01381, 68.26105], "type": "Point"}, "id": "244", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.78, "brightness": 306.83, "confidence": 32, "daynight": "D", "frp": 3.91, "instrument": "MODIS", "latitude": 68.26105, "longitude": 147.01381, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.80403, 68.26665, 146.80403, 68.26665], "geometry": {"coordinates": [146.80403, 68.26665], "type": "Point"}, "id": "245", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.39, "brightness": 335.05, "confidence": 89, "daynight": "D", "frp": 33.04, "instrument": "MODIS", "latitude": 68.26665, "longitude": 146.80403, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.7816, 68.27043, 146.7816, 68.27043], "geometry": {"coordinates": [146.7816, 68.27043], "type": "Point"}, "id": "246", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.94, "brightness": 326.64, "confidence": 84, "daynight": "D", "frp": 22.61, "instrument": "MODIS", "latitude": 68.27043, "longitude": 146.7816, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.94632, 68.27248, 146.94632, 68.27248], "geometry": {"coordinates": [146.94632, 68.27248], "type": "Point"}, "id": "247", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.49, "brightness": 323.85, "confidence": 68, "daynight": "D", "frp": 16.92, "instrument": "MODIS", "latitude": 68.27248, "longitude": 146.94632, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.92384, 68.27628, 146.92384, 68.27628], "geometry": {"coordinates": [146.92384, 68.27628], "type": "Point"}, "id": "248", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.9, "brightness": 325.63, "confidence": 76, "daynight": "D", "frp": 18.57, "instrument": "MODIS", "latitude": 68.27628, "longitude": 146.92384, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.83409, 68.29141, 146.83409, 68.29141], "geometry": {"coordinates": [146.83409, 68.29141], "type": "Point"}, "id": "249", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.15, "brightness": 331.78, "confidence": 76, "daynight": "D", "frp": 28.01, "instrument": "MODIS", "latitude": 68.29141, "longitude": 146.83409, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.81163, 68.29519, 146.81163, 68.29519], "geometry": {"coordinates": [146.81163, 68.29519], "type": "Point"}, "id": "250", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.61, "brightness": 358.94, "confidence": 94, "daynight": "D", "frp": 82.46, "instrument": "MODIS", "latitude": 68.29519, "longitude": 146.81163, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [148.664, 68.42355, 148.664, 68.42355], "geometry": {"coordinates": [148.664, 68.42355], "type": "Point"}, "id": "251", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.93, "brightness": 310.9, "confidence": 36, "daynight": "D", "frp": 7.37, "instrument": "MODIS", "latitude": 68.42355, "longitude": 148.664, "satellite": "Terra", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [148.58646, 68.44619, 148.58646, 68.44619], "geometry": {"coordinates": [148.58646, 68.44619], "type": "Point"}, "id": "252", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.71, "brightness": 313.83, "confidence": 51, "daynight": "D", "frp": 9.36, "instrument": "MODIS", "latitude": 68.44619, "longitude": 148.58646, "satellite": "Terra", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [148.51106, 68.76187, 148.51106, 68.76187], "geometry": {"coordinates": [148.51106, 68.76187], "type": "Point"}, "id": "253", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.29, "brightness": 308.93, "confidence": 45, "daynight": "D", "frp": 7.1, "instrument": "MODIS", "latitude": 68.76187, "longitude": 148.51106, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.06882, 68.85707, 143.06882, 68.85707], "geometry": {"coordinates": [143.06882, 68.85707], "type": "Point"}, "id": "254", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.77, "brightness": 341.77, "confidence": 70, "daynight": "D", "frp": 43.36, "instrument": "MODIS", "latitude": 68.85707, "longitude": 143.06882, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.07767, 68.86552, 143.07767, 68.86552], "geometry": {"coordinates": [143.07767, 68.86552], "type": "Point"}, "id": "255", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.88, "brightness": 359.52, "confidence": 86, "daynight": "D", "frp": 80.72, "instrument": "MODIS", "latitude": 68.86552, "longitude": 143.07767, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.99812, 68.86681, 142.99812, 68.86681], "geometry": {"coordinates": [142.99812, 68.86681], "type": "Point"}, "id": "256", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 303.97, "brightness": 365.26, "confidence": 94, "daynight": "D", "frp": 96.26, "instrument": "MODIS", "latitude": 68.86681, "longitude": 142.99812, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.05411, 68.86877, 143.05411, 68.86877], "geometry": {"coordinates": [143.05411, 68.86877], "type": "Point"}, "id": "257", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.16, "brightness": 333.39, "confidence": 38, "daynight": "D", "frp": 26.31, "instrument": "MODIS", "latitude": 68.86877, "longitude": 143.05411, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.97453, 68.87004, 142.97453, 68.87004], "geometry": {"coordinates": [142.97453, 68.87004], "type": "Point"}, "id": "258", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.62, "brightness": 341.77, "confidence": 73, "daynight": "D", "frp": 39.34, "instrument": "MODIS", "latitude": 68.87004, "longitude": 142.97453, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.95093, 68.87328, 142.95093, 68.87328], "geometry": {"coordinates": [142.95093, 68.87328], "type": "Point"}, "id": "259", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.58, "brightness": 348.27, "confidence": 72, "daynight": "D", "frp": 53.56, "instrument": "MODIS", "latitude": 68.87328, "longitude": 142.95093, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.0865, 68.87397, 143.0865, 68.87397], "geometry": {"coordinates": [143.0865, 68.87397], "type": "Point"}, "id": "260", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.08, "brightness": 336.41, "confidence": 64, "daynight": "D", "frp": 31.68, "instrument": "MODIS", "latitude": 68.87397, "longitude": 143.0865, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.92729, 68.87652, 142.92729, 68.87652], "geometry": {"coordinates": [142.92729, 68.87652], "type": "Point"}, "id": "261", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.41, "brightness": 325.0, "confidence": 0, "daynight": "D", "frp": 17.77, "instrument": "MODIS", "latitude": 68.87652, "longitude": 142.92729, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.09535, 68.88242, 143.09535, 68.88242], "geometry": {"coordinates": [143.09535, 68.88242], "type": "Point"}, "id": "262", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.9, "brightness": 335.78, "confidence": 70, "daynight": "D", "frp": 30.7, "instrument": "MODIS", "latitude": 68.88242, "longitude": 143.09535, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.0247, 68.89216, 143.0247, 68.89216], "geometry": {"coordinates": [143.0247, 68.89216], "type": "Point"}, "id": "263", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.73, "brightness": 342.0, "confidence": 91, "daynight": "D", "frp": 35.37, "instrument": "MODIS", "latitude": 68.89216, "longitude": 143.0247, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.94496, 68.89344, 142.94496, 68.89344], "geometry": {"coordinates": [142.94496, 68.89344], "type": "Point"}, "id": "264", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.73, "brightness": 330.83, "confidence": 23, "daynight": "D", "frp": 20.27, "instrument": "MODIS", "latitude": 68.89344, "longitude": 142.94496, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.0011, 68.89541, 143.0011, 68.89541], "geometry": {"coordinates": [143.0011, 68.89541], "type": "Point"}, "id": "265", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.74, "brightness": 352.3, "confidence": 97, "daynight": "D", "frp": 57.33, "instrument": "MODIS", "latitude": 68.89541, "longitude": 143.0011, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.05711, 68.89737, 143.05711, 68.89737], "geometry": {"coordinates": [143.05711, 68.89737], "type": "Point"}, "id": "266", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.33, "brightness": 336.26, "confidence": 84, "daynight": "D", "frp": 25.99, "instrument": "MODIS", "latitude": 68.89737, "longitude": 143.05711, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.03352, 68.90062, 143.03352, 68.90062], "geometry": {"coordinates": [143.03352, 68.90062], "type": "Point"}, "id": "267", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.11, "brightness": 350.46, "confidence": 83, "daynight": "D", "frp": 52.39, "instrument": "MODIS", "latitude": 68.90062, "longitude": 143.03352, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.95384, 68.90189, 142.95384, 68.90189], "geometry": {"coordinates": [142.95384, 68.90189], "type": "Point"}, "id": "268", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.68, "brightness": 351.01, "confidence": 91, "daynight": "D", "frp": 56.88, "instrument": "MODIS", "latitude": 68.90189, "longitude": 142.95384, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.0099, 68.90387, 143.0099, 68.90387], "geometry": {"coordinates": [143.0099, 68.90387], "type": "Point"}, "id": "269", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.52, "brightness": 369.92, "confidence": 87, "daynight": "D", "frp": 107.85, "instrument": "MODIS", "latitude": 68.90387, "longitude": 143.0099, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.93015, 68.90514, 142.93015, 68.90514], "geometry": {"coordinates": [142.93015, 68.90514], "type": "Point"}, "id": "270", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.09, "brightness": 358.3, "confidence": 93, "daynight": "D", "frp": 75.52, "instrument": "MODIS", "latitude": 68.90514, "longitude": 142.93015, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.98628, 68.90712, 142.98628, 68.90712], "geometry": {"coordinates": [142.98628, 68.90712], "type": "Point"}, "id": "271", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.07, "brightness": 341.49, "confidence": 72, "daynight": "D", "frp": 35.99, "instrument": "MODIS", "latitude": 68.90712, "longitude": 142.98628, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.90646, 68.90838, 142.90646, 68.90838], "geometry": {"coordinates": [142.90646, 68.90838], "type": "Point"}, "id": "272", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.76, "brightness": 347.53, "confidence": 89, "daynight": "D", "frp": 51.83, "instrument": "MODIS", "latitude": 68.90838, "longitude": 142.90646, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.77899, 68.91608, 142.77899, 68.91608], "geometry": {"coordinates": [142.77899, 68.91608], "type": "Point"}, "id": "273", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.25, "brightness": 341.66, "confidence": 92, "daynight": "D", "frp": 42.19, "instrument": "MODIS", "latitude": 68.91608, "longitude": 142.77899, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.75522, 68.9193, 142.75522, 68.9193], "geometry": {"coordinates": [142.75522, 68.9193], "type": "Point"}, "id": "274", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 302.16, "brightness": 364.12, "confidence": 100, "daynight": "D", "frp": 94.88, "instrument": "MODIS", "latitude": 68.9193, "longitude": 142.75522, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.81152, 68.92133, 142.81152, 68.92133], "geometry": {"coordinates": [142.81152, 68.92133], "type": "Point"}, "id": "275", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.03, "brightness": 347.23, "confidence": 79, "daynight": "D", "frp": 49.81, "instrument": "MODIS", "latitude": 68.92133, "longitude": 142.81152, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.73143, 68.92253, 142.73143, 68.92253], "geometry": {"coordinates": [142.73143, 68.92253], "type": "Point"}, "id": "276", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 302.78, "brightness": 373.76, "confidence": 100, "daynight": "D", "frp": 127.14, "instrument": "MODIS", "latitude": 68.92253, "longitude": 142.73143, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.92413, 68.92532, 142.92413, 68.92532], "geometry": {"coordinates": [142.92413, 68.92532], "type": "Point"}, "id": "277", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 292.65, "brightness": 331.1, "confidence": 54, "daynight": "D", "frp": 25.21, "instrument": "MODIS", "latitude": 68.92532, "longitude": 142.92413, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.70761, 68.92575, 142.70761, 68.92575], "geometry": {"coordinates": [142.70761, 68.92575], "type": "Point"}, "id": "278", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.89, "brightness": 326.33, "confidence": 51, "daynight": "D", "frp": 19.22, "instrument": "MODIS", "latitude": 68.92575, "longitude": 142.70761, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.8441, 68.92657, 142.8441, 68.92657], "geometry": {"coordinates": [142.8441, 68.92657], "type": "Point"}, "id": "279", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.47, "brightness": 339.65, "confidence": 52, "daynight": "D", "frp": 36.04, "instrument": "MODIS", "latitude": 68.92657, "longitude": 142.8441, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.82033, 68.92981, 142.82033, 68.92981], "geometry": {"coordinates": [142.82033, 68.92981], "type": "Point"}, "id": "280", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.49, "brightness": 337.69, "confidence": 79, "daynight": "D", "frp": 30.35, "instrument": "MODIS", "latitude": 68.92981, "longitude": 142.82033, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.74026, 68.93101, 142.74026, 68.93101], "geometry": {"coordinates": [142.74026, 68.93101], "type": "Point"}, "id": "281", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.85, "brightness": 352.98, "confidence": 97, "daynight": "D", "frp": 63.58, "instrument": "MODIS", "latitude": 68.93101, "longitude": 142.74026, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.65997, 68.93218, 142.65997, 68.93218], "geometry": {"coordinates": [142.65997, 68.93218], "type": "Point"}, "id": "282", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.07, "brightness": 322.55, "confidence": 16, "daynight": "D", "frp": 15.01, "instrument": "MODIS", "latitude": 68.93218, "longitude": 142.65997, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.71642, 68.93423, 142.71642, 68.93423], "geometry": {"coordinates": [142.71642, 68.93423], "type": "Point"}, "id": "283", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.32, "brightness": 386.38, "confidence": 100, "daynight": "D", "frp": 178.77, "instrument": "MODIS", "latitude": 68.93423, "longitude": 142.71642, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.69255, 68.93746, 142.69255, 68.93746], "geometry": {"coordinates": [142.69255, 68.93746], "type": "Point"}, "id": "284", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.67, "brightness": 332.91, "confidence": 44, "daynight": "D", "frp": 25.34, "instrument": "MODIS", "latitude": 68.93746, "longitude": 142.69255, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.82916, 68.93829, 142.82916, 68.93829], "geometry": {"coordinates": [142.82916, 68.93829], "type": "Point"}, "id": "285", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.61, "brightness": 331.1, "confidence": 41, "daynight": "D", "frp": 23.92, "instrument": "MODIS", "latitude": 68.93829, "longitude": 142.82916, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.74911, 68.93948, 142.74911, 68.93948], "geometry": {"coordinates": [142.74911, 68.93948], "type": "Point"}, "id": "286", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 301.2, "brightness": 362.58, "confidence": 100, "daynight": "D", "frp": 90.21, "instrument": "MODIS", "latitude": 68.93948, "longitude": 142.74911, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.66876, 68.94067, 142.66876, 68.94067], "geometry": {"coordinates": [142.66876, 68.94067], "type": "Point"}, "id": "287", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.2, "brightness": 345.46, "confidence": 87, "daynight": "D", "frp": 46.22, "instrument": "MODIS", "latitude": 68.94067, "longitude": 142.66876, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.8054, 68.94152, 142.8054, 68.94152], "geometry": {"coordinates": [142.8054, 68.94152], "type": "Point"}, "id": "288", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.41, "brightness": 335.38, "confidence": 37, "daynight": "D", "frp": 29.53, "instrument": "MODIS", "latitude": 68.94152, "longitude": 142.8054, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.72523, 68.94272, 142.72523, 68.94272], "geometry": {"coordinates": [142.72523, 68.94272], "type": "Point"}, "id": "289", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 302.6, "brightness": 387.22, "confidence": 100, "daynight": "D", "frp": 181.16, "instrument": "MODIS", "latitude": 68.94272, "longitude": 142.72523, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.64497, 68.94389, 142.64497, 68.94389], "geometry": {"coordinates": [142.64497, 68.94389], "type": "Point"}, "id": "290", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.38, "brightness": 352.56, "confidence": 97, "daynight": "D", "frp": 62.6, "instrument": "MODIS", "latitude": 68.94389, "longitude": 142.64497, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.78168, 68.94474, 142.78168, 68.94474], "geometry": {"coordinates": [142.78168, 68.94474], "type": "Point"}, "id": "291", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 305.12, "brightness": 363.94, "confidence": 100, "daynight": "D", "frp": 92.96, "instrument": "MODIS", "latitude": 68.94474, "longitude": 142.78168, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.75792, 68.94797, 142.75792, 68.94797], "geometry": {"coordinates": [142.75792, 68.94797], "type": "Point"}, "id": "292", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 308.4, "brightness": 394.02, "confidence": 100, "daynight": "D", "frp": 219.87, "instrument": "MODIS", "latitude": 68.94797, "longitude": 142.75792, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.73404, 68.95121, 142.73404, 68.95121], "geometry": {"coordinates": [142.73404, 68.95121], "type": "Point"}, "id": "293", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.39, "brightness": 356.39, "confidence": 98, "daynight": "D", "frp": 74.71, "instrument": "MODIS", "latitude": 68.95121, "longitude": 142.73404, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.79051, 68.95322, 142.79051, 68.95322], "geometry": {"coordinates": [142.79051, 68.95322], "type": "Point"}, "id": "294", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 303.74, "brightness": 364.83, "confidence": 100, "daynight": "D", "frp": 96.72, "instrument": "MODIS", "latitude": 68.95322, "longitude": 142.79051, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.76675, 68.95645, 142.76675, 68.95645], "geometry": {"coordinates": [142.76675, 68.95645], "type": "Point"}, "id": "295", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 317.61, "brightness": 421.16, "confidence": 100, "daynight": "D", "frp": 411.47, "instrument": "MODIS", "latitude": 68.95645, "longitude": 142.76675, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.59067, 68.97056, 142.59067, 68.97056], "geometry": {"coordinates": [142.59067, 68.97056], "type": "Point"}, "id": "296", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.34, "brightness": 325.55, "confidence": 44, "daynight": "D", "frp": 19.17, "instrument": "MODIS", "latitude": 68.97056, "longitude": 142.59067, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.25536, 68.9763, 143.25536, 68.9763], "geometry": {"coordinates": [143.25536, 68.9763], "type": "Point"}, "id": "297", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.83, "brightness": 327.69, "confidence": 80, "daynight": "D", "frp": 21.36, "instrument": "MODIS", "latitude": 68.9763, "longitude": 143.25536, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.5995, 68.97906, 142.5995, 68.97906], "geometry": {"coordinates": [142.5995, 68.97906], "type": "Point"}, "id": "298", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 293.59, "brightness": 318.15, "confidence": 59, "daynight": "D", "frp": 12.92, "instrument": "MODIS", "latitude": 68.97906, "longitude": 142.5995, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.2317, 68.97958, 143.2317, 68.97958], "geometry": {"coordinates": [143.2317, 68.97958], "type": "Point"}, "id": "299", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.48, "brightness": 325.89, "confidence": 82, "daynight": "D", "frp": 19.28, "instrument": "MODIS", "latitude": 68.97958, "longitude": 143.2317, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.20805, 68.98285, 143.20805, 68.98285], "geometry": {"coordinates": [143.20805, 68.98285], "type": "Point"}, "id": "300", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.95, "brightness": 320.04, "confidence": 66, "daynight": "D", "frp": 12.26, "instrument": "MODIS", "latitude": 68.98285, "longitude": 143.20805, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.26434, 68.98473, 143.26434, 68.98473], "geometry": {"coordinates": [143.26434, 68.98473], "type": "Point"}, "id": "301", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.0, "brightness": 323.92, "confidence": 79, "daynight": "D", "frp": 17.56, "instrument": "MODIS", "latitude": 68.98473, "longitude": 143.26434, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.24068, 68.98801, 143.24068, 68.98801], "geometry": {"coordinates": [143.24068, 68.98801], "type": "Point"}, "id": "302", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.54, "brightness": 341.9, "confidence": 92, "daynight": "D", "frp": 42.62, "instrument": "MODIS", "latitude": 68.98801, "longitude": 143.24068, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.59857, 68.998, 142.59857, 68.998], "geometry": {"coordinates": [142.59857, 68.998], "type": "Point"}, "id": "303", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 292.63, "brightness": 320.24, "confidence": 64, "daynight": "D", "frp": 14.91, "instrument": "MODIS", "latitude": 68.998, "longitude": 142.59857, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.57451, 69.00122, 142.57451, 69.00122], "geometry": {"coordinates": [142.57451, 69.00122], "type": "Point"}, "id": "304", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.6, "brightness": 338.14, "confidence": 90, "daynight": "D", "frp": 39.29, "instrument": "MODIS", "latitude": 69.00122, "longitude": 142.57451, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.71892, 69.04549, 140.71892, 69.04549], "geometry": {"coordinates": [140.71892, 69.04549], "type": "Point"}, "id": "305", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 290.79, "brightness": 307.7, "confidence": 56, "daynight": "D", "frp": 6.94, "instrument": "MODIS", "latitude": 69.04549, "longitude": 140.71892, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.929, 69.08378, 147.929, 69.08378], "geometry": {"coordinates": [147.929, 69.08378], "type": "Point"}, "id": "306", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 292.97, "brightness": 305.65, "confidence": 46, "daynight": "D", "frp": 5.45, "instrument": "MODIS", "latitude": 69.08378, "longitude": 147.929, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.35995, 69.08768, 143.35995, 69.08768], "geometry": {"coordinates": [143.35995, 69.08768], "type": "Point"}, "id": "307", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.42, "brightness": 316.26, "confidence": 73, "daynight": "D", "frp": 11.18, "instrument": "MODIS", "latitude": 69.08768, "longitude": 143.35995, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.9059, 69.0877, 147.9059, 69.0877], "geometry": {"coordinates": [147.9059, 69.0877], "type": "Point"}, "id": "308", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.33, "brightness": 308.0, "confidence": 0, "daynight": "D", "frp": 6.75, "instrument": "MODIS", "latitude": 69.0877, "longitude": 147.9059, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.33617, 69.09097, 143.33617, 69.09097], "geometry": {"coordinates": [143.33617, 69.09097], "type": "Point"}, "id": "309", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.65, "brightness": 319.54, "confidence": 77, "daynight": "D", "frp": 13.7, "instrument": "MODIS", "latitude": 69.09097, "longitude": 143.33617, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.89777, 69.12208, 142.89777, 69.12208], "geometry": {"coordinates": [142.89777, 69.12208], "type": "Point"}, "id": "310", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.38, "brightness": 328.22, "confidence": 77, "daynight": "D", "frp": 22.69, "instrument": "MODIS", "latitude": 69.12208, "longitude": 142.89777, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.87389, 69.12531, 142.87389, 69.12531], "geometry": {"coordinates": [142.87389, 69.12531], "type": "Point"}, "id": "311", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 293.24, "brightness": 328.97, "confidence": 65, "daynight": "D", "frp": 23.61, "instrument": "MODIS", "latitude": 69.12531, "longitude": 142.87389, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.78883, 69.1275, 147.78883, 69.1275], "geometry": {"coordinates": [147.78883, 69.1275], "type": "Point"}, "id": "312", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.11, "brightness": 324.41, "confidence": 58, "daynight": "D", "frp": 18.31, "instrument": "MODIS", "latitude": 69.1275, "longitude": 147.78883, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.90674, 69.13055, 142.90674, 69.13055], "geometry": {"coordinates": [142.90674, 69.13055], "type": "Point"}, "id": "313", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.16, "brightness": 335.09, "confidence": 88, "daynight": "D", "frp": 31.71, "instrument": "MODIS", "latitude": 69.13055, "longitude": 142.90674, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.76572, 69.13139, 147.76572, 69.13139], "geometry": {"coordinates": [147.76572, 69.13139], "type": "Point"}, "id": "314", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.02, "brightness": 337.19, "confidence": 85, "daynight": "D", "frp": 35.82, "instrument": "MODIS", "latitude": 69.13139, "longitude": 147.76572, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.60661, 69.1321, 142.60661, 69.1321], "geometry": {"coordinates": [142.60661, 69.1321], "type": "Point"}, "id": "315", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.06, "brightness": 309.95, "confidence": 54, "daynight": "D", "frp": 7.51, "instrument": "MODIS", "latitude": 69.1321, "longitude": 142.60661, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.61531, 69.14064, 142.61531, 69.14064], "geometry": {"coordinates": [142.61531, 69.14064], "type": "Point"}, "id": "316", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 292.54, "brightness": 308.51, "confidence": 40, "daynight": "D", "frp": 5.96, "instrument": "MODIS", "latitude": 69.14064, "longitude": 142.61531, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.48497, 69.14825, 142.48497, 69.14825], "geometry": {"coordinates": [142.48497, 69.14825], "type": "Point"}, "id": "317", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.2, "brightness": 340.76, "confidence": 91, "daynight": "D", "frp": 42.15, "instrument": "MODIS", "latitude": 69.14825, "longitude": 142.48497, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.37579, 69.15329, 143.37579, 69.15329], "geometry": {"coordinates": [143.37579, 69.15329], "type": "Point"}, "id": "318", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.71, "brightness": 315.0, "confidence": 59, "daynight": "D", "frp": 8.8, "instrument": "MODIS", "latitude": 69.15329, "longitude": 143.37579, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.90033, 69.16975, 142.90033, 69.16975], "geometry": {"coordinates": [142.90033, 69.16975], "type": "Point"}, "id": "319", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.02, "brightness": 328.23, "confidence": 84, "daynight": "D", "frp": 24.09, "instrument": "MODIS", "latitude": 69.16975, "longitude": 142.90033, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.79469, 69.17424, 142.79469, 69.17424], "geometry": {"coordinates": [142.79469, 69.17424], "type": "Point"}, "id": "320", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 292.79, "brightness": 327.31, "confidence": 83, "daynight": "D", "frp": 24.27, "instrument": "MODIS", "latitude": 69.17424, "longitude": 142.79469, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.77039, 69.17749, 142.77039, 69.17749], "geometry": {"coordinates": [142.77039, 69.17749], "type": "Point"}, "id": "321", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.91, "brightness": 336.77, "confidence": 89, "daynight": "D", "frp": 37.02, "instrument": "MODIS", "latitude": 69.17749, "longitude": 142.77039, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.4053, 69.17818, 142.4053, 69.17818], "geometry": {"coordinates": [142.4053, 69.17818], "type": "Point"}, "id": "322", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.0, "brightness": 342.91, "confidence": 45, "daynight": "D", "frp": 41.98, "instrument": "MODIS", "latitude": 69.17818, "longitude": 142.4053, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.43858, 69.18349, 142.43858, 69.18349], "geometry": {"coordinates": [142.43858, 69.18349], "type": "Point"}, "id": "323", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.96, "brightness": 346.26, "confidence": 72, "daynight": "D", "frp": 48.96, "instrument": "MODIS", "latitude": 69.18349, "longitude": 142.43858, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.77931, 69.18599, 142.77931, 69.18599], "geometry": {"coordinates": [142.77931, 69.18599], "type": "Point"}, "id": "324", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 293.73, "brightness": 331.06, "confidence": 86, "daynight": "D", "frp": 27.31, "instrument": "MODIS", "latitude": 69.18599, "longitude": 142.77931, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.78825, 69.19449, 142.78825, 69.19449], "geometry": {"coordinates": [142.78825, 69.19449], "type": "Point"}, "id": "325", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 292.68, "brightness": 313.89, "confidence": 41, "daynight": "D", "frp": 9.87, "instrument": "MODIS", "latitude": 69.19449, "longitude": 142.78825, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.76407, 69.19772, 142.76407, 69.19772], "geometry": {"coordinates": [142.76407, 69.19772], "type": "Point"}, "id": "326", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 293.56, "brightness": 327.51, "confidence": 83, "daynight": "D", "frp": 23.38, "instrument": "MODIS", "latitude": 69.19772, "longitude": 142.76407, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.68253, 69.19891, 142.68253, 69.19891], "geometry": {"coordinates": [142.68253, 69.19891], "type": "Point"}, "id": "327", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 292.81, "brightness": 312.84, "confidence": 33, "daynight": "D", "frp": 7.99, "instrument": "MODIS", "latitude": 69.19891, "longitude": 142.68253, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.73999, 69.20094, 142.73999, 69.20094], "geometry": {"coordinates": [142.73999, 69.20094], "type": "Point"}, "id": "328", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.46, "brightness": 347.14, "confidence": 94, "daynight": "D", "frp": 54.11, "instrument": "MODIS", "latitude": 69.20094, "longitude": 142.73999, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.71594, 69.20415, 142.71594, 69.20415], "geometry": {"coordinates": [142.71594, 69.20415], "type": "Point"}, "id": "329", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.72, "brightness": 334.15, "confidence": 88, "daynight": "D", "frp": 31.71, "instrument": "MODIS", "latitude": 69.20415, "longitude": 142.71594, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.77303, 69.20622, 142.77303, 69.20622], "geometry": {"coordinates": [142.77303, 69.20622], "type": "Point"}, "id": "330", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 292.41, "brightness": 324.53, "confidence": 81, "daynight": "D", "frp": 20.87, "instrument": "MODIS", "latitude": 69.20622, "longitude": 142.77303, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.41171, 69.2065, 143.41171, 69.2065], "geometry": {"coordinates": [143.41171, 69.2065], "type": "Point"}, "id": "331", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.89, "brightness": 349.28, "confidence": 95, "daynight": "D", "frp": 53.18, "instrument": "MODIS", "latitude": 69.2065, "longitude": 143.41171, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.74892, 69.20944, 142.74892, 69.20944], "geometry": {"coordinates": [142.74892, 69.20944], "type": "Point"}, "id": "332", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 293.39, "brightness": 328.79, "confidence": 82, "daynight": "D", "frp": 25.36, "instrument": "MODIS", "latitude": 69.20944, "longitude": 142.74892, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.38785, 69.20979, 143.38785, 69.20979], "geometry": {"coordinates": [143.38785, 69.20979], "type": "Point"}, "id": "333", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.56, "brightness": 337.08, "confidence": 61, "daynight": "D", "frp": 29.21, "instrument": "MODIS", "latitude": 69.20979, "longitude": 143.38785, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.026, 69.21091, 143.026, 69.21091], "geometry": {"coordinates": [143.026, 69.21091], "type": "Point"}, "id": "334", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.73, "brightness": 320.0, "confidence": 70, "daynight": "D", "frp": 13.62, "instrument": "MODIS", "latitude": 69.21091, "longitude": 143.026, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.92104, 69.21542, 142.92104, 69.21542], "geometry": {"coordinates": [142.92104, 69.21542], "type": "Point"}, "id": "335", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.1, "brightness": 327.95, "confidence": 84, "daynight": "D", "frp": 24.21, "instrument": "MODIS", "latitude": 69.21542, "longitude": 142.92104, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.6519, 69.22237, 142.6519, 69.22237], "geometry": {"coordinates": [142.6519, 69.22237], "type": "Point"}, "id": "336", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 293.32, "brightness": 321.97, "confidence": 76, "daynight": "D", "frp": 17.27, "instrument": "MODIS", "latitude": 69.22237, "longitude": 142.6519, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.92998, 69.22391, 142.92998, 69.22391], "geometry": {"coordinates": [142.92998, 69.22391], "type": "Point"}, "id": "337", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.5, "brightness": 318.66, "confidence": 55, "daynight": "D", "frp": 13.74, "instrument": "MODIS", "latitude": 69.22391, "longitude": 142.92998, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.62779, 69.22557, 142.62779, 69.22557], "geometry": {"coordinates": [142.62779, 69.22557], "type": "Point"}, "id": "338", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.18, "brightness": 311.63, "confidence": 48, "daynight": "D", "frp": 8.16, "instrument": "MODIS", "latitude": 69.22557, "longitude": 142.62779, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.35696, 69.23212, 142.35696, 69.23212], "geometry": {"coordinates": [142.35696, 69.23212], "type": "Point"}, "id": "339", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 292.39, "brightness": 312.79, "confidence": 27, "daynight": "D", "frp": 8.38, "instrument": "MODIS", "latitude": 69.23212, "longitude": 142.35696, "satellite": "Terra", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.44826, 69.24023, 143.44826, 69.24023], "geometry": {"coordinates": [143.44826, 69.24023], "type": "Point"}, "id": "340", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.54, "brightness": 326.37, "confidence": 65, "daynight": "D", "frp": 19.52, "instrument": "MODIS", "latitude": 69.24023, "longitude": 143.44826, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.50569, 69.24172, 142.50569, 69.24172], "geometry": {"coordinates": [142.50569, 69.24172], "type": "Point"}, "id": "341", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.32, "brightness": 309.02, "confidence": 40, "daynight": "D", "frp": 5.98, "instrument": "MODIS", "latitude": 69.24172, "longitude": 142.50569, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.42438, 69.24353, 143.42438, 69.24353], "geometry": {"coordinates": [143.42438, 69.24353], "type": "Point"}, "id": "342", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.9, "brightness": 344.83, "confidence": 93, "daynight": "D", "frp": 46.83, "instrument": "MODIS", "latitude": 69.24353, "longitude": 143.42438, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.40059, 69.24681, 143.40059, 69.24681], "geometry": {"coordinates": [143.40059, 69.24681], "type": "Point"}, "id": "343", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 302.52, "brightness": 363.0, "confidence": 100, "daynight": "D", "frp": 91.14, "instrument": "MODIS", "latitude": 69.24681, "longitude": 143.40059, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.53909, 69.24702, 142.53909, 69.24702], "geometry": {"coordinates": [142.53909, 69.24702], "type": "Point"}, "id": "344", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.29, "brightness": 329.39, "confidence": 85, "daynight": "D", "frp": 26.65, "instrument": "MODIS", "latitude": 69.24702, "longitude": 142.53909, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.51472, 69.25024, 142.51472, 69.25024], "geometry": {"coordinates": [142.51472, 69.25024], "type": "Point"}, "id": "345", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.54, "brightness": 327.2, "confidence": 83, "daynight": "D", "frp": 23.79, "instrument": "MODIS", "latitude": 69.25024, "longitude": 142.51472, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.43347, 69.25198, 143.43347, 69.25198], "geometry": {"coordinates": [143.43347, 69.25198], "type": "Point"}, "id": "346", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.84, "brightness": 363.39, "confidence": 100, "daynight": "D", "frp": 92.89, "instrument": "MODIS", "latitude": 69.25198, "longitude": 143.43347, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.91321, 69.25492, 142.91321, 69.25492], "geometry": {"coordinates": [142.91321, 69.25492], "type": "Point"}, "id": "347", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.99, "brightness": 326.05, "confidence": 41, "daynight": "D", "frp": 19.17, "instrument": "MODIS", "latitude": 69.25492, "longitude": 142.91321, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.40961, 69.25526, 143.40961, 69.25526], "geometry": {"coordinates": [143.40961, 69.25526], "type": "Point"}, "id": "348", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 318.58, "brightness": 418.19, "confidence": 100, "daynight": "D", "frp": 383.67, "instrument": "MODIS", "latitude": 69.25526, "longitude": 143.40961, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.38571, 69.25856, 143.38571, 69.25856], "geometry": {"coordinates": [143.38571, 69.25856], "type": "Point"}, "id": "349", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 302.52, "brightness": 352.35, "confidence": 97, "daynight": "D", "frp": 61.68, "instrument": "MODIS", "latitude": 69.25856, "longitude": 143.38571, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.36172, 69.26186, 143.36172, 69.26186], "geometry": {"coordinates": [143.36172, 69.26186], "type": "Point"}, "id": "350", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 301.03, "brightness": 336.57, "confidence": 83, "daynight": "D", "frp": 31.72, "instrument": "MODIS", "latitude": 69.26186, "longitude": 143.36172, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.92204, 69.26343, 142.92204, 69.26343], "geometry": {"coordinates": [142.92204, 69.26343], "type": "Point"}, "id": "351", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.46, "brightness": 344.61, "confidence": 93, "daynight": "D", "frp": 46.57, "instrument": "MODIS", "latitude": 69.26343, "longitude": 142.92204, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.33774, 69.26516, 143.33774, 69.26516], "geometry": {"coordinates": [143.33774, 69.26516], "type": "Point"}, "id": "352", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.33, "brightness": 324.48, "confidence": 55, "daynight": "D", "frp": 16.05, "instrument": "MODIS", "latitude": 69.26516, "longitude": 143.33774, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.01248, 69.27066, 143.01248, 69.27066], "geometry": {"coordinates": [143.01248, 69.27066], "type": "Point"}, "id": "353", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.64, "brightness": 323.92, "confidence": 81, "daynight": "D", "frp": 16.97, "instrument": "MODIS", "latitude": 69.27066, "longitude": 143.01248, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.35271, 69.27256, 143.35271, 69.27256], "geometry": {"coordinates": [143.35271, 69.27256], "type": "Point"}, "id": "354", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 301.06, "brightness": 376.85, "confidence": 87, "daynight": "D", "frp": 134.26, "instrument": "MODIS", "latitude": 69.27256, "longitude": 143.35271, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.9883, 69.27392, 142.9883, 69.27392], "geometry": {"coordinates": [142.9883, 69.27392], "type": "Point"}, "id": "355", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.53, "brightness": 326.31, "confidence": 83, "daynight": "D", "frp": 20.3, "instrument": "MODIS", "latitude": 69.27392, "longitude": 142.9883, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.90681, 69.27517, 142.90681, 69.27517], "geometry": {"coordinates": [142.90681, 69.27517], "type": "Point"}, "id": "356", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.08, "brightness": 330.56, "confidence": 80, "daynight": "D", "frp": 26.2, "instrument": "MODIS", "latitude": 69.27517, "longitude": 142.90681, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.32872, 69.27584, 143.32872, 69.27584], "geometry": {"coordinates": [143.32872, 69.27584], "type": "Point"}, "id": "357", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.16, "brightness": 360.87, "confidence": 87, "daynight": "D", "frp": 81.51, "instrument": "MODIS", "latitude": 69.27584, "longitude": 143.32872, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.16034, 69.27972, 143.16034, 69.27972], "geometry": {"coordinates": [143.16034, 69.27972], "type": "Point"}, "id": "358", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.27, "brightness": 320.08, "confidence": 71, "daynight": "D", "frp": 14.04, "instrument": "MODIS", "latitude": 69.27972, "longitude": 143.16034, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.93988, 69.28043, 142.93988, 69.28043], "geometry": {"coordinates": [142.93988, 69.28043], "type": "Point"}, "id": "359", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.73, "brightness": 353.24, "confidence": 97, "daynight": "D", "frp": 67.58, "instrument": "MODIS", "latitude": 69.28043, "longitude": 142.93988, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.91566, 69.28369, 142.91566, 69.28369], "geometry": {"coordinates": [142.91566, 69.28369], "type": "Point"}, "id": "360", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.88, "brightness": 370.59, "confidence": 100, "daynight": "D", "frp": 118.26, "instrument": "MODIS", "latitude": 69.28369, "longitude": 142.91566, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.29887, 69.2993, 143.29887, 69.2993], "geometry": {"coordinates": [143.29887, 69.2993], "type": "Point"}, "id": "361", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.34, "brightness": 336.96, "confidence": 60, "daynight": "D", "frp": 32.98, "instrument": "MODIS", "latitude": 69.2993, "longitude": 143.29887, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.30795, 69.30775, 143.30795, 69.30775], "geometry": {"coordinates": [143.30795, 69.30775], "type": "Point"}, "id": "362", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 291.73, "brightness": 323.7, "confidence": 35, "daynight": "D", "frp": 17.91, "instrument": "MODIS", "latitude": 69.30775, "longitude": 143.30795, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.25974, 69.31432, 143.25974, 69.31432], "geometry": {"coordinates": [143.25974, 69.31432], "type": "Point"}, "id": "363", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.18, "brightness": 322.93, "confidence": 49, "daynight": "D", "frp": 16.22, "instrument": "MODIS", "latitude": 69.31432, "longitude": 143.25974, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.69106, 69.9972, 141.69106, 69.9972], "geometry": {"coordinates": [141.69106, 69.9972], "type": "Point"}, "id": "364", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.09, "brightness": 329.86, "confidence": 85, "daynight": "D", "frp": 25.27, "instrument": "MODIS", "latitude": 69.9972, "longitude": 141.69106, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.66466, 70.0004, 141.66466, 70.0004], "geometry": {"coordinates": [141.66466, 70.0004], "type": "Point"}, "id": "365", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.49, "brightness": 333.47, "confidence": 87, "daynight": "D", "frp": 29.85, "instrument": "MODIS", "latitude": 70.0004, "longitude": 141.66466, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.7265, 70.00272, 141.7265, 70.00272], "geometry": {"coordinates": [141.7265, 70.00272], "type": "Point"}, "id": "366", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.82, "brightness": 336.37, "confidence": 89, "daynight": "D", "frp": 34.02, "instrument": "MODIS", "latitude": 70.00272, "longitude": 141.7265, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.78838, 70.00501, 141.78838, 70.00501], "geometry": {"coordinates": [141.78838, 70.00501], "type": "Point"}, "id": "367", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.98, "brightness": 317.8, "confidence": 65, "daynight": "D", "frp": 11.74, "instrument": "MODIS", "latitude": 70.00501, "longitude": 141.78838, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.70009, 70.00594, 141.70009, 70.00594], "geometry": {"coordinates": [141.70009, 70.00594], "type": "Point"}, "id": "368", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 302.66, "brightness": 353.96, "confidence": 97, "daynight": "D", "frp": 71.43, "instrument": "MODIS", "latitude": 70.00594, "longitude": 141.70009, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.76193, 70.00824, 141.76193, 70.00824], "geometry": {"coordinates": [141.76193, 70.00824], "type": "Point"}, "id": "369", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.89, "brightness": 329.86, "confidence": 84, "daynight": "D", "frp": 24.46, "instrument": "MODIS", "latitude": 70.00824, "longitude": 141.76193, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.67361, 70.00916, 141.67361, 70.00916], "geometry": {"coordinates": [141.67361, 70.00916], "type": "Point"}, "id": "370", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 301.25, "brightness": 350.84, "confidence": 96, "daynight": "D", "frp": 63.07, "instrument": "MODIS", "latitude": 70.00916, "longitude": 141.67361, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.73546, 70.01147, 141.73546, 70.01147], "geometry": {"coordinates": [141.73546, 70.01147], "type": "Point"}, "id": "371", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.59, "brightness": 328.89, "confidence": 82, "daynight": "D", "frp": 22.45, "instrument": "MODIS", "latitude": 70.01147, "longitude": 141.73546, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.64717, 70.01236, 141.64717, 70.01236], "geometry": {"coordinates": [141.64717, 70.01236], "type": "Point"}, "id": "372", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.82, "brightness": 327.42, "confidence": 81, "daynight": "D", "frp": 20.81, "instrument": "MODIS", "latitude": 70.01236, "longitude": 141.64717, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.70901, 70.01469, 141.70901, 70.01469], "geometry": {"coordinates": [141.70901, 70.01469], "type": "Point"}, "id": "373", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.97, "brightness": 320.91, "confidence": 64, "daynight": "D", "frp": 12.94, "instrument": "MODIS", "latitude": 70.01469, "longitude": 141.70901, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.7709, 70.01698, 141.7709, 70.01698], "geometry": {"coordinates": [141.7709, 70.01698], "type": "Point"}, "id": "374", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.04, "brightness": 337.23, "confidence": 89, "daynight": "D", "frp": 35.2, "instrument": "MODIS", "latitude": 70.01698, "longitude": 141.7709, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.59424, 70.01876, 141.59424, 70.01876], "geometry": {"coordinates": [141.59424, 70.01876], "type": "Point"}, "id": "375", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 301.08, "brightness": 342.04, "confidence": 92, "daynight": "D", "frp": 45.37, "instrument": "MODIS", "latitude": 70.01876, "longitude": 141.59424, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.74442, 70.02022, 141.74442, 70.02022], "geometry": {"coordinates": [141.74442, 70.02022], "type": "Point"}, "id": "376", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 301.08, "brightness": 342.21, "confidence": 92, "daynight": "D", "frp": 43.54, "instrument": "MODIS", "latitude": 70.02022, "longitude": 141.74442, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.77991, 70.02572, 141.77991, 70.02572], "geometry": {"coordinates": [141.77991, 70.02572], "type": "Point"}, "id": "377", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.78, "brightness": 326.67, "confidence": 49, "daynight": "D", "frp": 19.28, "instrument": "MODIS", "latitude": 70.02572, "longitude": 141.77991, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.60298, 70.02756, 141.60298, 70.02756], "geometry": {"coordinates": [141.60298, 70.02756], "type": "Point"}, "id": "378", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.81, "brightness": 320.08, "confidence": 56, "daynight": "D", "frp": 12.88, "instrument": "MODIS", "latitude": 70.02756, "longitude": 141.60298, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.57626, 70.03078, 141.57626, 70.03078], "geometry": {"coordinates": [141.57626, 70.03078], "type": "Point"}, "id": "379", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.45, "brightness": 316.82, "confidence": 58, "daynight": "D", "frp": 9.92, "instrument": "MODIS", "latitude": 70.03078, "longitude": 141.57626, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.79779, 70.04321, 141.79779, 70.04321], "geometry": {"coordinates": [141.79779, 70.04321], "type": "Point"}, "id": "380", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.51, "brightness": 318.09, "confidence": 33, "daynight": "D", "frp": 11.3, "instrument": "MODIS", "latitude": 70.04321, "longitude": 141.79779, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.86432, 70.0717, 141.86432, 70.0717], "geometry": {"coordinates": [141.86432, 70.0717], "type": "Point"}, "id": "381", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.72, "brightness": 327.67, "confidence": 52, "daynight": "D", "frp": 19.37, "instrument": "MODIS", "latitude": 70.0717, "longitude": 141.86432, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.92628, 70.07396, 141.92628, 70.07396], "geometry": {"coordinates": [141.92628, 70.07396], "type": "Point"}, "id": "382", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.69, "brightness": 324.16, "confidence": 41, "daynight": "D", "frp": 17.06, "instrument": "MODIS", "latitude": 70.07396, "longitude": 141.92628, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.93535, 70.08268, 141.93535, 70.08268], "geometry": {"coordinates": [141.93535, 70.08268], "type": "Point"}, "id": "383", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.59, "brightness": 331.37, "confidence": 65, "daynight": "D", "frp": 25.8, "instrument": "MODIS", "latitude": 70.08268, "longitude": 141.93535, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.75534, 70.08784, 140.75534, 70.08784], "geometry": {"coordinates": [140.75534, 70.08784], "type": "Point"}, "id": "384", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.56, "brightness": 325.02, "confidence": 59, "daynight": "D", "frp": 19.31, "instrument": "MODIS", "latitude": 70.08784, "longitude": 140.75534, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.72774, 70.09101, 140.72774, 70.09101], "geometry": {"coordinates": [140.72774, 70.09101], "type": "Point"}, "id": "385", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.33, "brightness": 346.36, "confidence": 94, "daynight": "D", "frp": 55.95, "instrument": "MODIS", "latitude": 70.09101, "longitude": 140.72774, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.70007, 70.09417, 140.70007, 70.09417], "geometry": {"coordinates": [140.70007, 70.09417], "type": "Point"}, "id": "386", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 301.43, "brightness": 348.67, "confidence": 95, "daynight": "D", "frp": 60.95, "instrument": "MODIS", "latitude": 70.09417, "longitude": 140.70007, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.54277, 70.0966, 140.54277, 70.0966], "geometry": {"coordinates": [140.54277, 70.0966], "type": "Point"}, "id": "387", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.89, "brightness": 325.48, "confidence": 81, "daynight": "D", "frp": 21.83, "instrument": "MODIS", "latitude": 70.0966, "longitude": 140.54277, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.76402, 70.09678, 140.76402, 70.09678], "geometry": {"coordinates": [140.76402, 70.09678], "type": "Point"}, "id": "388", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.65, "brightness": 345.4, "confidence": 94, "daynight": "D", "frp": 54.06, "instrument": "MODIS", "latitude": 70.09678, "longitude": 140.76402, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.67244, 70.09733, 140.67244, 70.09733], "geometry": {"coordinates": [140.67244, 70.09733], "type": "Point"}, "id": "389", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 305.36, "brightness": 375.1, "confidence": 100, "daynight": "D", "frp": 147.42, "instrument": "MODIS", "latitude": 70.09733, "longitude": 140.67244, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.51506, 70.09977, 140.51506, 70.09977], "geometry": {"coordinates": [140.51506, 70.09977], "type": "Point"}, "id": "390", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 303.92, "brightness": 358.46, "confidence": 99, "daynight": "D", "frp": 90.66, "instrument": "MODIS", "latitude": 70.09977, "longitude": 140.51506, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.73639, 70.09995, 140.73639, 70.09995], "geometry": {"coordinates": [140.73639, 70.09995], "type": "Point"}, "id": "391", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.37, "brightness": 319.36, "confidence": 56, "daynight": "D", "frp": 12.33, "instrument": "MODIS", "latitude": 70.09995, "longitude": 140.73639, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.95354, 70.10012, 141.95354, 70.10012], "geometry": {"coordinates": [141.95354, 70.10012], "type": "Point"}, "id": "392", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.34, "brightness": 328.52, "confidence": 67, "daynight": "D", "frp": 22.84, "instrument": "MODIS", "latitude": 70.10012, "longitude": 141.95354, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.64474, 70.10048, 140.64474, 70.10048], "geometry": {"coordinates": [140.64474, 70.10048], "type": "Point"}, "id": "393", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 301.73, "brightness": 360.01, "confidence": 100, "daynight": "D", "frp": 92.2, "instrument": "MODIS", "latitude": 70.10048, "longitude": 140.64474, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.55267, 70.10098, 140.55267, 70.10098], "geometry": {"coordinates": [140.55267, 70.10098], "type": "Point"}, "id": "394", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 302.01, "brightness": 348.35, "confidence": 95, "daynight": "D", "frp": 58.36, "instrument": "MODIS", "latitude": 70.10098, "longitude": 140.55267, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.48727, 70.10295, 140.48727, 70.10295], "geometry": {"coordinates": [140.48727, 70.10295], "type": "Point"}, "id": "395", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 302.88, "brightness": 351.3, "confidence": 96, "daynight": "D", "frp": 70.68, "instrument": "MODIS", "latitude": 70.10295, "longitude": 140.48727, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.70879, 70.1031, 140.70879, 70.1031], "geometry": {"coordinates": [140.70879, 70.1031], "type": "Point"}, "id": "396", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.32, "brightness": 319.4, "confidence": 18, "daynight": "D", "frp": 11.44, "instrument": "MODIS", "latitude": 70.1031, "longitude": 140.70879, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.52492, 70.10412, 140.52492, 70.10412], "geometry": {"coordinates": [140.52492, 70.10412], "type": "Point"}, "id": "397", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 305.11, "brightness": 373.67, "confidence": 100, "daynight": "D", "frp": 140.78, "instrument": "MODIS", "latitude": 70.10412, "longitude": 140.52492, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.77272, 70.10571, 140.77272, 70.10571], "geometry": {"coordinates": [140.77272, 70.10571], "type": "Point"}, "id": "398", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.86, "brightness": 340.01, "confidence": 91, "daynight": "D", "frp": 42.14, "instrument": "MODIS", "latitude": 70.10571, "longitude": 140.77272, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.68112, 70.10627, 140.68112, 70.10627], "geometry": {"coordinates": [140.68112, 70.10627], "type": "Point"}, "id": "399", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.98, "brightness": 331.91, "confidence": 76, "daynight": "D", "frp": 27.03, "instrument": "MODIS", "latitude": 70.10627, "longitude": 140.68112, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.4971, 70.10725, 140.4971, 70.10725], "geometry": {"coordinates": [140.4971, 70.10725], "type": "Point"}, "id": "400", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 303.24, "brightness": 364.89, "confidence": 100, "daynight": "D", "frp": 107.74, "instrument": "MODIS", "latitude": 70.10725, "longitude": 140.4971, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.65343, 70.10943, 140.65343, 70.10943], "geometry": {"coordinates": [140.65343, 70.10943], "type": "Point"}, "id": "401", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.7, "brightness": 336.18, "confidence": 89, "daynight": "D", "frp": 34.54, "instrument": "MODIS", "latitude": 70.10943, "longitude": 140.65343, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.93611, 70.1121, 141.93611, 70.1121], "geometry": {"coordinates": [141.93611, 70.1121], "type": "Point"}, "id": "402", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 302.0, "brightness": 375.66, "confidence": 100, "daynight": "D", "frp": 144.7, "instrument": "MODIS", "latitude": 70.1121, "longitude": 141.93611, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.62558, 70.1126, 140.62558, 70.1126], "geometry": {"coordinates": [140.62558, 70.1126], "type": "Point"}, "id": "403", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.2, "brightness": 343.15, "confidence": 92, "daynight": "D", "frp": 47.72, "instrument": "MODIS", "latitude": 70.1126, "longitude": 140.62558, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.53355, 70.11309, 140.53355, 70.11309], "geometry": {"coordinates": [140.53355, 70.11309], "type": "Point"}, "id": "404", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.02, "brightness": 320.66, "confidence": 20, "daynight": "D", "frp": 11.95, "instrument": "MODIS", "latitude": 70.11309, "longitude": 140.53355, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.78157, 70.11462, 140.78157, 70.11462], "geometry": {"coordinates": [140.78157, 70.11462], "type": "Point"}, "id": "405", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.69, "brightness": 334.39, "confidence": 88, "daynight": "D", "frp": 32.37, "instrument": "MODIS", "latitude": 70.11462, "longitude": 140.78157, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.90961, 70.11536, 141.90961, 70.11536], "geometry": {"coordinates": [141.90961, 70.11536], "type": "Point"}, "id": "406", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.72, "brightness": 354.21, "confidence": 97, "daynight": "D", "frp": 73.09, "instrument": "MODIS", "latitude": 70.11536, "longitude": 141.90961, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.66212, 70.11838, 140.66212, 70.11838], "geometry": {"coordinates": [140.66212, 70.11838], "type": "Point"}, "id": "407", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.6, "brightness": 341.56, "confidence": 92, "daynight": "D", "frp": 45.13, "instrument": "MODIS", "latitude": 70.11838, "longitude": 140.66212, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.63426, 70.12156, 140.63426, 70.12156], "geometry": {"coordinates": [140.63426, 70.12156], "type": "Point"}, "id": "408", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.2, "brightness": 348.24, "confidence": 95, "daynight": "D", "frp": 59.74, "instrument": "MODIS", "latitude": 70.12156, "longitude": 140.63426, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.11392, 70.13514, 140.11392, 70.13514], "geometry": {"coordinates": [140.11392, 70.13514], "type": "Point"}, "id": "409", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.53, "brightness": 323.36, "confidence": 80, "daynight": "D", "frp": 19.33, "instrument": "MODIS", "latitude": 70.13514, "longitude": 140.11392, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.08522, 70.13834, 140.08522, 70.13834], "geometry": {"coordinates": [140.08522, 70.13834], "type": "Point"}, "id": "410", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.72, "brightness": 313.49, "confidence": 40, "daynight": "D", "frp": 8.34, "instrument": "MODIS", "latitude": 70.13834, "longitude": 140.08522, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.74373, 70.13885, 140.74373, 70.13885], "geometry": {"coordinates": [140.74373, 70.13885], "type": "Point"}, "id": "411", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.86, "brightness": 330.37, "confidence": 85, "daynight": "D", "frp": 27.53, "instrument": "MODIS", "latitude": 70.13885, "longitude": 140.74373, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.71594, 70.14204, 140.71594, 70.14204], "geometry": {"coordinates": [140.71594, 70.14204], "type": "Point"}, "id": "412", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.67, "brightness": 343.77, "confidence": 93, "daynight": "D", "frp": 51.79, "instrument": "MODIS", "latitude": 70.14204, "longitude": 140.71594, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.028, 70.14471, 140.028, 70.14471], "geometry": {"coordinates": [140.028, 70.14471], "type": "Point"}, "id": "413", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.89, "brightness": 329.95, "confidence": 85, "daynight": "D", "frp": 29.47, "instrument": "MODIS", "latitude": 70.14471, "longitude": 140.028, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.99974, 70.14784, 139.99974, 70.14784], "geometry": {"coordinates": [139.99974, 70.14784], "type": "Point"}, "id": "414", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.23, "brightness": 327.96, "confidence": 83, "daynight": "D", "frp": 27.31, "instrument": "MODIS", "latitude": 70.14784, "longitude": 139.99974, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.32661, 70.1563, 140.32661, 70.1563], "geometry": {"coordinates": [140.32661, 70.1563], "type": "Point"}, "id": "415", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 302.16, "brightness": 316.53, "confidence": 73, "daynight": "D", "frp": 9.64, "instrument": "MODIS", "latitude": 70.1563, "longitude": 140.32661, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.87749, 70.16595, 141.87749, 70.16595], "geometry": {"coordinates": [141.87749, 70.16595], "type": "Point"}, "id": "416", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.88, "brightness": 322.74, "confidence": 53, "daynight": "D", "frp": 17.26, "instrument": "MODIS", "latitude": 70.16595, "longitude": 141.87749, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.364, 70.17139, 141.364, 70.17139], "geometry": {"coordinates": [141.364, 70.17139], "type": "Point"}, "id": "417", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.41, "brightness": 325.16, "confidence": 65, "daynight": "D", "frp": 20.49, "instrument": "MODIS", "latitude": 70.17139, "longitude": 141.364, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.25032, 70.17481, 140.25032, 70.17481], "geometry": {"coordinates": [140.25032, 70.17481], "type": "Point"}, "id": "418", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.79, "brightness": 317.25, "confidence": 71, "daynight": "D", "frp": 10.73, "instrument": "MODIS", "latitude": 70.17481, "longitude": 140.25032, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.49026, 70.1761, 141.49026, 70.1761], "geometry": {"coordinates": [141.49026, 70.1761], "type": "Point"}, "id": "419", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.44, "brightness": 319.17, "confidence": 0, "daynight": "D", "frp": 15.83, "instrument": "MODIS", "latitude": 70.1761, "longitude": 141.49026, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.46318, 70.17934, 141.46318, 70.17934], "geometry": {"coordinates": [141.46318, 70.17934], "type": "Point"}, "id": "420", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.1, "brightness": 317.45, "confidence": 54, "daynight": "D", "frp": 13.55, "instrument": "MODIS", "latitude": 70.17934, "longitude": 141.46318, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.25885, 70.18385, 140.25885, 70.18385], "geometry": {"coordinates": [140.25885, 70.18385], "type": "Point"}, "id": "421", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.31, "brightness": 317.78, "confidence": 70, "daynight": "D", "frp": 11.79, "instrument": "MODIS", "latitude": 70.18385, "longitude": 140.25885, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.77969, 70.18766, 141.77969, 70.18766], "geometry": {"coordinates": [141.77969, 70.18766], "type": "Point"}, "id": "422", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 289.95, "brightness": 322.09, "confidence": 80, "daynight": "D", "frp": 20.0, "instrument": "MODIS", "latitude": 70.18766, "longitude": 141.77969, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.6002, 70.18949, 141.6002, 70.18949], "geometry": {"coordinates": [141.6002, 70.18949], "type": "Point"}, "id": "423", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 292.12, "brightness": 308.5, "confidence": 49, "daynight": "D", "frp": 7.42, "instrument": "MODIS", "latitude": 70.18949, "longitude": 141.6002, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.35498, 70.19226, 141.35498, 70.19226], "geometry": {"coordinates": [141.35498, 70.19226], "type": "Point"}, "id": "424", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.62, "brightness": 321.22, "confidence": 66, "daynight": "D", "frp": 17.04, "instrument": "MODIS", "latitude": 70.19226, "longitude": 141.35498, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.32774, 70.1955, 141.32774, 70.1955], "geometry": {"coordinates": [141.32774, 70.1955], "type": "Point"}, "id": "425", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.31, "brightness": 322.93, "confidence": 69, "daynight": "D", "frp": 19.85, "instrument": "MODIS", "latitude": 70.1955, "longitude": 141.32774, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.60924, 70.19829, 141.60924, 70.19829], "geometry": {"coordinates": [141.60924, 70.19829], "type": "Point"}, "id": "426", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 292.86, "brightness": 326.48, "confidence": 83, "daynight": "D", "frp": 25.64, "instrument": "MODIS", "latitude": 70.19829, "longitude": 141.60924, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.20973, 70.19956, 141.20973, 70.19956], "geometry": {"coordinates": [141.20973, 70.19956], "type": "Point"}, "id": "427", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 293.65, "brightness": 310.73, "confidence": 60, "daynight": "D", "frp": 8.33, "instrument": "MODIS", "latitude": 70.19956, "longitude": 141.20973, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.18236, 70.20278, 141.18236, 70.20278], "geometry": {"coordinates": [141.18236, 70.20278], "type": "Point"}, "id": "428", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.69, "brightness": 307.7, "confidence": 55, "daynight": "D", "frp": 6.41, "instrument": "MODIS", "latitude": 70.20278, "longitude": 141.18236, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.21852, 70.20844, 141.21852, 70.20844], "geometry": {"coordinates": [141.21852, 70.20844], "type": "Point"}, "id": "429", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.37, "brightness": 342.68, "confidence": 87, "daynight": "D", "frp": 51.1, "instrument": "MODIS", "latitude": 70.20844, "longitude": 141.21852, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.22913, 70.21352, 141.22913, 70.21352], "geometry": {"coordinates": [141.22913, 70.21352], "type": "Point"}, "id": "430", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.98, "brightness": 329.62, "confidence": 75, "daynight": "D", "frp": 27.14, "instrument": "MODIS", "latitude": 70.21352, "longitude": 141.22913, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.06854, 70.215, 140.06854, 70.215], "geometry": {"coordinates": [140.06854, 70.215], "type": "Point"}, "id": "431", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.78, "brightness": 315.5, "confidence": 71, "daynight": "D", "frp": 11.96, "instrument": "MODIS", "latitude": 70.215, "longitude": 140.06854, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.20161, 70.21672, 141.20161, 70.21672], "geometry": {"coordinates": [141.20161, 70.21672], "type": "Point"}, "id": "432", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 293.15, "brightness": 325.46, "confidence": 78, "daynight": "D", "frp": 22.58, "instrument": "MODIS", "latitude": 70.21672, "longitude": 141.20161, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.23802, 70.22238, 141.23802, 70.22238], "geometry": {"coordinates": [141.23802, 70.22238], "type": "Point"}, "id": "433", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.1, "brightness": 331.1, "confidence": 64, "daynight": "D", "frp": 28.4, "instrument": "MODIS", "latitude": 70.22238, "longitude": 141.23802, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.84262, 70.23244, 140.84262, 70.23244], "geometry": {"coordinates": [140.84262, 70.23244], "type": "Point"}, "id": "434", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.95, "brightness": 343.74, "confidence": 93, "daynight": "D", "frp": 52.78, "instrument": "MODIS", "latitude": 70.23244, "longitude": 140.84262, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.81482, 70.23563, 140.81482, 70.23563], "geometry": {"coordinates": [140.81482, 70.23563], "type": "Point"}, "id": "435", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 300.49, "brightness": 357.43, "confidence": 99, "daynight": "D", "frp": 86.33, "instrument": "MODIS", "latitude": 70.23563, "longitude": 140.81482, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.28323, 70.23689, 141.28323, 70.23689], "geometry": {"coordinates": [141.28323, 70.23689], "type": "Point"}, "id": "436", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.4, "brightness": 324.95, "confidence": 69, "daynight": "D", "frp": 20.57, "instrument": "MODIS", "latitude": 70.23689, "longitude": 141.28323, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.25581, 70.24011, 141.25581, 70.24011], "geometry": {"coordinates": [141.25581, 70.24011], "type": "Point"}, "id": "437", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.01, "brightness": 324.76, "confidence": 73, "daynight": "D", "frp": 21.01, "instrument": "MODIS", "latitude": 70.24011, "longitude": 141.25581, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.82364, 70.24458, 140.82364, 70.24458], "geometry": {"coordinates": [140.82364, 70.24458], "type": "Point"}, "id": "438", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.92, "brightness": 318.36, "confidence": 69, "daynight": "D", "frp": 14.19, "instrument": "MODIS", "latitude": 70.24458, "longitude": 140.82364, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.29268, 70.24477, 140.29268, 70.24477], "geometry": {"coordinates": [140.29268, 70.24477], "type": "Point"}, "id": "439", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 293.91, "brightness": 305.22, "confidence": 13, "daynight": "D", "frp": 3.76, "instrument": "MODIS", "latitude": 70.24477, "longitude": 140.29268, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.41937, 70.25055, 141.41937, 70.25055], "geometry": {"coordinates": [141.41937, 70.25055], "type": "Point"}, "id": "440", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 292.58, "brightness": 304.15, "confidence": 20, "daynight": "D", "frp": 3.85, "instrument": "MODIS", "latitude": 70.25055, "longitude": 141.41937, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.39523, 70.25334, 140.39523, 70.25334], "geometry": {"coordinates": [140.39523, 70.25334], "type": "Point"}, "id": "441", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.76, "brightness": 321.87, "confidence": 79, "daynight": "D", "frp": 18.95, "instrument": "MODIS", "latitude": 70.25334, "longitude": 140.39523, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.83246, 70.25351, 140.83246, 70.25351], "geometry": {"coordinates": [140.83246, 70.25351], "type": "Point"}, "id": "442", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.43, "brightness": 327.59, "confidence": 81, "daynight": "D", "frp": 24.64, "instrument": "MODIS", "latitude": 70.25351, "longitude": 140.83246, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.36682, 70.25652, 140.36682, 70.25652], "geometry": {"coordinates": [140.36682, 70.25652], "type": "Point"}, "id": "443", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.76, "brightness": 313.65, "confidence": 58, "daynight": "D", "frp": 10.1, "instrument": "MODIS", "latitude": 70.25652, "longitude": 140.36682, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.80458, 70.25673, 140.80458, 70.25673], "geometry": {"coordinates": [140.80458, 70.25673], "type": "Point"}, "id": "444", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.91, "brightness": 325.91, "confidence": 69, "daynight": "D", "frp": 22.36, "instrument": "MODIS", "latitude": 70.25673, "longitude": 140.80458, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.69266, 70.26958, 140.69266, 70.26958], "geometry": {"coordinates": [140.69266, 70.26958], "type": "Point"}, "id": "445", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.3, "brightness": 318.89, "confidence": 71, "daynight": "D", "frp": 14.38, "instrument": "MODIS", "latitude": 70.26958, "longitude": 140.69266, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.66457, 70.2728, 140.66457, 70.2728], "geometry": {"coordinates": [140.66457, 70.2728], "type": "Point"}, "id": "446", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.78, "brightness": 326.57, "confidence": 83, "daynight": "D", "frp": 23.89, "instrument": "MODIS", "latitude": 70.2728, "longitude": 140.66457, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.86015, 70.27596, 140.86015, 70.27596], "geometry": {"coordinates": [140.86015, 70.27596], "type": "Point"}, "id": "447", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.29, "brightness": 319.59, "confidence": 77, "daynight": "D", "frp": 16.25, "instrument": "MODIS", "latitude": 70.27596, "longitude": 140.86015, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.67432, 70.27714, 140.67432, 70.27714], "geometry": {"coordinates": [140.67432, 70.27714], "type": "Point"}, "id": "448", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.84, "brightness": 333.64, "confidence": 88, "daynight": "D", "frp": 32.82, "instrument": "MODIS", "latitude": 70.27714, "longitude": 140.67432, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.8322, 70.27914, 140.8322, 70.27914], "geometry": {"coordinates": [140.8322, 70.27914], "type": "Point"}, "id": "449", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.56, "brightness": 316.38, "confidence": 41, "daynight": "D", "frp": 11.73, "instrument": "MODIS", "latitude": 70.27914, "longitude": 140.8322, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.785, 70.29448, 140.785, 70.29448], "geometry": {"coordinates": [140.785, 70.29448], "type": "Point"}, "id": "450", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.04, "brightness": 327.29, "confidence": 64, "daynight": "D", "frp": 22.98, "instrument": "MODIS", "latitude": 70.29448, "longitude": 140.785, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.37314, 70.29583, 140.37314, 70.29583], "geometry": {"coordinates": [140.37314, 70.29583], "type": "Point"}, "id": "451", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.07, "brightness": 319.13, "confidence": 18, "daynight": "D", "frp": 13.81, "instrument": "MODIS", "latitude": 70.29583, "longitude": 140.37314, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.33395, 70.31511, 140.33395, 70.31511], "geometry": {"coordinates": [140.33395, 70.31511], "type": "Point"}, "id": "452", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.64, "brightness": 335.26, "confidence": 82, "daynight": "D", "frp": 34.89, "instrument": "MODIS", "latitude": 70.31511, "longitude": 140.33395, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.30531, 70.31827, 140.30531, 70.31827], "geometry": {"coordinates": [140.30531, 70.31827], "type": "Point"}, "id": "453", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.78, "brightness": 318.67, "confidence": 25, "daynight": "D", "frp": 13.09, "instrument": "MODIS", "latitude": 70.31827, "longitude": 140.30531, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.74649, 70.31879, 140.74649, 70.31879], "geometry": {"coordinates": [140.74649, 70.31879], "type": "Point"}, "id": "454", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.09, "brightness": 322.22, "confidence": 61, "daynight": "D", "frp": 17.71, "instrument": "MODIS", "latitude": 70.31879, "longitude": 140.74649, "satellite": "Terra", "scan": 1.11, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.66191, 70.32839, 140.66191, 70.32839], "geometry": {"coordinates": [140.66191, 70.32839], "type": "Point"}, "id": "455", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.81, "brightness": 315.34, "confidence": 50, "daynight": "D", "frp": 10.72, "instrument": "MODIS", "latitude": 70.32839, "longitude": 140.66191, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.72714, 70.33096, 140.72714, 70.33096], "geometry": {"coordinates": [140.72714, 70.33096], "type": "Point"}, "id": "456", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.52, "brightness": 336.57, "confidence": 89, "daynight": "D", "frp": 38.74, "instrument": "MODIS", "latitude": 70.33096, "longitude": 140.72714, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.63365, 70.33159, 140.63365, 70.33159], "geometry": {"coordinates": [140.63365, 70.33159], "type": "Point"}, "id": "457", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.75, "brightness": 325.19, "confidence": 82, "daynight": "D", "frp": 23.14, "instrument": "MODIS", "latitude": 70.33159, "longitude": 140.63365, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.69897, 70.33417, 140.69897, 70.33417], "geometry": {"coordinates": [140.69897, 70.33417], "type": "Point"}, "id": "458", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.43, "brightness": 361.9, "confidence": 100, "daynight": "D", "frp": 101.92, "instrument": "MODIS", "latitude": 70.33417, "longitude": 140.69897, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.60532, 70.33479, 140.60532, 70.33479], "geometry": {"coordinates": [140.60532, 70.33479], "type": "Point"}, "id": "459", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.91, "brightness": 317.82, "confidence": 71, "daynight": "D", "frp": 14.55, "instrument": "MODIS", "latitude": 70.33479, "longitude": 140.60532, "satellite": "Terra", "scan": 1.12, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.21634, 70.35812, 140.21634, 70.35812], "geometry": {"coordinates": [140.21634, 70.35812], "type": "Point"}, "id": "460", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.0, "brightness": 322.98, "confidence": 45, "daynight": "D", "frp": 18.85, "instrument": "MODIS", "latitude": 70.35812, "longitude": 140.21634, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.18739, 70.3613, 140.18739, 70.3613], "geometry": {"coordinates": [140.18739, 70.3613], "type": "Point"}, "id": "461", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 293.09, "brightness": 321.02, "confidence": 36, "daynight": "D", "frp": 16.75, "instrument": "MODIS", "latitude": 70.3613, "longitude": 140.18739, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.51807, 70.37463, 140.51807, 70.37463], "geometry": {"coordinates": [140.51807, 70.37463], "type": "Point"}, "id": "462", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 293.03, "brightness": 312.09, "confidence": 61, "daynight": "D", "frp": 9.98, "instrument": "MODIS", "latitude": 70.37463, "longitude": 140.51807, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.20491, 70.37944, 140.20491, 70.37944], "geometry": {"coordinates": [140.20491, 70.37944], "type": "Point"}, "id": "463", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 296.69, "brightness": 337.0, "confidence": 41, "daynight": "D", "frp": 37.4, "instrument": "MODIS", "latitude": 70.37944, "longitude": 140.20491, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.24297, 70.38528, 140.24297, 70.38528], "geometry": {"coordinates": [140.24297, 70.38528], "type": "Point"}, "id": "464", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 299.71, "brightness": 362.35, "confidence": 100, "daynight": "D", "frp": 100.74, "instrument": "MODIS", "latitude": 70.38528, "longitude": 140.24297, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.49841, 70.38685, 140.49841, 70.38685], "geometry": {"coordinates": [140.49841, 70.38685], "type": "Point"}, "id": "465", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.19, "brightness": 328.15, "confidence": 84, "daynight": "D", "frp": 27.51, "instrument": "MODIS", "latitude": 70.38685, "longitude": 140.49841, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.21388, 70.3885, 140.21388, 70.3885], "geometry": {"coordinates": [140.21388, 70.3885], "type": "Point"}, "id": "466", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 303.73, "brightness": 381.23, "confidence": 100, "daynight": "D", "frp": 182.6, "instrument": "MODIS", "latitude": 70.3885, "longitude": 140.21388, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.28064, 70.39114, 140.28064, 70.39114], "geometry": {"coordinates": [140.28064, 70.39114], "type": "Point"}, "id": "467", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 297.63, "brightness": 335.62, "confidence": 45, "daynight": "D", "frp": 32.98, "instrument": "MODIS", "latitude": 70.39114, "longitude": 140.28064, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.18465, 70.39172, 140.18465, 70.39172], "geometry": {"coordinates": [140.18465, 70.39172], "type": "Point"}, "id": "468", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.41, "brightness": 373.9, "confidence": 100, "daynight": "D", "frp": 151.19, "instrument": "MODIS", "latitude": 70.39172, "longitude": 140.18465, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.25172, 70.39435, 140.25172, 70.39435], "geometry": {"coordinates": [140.25172, 70.39435], "type": "Point"}, "id": "469", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 301.67, "brightness": 374.5, "confidence": 100, "daynight": "D", "frp": 146.61, "instrument": "MODIS", "latitude": 70.39435, "longitude": 140.25172, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.22266, 70.39757, 140.22266, 70.39757], "geometry": {"coordinates": [140.22266, 70.39757], "type": "Point"}, "id": "470", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 312.45, "brightness": 423.8, "confidence": 94, "daynight": "D", "frp": 507.95, "instrument": "MODIS", "latitude": 70.39757, "longitude": 140.22266, "satellite": "Terra", "scan": 1.14, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.38391, 70.3997, 140.38391, 70.3997], "geometry": {"coordinates": [140.38391, 70.3997], "type": "Point"}, "id": "471", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 294.32, "brightness": 319.48, "confidence": 71, "daynight": "D", "frp": 15.23, "instrument": "MODIS", "latitude": 70.3997, "longitude": 140.38391, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.28918, 70.40023, 140.28918, 70.40023], "geometry": {"coordinates": [140.28918, 70.40023], "type": "Point"}, "id": "472", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 302.36, "brightness": 375.7, "confidence": 100, "daynight": "D", "frp": 156.68, "instrument": "MODIS", "latitude": 70.40023, "longitude": 140.28918, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.32648, 70.40612, 140.32648, 70.40612], "geometry": {"coordinates": [140.32648, 70.40612], "type": "Point"}, "id": "473", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 295.76, "brightness": 332.31, "confidence": 37, "daynight": "D", "frp": 30.06, "instrument": "MODIS", "latitude": 70.40612, "longitude": 140.32648, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.29773, 70.40932, 140.29773, 70.40932], "geometry": {"coordinates": [140.29773, 70.40932], "type": "Point"}, "id": "474", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 298.4, "brightness": 358.85, "confidence": 99, "daynight": "D", "frp": 95.11, "instrument": "MODIS", "latitude": 70.40932, "longitude": 140.29773, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.10977, 72.17689, 140.10977, 72.17689], "geometry": {"coordinates": [140.10977, 72.17689], "type": "Point"}, "id": "475", "properties": {"acq_date": "2024-07-15", "acq_time": 128, "bright_t31": 290.24, "brightness": 301.45, "confidence": 0, "daynight": "D", "frp": 5.26, "instrument": "MODIS", "latitude": 72.17689, "longitude": 140.10977, "satellite": "Terra", "scan": 1.23, "track": 1.1, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.85011, 67.85117, 145.85011, 67.85117], "geometry": {"coordinates": [145.85011, 67.85117], "type": "Point"}, "id": "476", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 296.47, "brightness": 319.09, "confidence": 68, "daynight": "D", "frp": 14.41, "instrument": "MODIS", "latitude": 67.85117, "longitude": 145.85011, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.68694, 67.8596, 146.68694, 67.8596], "geometry": {"coordinates": [146.68694, 67.8596], "type": "Point"}, "id": "477", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 295.49, "brightness": 312.07, "confidence": 58, "daynight": "D", "frp": 8.68, "instrument": "MODIS", "latitude": 67.8596, "longitude": 146.68694, "satellite": "Terra", "scan": 1.03, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.67365, 68.26637, 134.67365, 68.26637], "geometry": {"coordinates": [134.67365, 68.26637], "type": "Point"}, "id": "478", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 293.16, "brightness": 308.95, "confidence": 56, "daynight": "D", "frp": 8.19, "instrument": "MODIS", "latitude": 68.26637, "longitude": 134.67365, "satellite": "Terra", "scan": 1.35, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.24352, 68.36667, 139.24352, 68.36667], "geometry": {"coordinates": [139.24352, 68.36667], "type": "Point"}, "id": "479", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 290.5, "brightness": 308.88, "confidence": 49, "daynight": "D", "frp": 7.07, "instrument": "MODIS", "latitude": 68.36667, "longitude": 139.24352, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.49284, 68.45936, 134.49284, 68.45936], "geometry": {"coordinates": [134.49284, 68.45936], "type": "Point"}, "id": "480", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 295.73, "brightness": 312.65, "confidence": 23, "daynight": "D", "frp": 10.76, "instrument": "MODIS", "latitude": 68.45936, "longitude": 134.49284, "satellite": "Terra", "scan": 1.37, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.56471, 68.50404, 133.56471, 68.50404], "geometry": {"coordinates": [133.56471, 68.50404], "type": "Point"}, "id": "481", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 299.02, "brightness": 330.42, "confidence": 85, "daynight": "D", "frp": 36.53, "instrument": "MODIS", "latitude": 68.50404, "longitude": 133.56471, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.53006, 68.50681, 133.53006, 68.50681], "geometry": {"coordinates": [133.53006, 68.50681], "type": "Point"}, "id": "482", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 296.83, "brightness": 313.92, "confidence": 29, "daynight": "D", "frp": 7.19, "instrument": "MODIS", "latitude": 68.50681, "longitude": 133.53006, "satellite": "Terra", "scan": 1.45, "track": 1.19, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.61015, 68.53098, 134.61015, 68.53098], "geometry": {"coordinates": [134.61015, 68.53098], "type": "Point"}, "id": "483", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 294.89, "brightness": 327.33, "confidence": 0, "daynight": "D", "frp": 29.44, "instrument": "MODIS", "latitude": 68.53098, "longitude": 134.61015, "satellite": "Terra", "scan": 1.37, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.33971, 68.53265, 134.33971, 68.53265], "geometry": {"coordinates": [134.33971, 68.53265], "type": "Point"}, "id": "484", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 300.15, "brightness": 326.96, "confidence": 60, "daynight": "D", "frp": 27.39, "instrument": "MODIS", "latitude": 68.53265, "longitude": 134.33971, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.3058, 68.53551, 134.3058, 68.53551], "geometry": {"coordinates": [134.3058, 68.53551], "type": "Point"}, "id": "485", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 297.57, "brightness": 324.69, "confidence": 65, "daynight": "D", "frp": 25.72, "instrument": "MODIS", "latitude": 68.53551, "longitude": 134.3058, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.34486, 68.54296, 134.34486, 68.54296], "geometry": {"coordinates": [134.34486, 68.54296], "type": "Point"}, "id": "486", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 304.09, "brightness": 380.68, "confidence": 100, "daynight": "D", "frp": 238.68, "instrument": "MODIS", "latitude": 68.54296, "longitude": 134.34486, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.31215, 68.54572, 134.31215, 68.54572], "geometry": {"coordinates": [134.31215, 68.54572], "type": "Point"}, "id": "487", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 304.2, "brightness": 395.97, "confidence": 100, "daynight": "D", "frp": 361.8, "instrument": "MODIS", "latitude": 68.54572, "longitude": 134.31215, "satellite": "Terra", "scan": 1.39, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.48236, 68.59126, 134.48236, 68.59126], "geometry": {"coordinates": [134.48236, 68.59126], "type": "Point"}, "id": "488", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 298.35, "brightness": 327.66, "confidence": 77, "daynight": "D", "frp": 31.72, "instrument": "MODIS", "latitude": 68.59126, "longitude": 134.48236, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.44943, 68.59403, 134.44943, 68.59403], "geometry": {"coordinates": [134.44943, 68.59403], "type": "Point"}, "id": "489", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 298.46, "brightness": 322.18, "confidence": 60, "daynight": "D", "frp": 22.45, "instrument": "MODIS", "latitude": 68.59403, "longitude": 134.44943, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.45569, 68.60423, 134.45569, 68.60423], "geometry": {"coordinates": [134.45569, 68.60423], "type": "Point"}, "id": "490", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 298.37, "brightness": 343.61, "confidence": 92, "daynight": "D", "frp": 71.75, "instrument": "MODIS", "latitude": 68.60423, "longitude": 134.45569, "satellite": "Terra", "scan": 1.38, "track": 1.16, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.12093, 68.61756, 143.12093, 68.61756], "geometry": {"coordinates": [143.12093, 68.61756], "type": "Point"}, "id": "491", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 297.19, "brightness": 317.38, "confidence": 74, "daynight": "D", "frp": 10.97, "instrument": "MODIS", "latitude": 68.61756, "longitude": 143.12093, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.09772, 68.62081, 143.09772, 68.62081], "geometry": {"coordinates": [143.09772, 68.62081], "type": "Point"}, "id": "492", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 297.89, "brightness": 311.53, "confidence": 53, "daynight": "D", "frp": 5.74, "instrument": "MODIS", "latitude": 68.62081, "longitude": 143.09772, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.25102, 68.6537, 133.25102, 68.6537], "geometry": {"coordinates": [133.25102, 68.6537], "type": "Point"}, "id": "493", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 295.72, "brightness": 319.29, "confidence": 42, "daynight": "D", "frp": 17.64, "instrument": "MODIS", "latitude": 68.6537, "longitude": 133.25102, "satellite": "Terra", "scan": 1.48, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.95618, 68.89426, 140.95618, 68.89426], "geometry": {"coordinates": [140.95618, 68.89426], "type": "Point"}, "id": "494", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 303.4, "brightness": 377.81, "confidence": 100, "daynight": "D", "frp": 151.66, "instrument": "MODIS", "latitude": 68.89426, "longitude": 140.95618, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.93134, 68.89735, 140.93134, 68.89735], "geometry": {"coordinates": [140.93134, 68.89735], "type": "Point"}, "id": "495", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 299.34, "brightness": 326.95, "confidence": 83, "daynight": "D", "frp": 20.97, "instrument": "MODIS", "latitude": 68.89735, "longitude": 140.93134, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.98932, 68.89989, 140.98932, 68.89989], "geometry": {"coordinates": [140.98932, 68.89989], "type": "Point"}, "id": "496", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 300.38, "brightness": 316.33, "confidence": 73, "daynight": "D", "frp": 10.51, "instrument": "MODIS", "latitude": 68.89989, "longitude": 140.98932, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.96446, 68.90298, 140.96446, 68.90298], "geometry": {"coordinates": [140.96446, 68.90298], "type": "Point"}, "id": "497", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 302.37, "brightness": 325.01, "confidence": 81, "daynight": "D", "frp": 19.37, "instrument": "MODIS", "latitude": 68.90298, "longitude": 140.96446, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.93959, 68.90607, 140.93959, 68.90607], "geometry": {"coordinates": [140.93959, 68.90607], "type": "Point"}, "id": "498", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 301.26, "brightness": 348.27, "confidence": 95, "daynight": "D", "frp": 56.86, "instrument": "MODIS", "latitude": 68.90607, "longitude": 140.93959, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.91469, 68.90917, 140.91469, 68.90917], "geometry": {"coordinates": [140.91469, 68.90917], "type": "Point"}, "id": "499", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 298.92, "brightness": 350.73, "confidence": 96, "daynight": "D", "frp": 61.73, "instrument": "MODIS", "latitude": 68.90917, "longitude": 140.91469, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.03453, 68.91183, 141.03453, 68.91183], "geometry": {"coordinates": [141.03453, 68.91183], "type": "Point"}, "id": "500", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 303.01, "brightness": 348.5, "confidence": 95, "daynight": "D", "frp": 54.61, "instrument": "MODIS", "latitude": 68.91183, "longitude": 141.03453, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.88977, 68.91226, 140.88977, 68.91226], "geometry": {"coordinates": [140.88977, 68.91226], "type": "Point"}, "id": "501", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 303.85, "brightness": 366.7, "confidence": 100, "daynight": "D", "frp": 107.76, "instrument": "MODIS", "latitude": 68.91226, "longitude": 140.88977, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.86484, 68.91535, 140.86484, 68.91535], "geometry": {"coordinates": [140.86484, 68.91535], "type": "Point"}, "id": "502", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 302.74, "brightness": 322.27, "confidence": 60, "daynight": "D", "frp": 13.97, "instrument": "MODIS", "latitude": 68.91535, "longitude": 140.86484, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.90172, 68.91846, 140.90172, 68.91846], "geometry": {"coordinates": [140.90172, 68.91846], "type": "Point"}, "id": "503", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 295.89, "brightness": 337.92, "confidence": 90, "daynight": "D", "frp": 32.28, "instrument": "MODIS", "latitude": 68.91846, "longitude": 140.90172, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.04276, 68.92055, 141.04276, 68.92055], "geometry": {"coordinates": [141.04276, 68.92055], "type": "Point"}, "id": "504", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 301.95, "brightness": 335.94, "confidence": 74, "daynight": "D", "frp": 30.52, "instrument": "MODIS", "latitude": 68.92055, "longitude": 141.04276, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.96001, 68.92104, 140.96001, 68.92104], "geometry": {"coordinates": [140.96001, 68.92104], "type": "Point"}, "id": "505", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 308.55, "brightness": 383.82, "confidence": 100, "daynight": "D", "frp": 172.46, "instrument": "MODIS", "latitude": 68.92104, "longitude": 140.96001, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.87677, 68.92152, 140.87677, 68.92152], "geometry": {"coordinates": [140.87677, 68.92152], "type": "Point"}, "id": "506", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 296.51, "brightness": 334.1, "confidence": 87, "daynight": "D", "frp": 26.91, "instrument": "MODIS", "latitude": 68.92152, "longitude": 140.87677, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.93497, 68.92412, 140.93497, 68.92412], "geometry": {"coordinates": [140.93497, 68.92412], "type": "Point"}, "id": "507", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 303.72, "brightness": 379.43, "confidence": 100, "daynight": "D", "frp": 151.07, "instrument": "MODIS", "latitude": 68.92412, "longitude": 140.93497, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.91002, 68.92719, 140.91002, 68.92719], "geometry": {"coordinates": [140.91002, 68.92719], "type": "Point"}, "id": "508", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 304.18, "brightness": 389.48, "confidence": 100, "daynight": "D", "frp": 202.56, "instrument": "MODIS", "latitude": 68.92719, "longitude": 140.91002, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.05099, 68.92927, 141.05099, 68.92927], "geometry": {"coordinates": [141.05099, 68.92927], "type": "Point"}, "id": "509", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 300.47, "brightness": 341.35, "confidence": 84, "daynight": "D", "frp": 39.85, "instrument": "MODIS", "latitude": 68.92927, "longitude": 141.05099, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.9682, 68.92977, 140.9682, 68.92977], "geometry": {"coordinates": [140.9682, 68.92977], "type": "Point"}, "id": "510", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 302.6, "brightness": 343.15, "confidence": 92, "daynight": "D", "frp": 42.06, "instrument": "MODIS", "latitude": 68.92977, "longitude": 140.9682, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.94325, 68.93285, 140.94325, 68.93285], "geometry": {"coordinates": [140.94325, 68.93285], "type": "Point"}, "id": "511", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 305.32, "brightness": 387.81, "confidence": 100, "daynight": "D", "frp": 193.4, "instrument": "MODIS", "latitude": 68.93285, "longitude": 140.94325, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.05917, 68.938, 141.05917, 68.938], "geometry": {"coordinates": [141.05917, 68.938], "type": "Point"}, "id": "512", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 298.25, "brightness": 332.61, "confidence": 54, "daynight": "D", "frp": 26.75, "instrument": "MODIS", "latitude": 68.938, "longitude": 141.05917, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.03426, 68.94109, 141.03426, 68.94109], "geometry": {"coordinates": [141.03426, 68.94109], "type": "Point"}, "id": "513", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 300.79, "brightness": 346.2, "confidence": 82, "daynight": "D", "frp": 50.32, "instrument": "MODIS", "latitude": 68.94109, "longitude": 141.03426, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.05075, 68.95854, 141.05075, 68.95854], "geometry": {"coordinates": [141.05075, 68.95854], "type": "Point"}, "id": "514", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 297.57, "brightness": 313.88, "confidence": 56, "daynight": "D", "frp": 8.04, "instrument": "MODIS", "latitude": 68.95854, "longitude": 141.05075, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.69136, 69.24097, 134.69136, 69.24097], "geometry": {"coordinates": [134.69136, 69.24097], "type": "Point"}, "id": "515", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 301.03, "brightness": 349.08, "confidence": 95, "daynight": "D", "frp": 86.81, "instrument": "MODIS", "latitude": 69.24097, "longitude": 134.69136, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.7168, 69.26624, 134.7168, 69.26624], "geometry": {"coordinates": [134.7168, 69.26624], "type": "Point"}, "id": "516", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 300.63, "brightness": 337.08, "confidence": 84, "daynight": "D", "frp": 48.6, "instrument": "MODIS", "latitude": 69.26624, "longitude": 134.7168, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.71216, 69.2716, 134.71216, 69.2716], "geometry": {"coordinates": [134.71216, 69.2716], "type": "Point"}, "id": "517", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 301.73, "brightness": 341.52, "confidence": 91, "daynight": "D", "frp": 61.13, "instrument": "MODIS", "latitude": 69.2716, "longitude": 134.71216, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.72282, 69.27652, 134.72282, 69.27652], "geometry": {"coordinates": [134.72282, 69.27652], "type": "Point"}, "id": "518", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 301.62, "brightness": 360.08, "confidence": 100, "daynight": "D", "frp": 126.76, "instrument": "MODIS", "latitude": 69.27652, "longitude": 134.72282, "satellite": "Terra", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.61574, 69.33932, 134.61574, 69.33932], "geometry": {"coordinates": [134.61574, 69.33932], "type": "Point"}, "id": "519", "properties": {"acq_date": "2024-07-15", "acq_time": 130, "bright_t31": 299.21, "brightness": 320.77, "confidence": 43, "daynight": "D", "frp": 20.54, "instrument": "MODIS", "latitude": 69.33932, "longitude": 134.61574, "satellite": "Terra", "scan": 1.41, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.82771, 59.9632, 132.82771, 59.9632], "geometry": {"coordinates": [132.82771, 59.9632], "type": "Point"}, "id": "520", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 275.73, "brightness": 311.6, "confidence": 70, "daynight": "D", "frp": 11.56, "instrument": "MODIS", "latitude": 59.9632, "longitude": 132.82771, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.91573, 60.02152, 132.91573, 60.02152], "geometry": {"coordinates": [132.91573, 60.02152], "type": "Point"}, "id": "521", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 285.31, "brightness": 308.54, "confidence": 66, "daynight": "D", "frp": 8.78, "instrument": "MODIS", "latitude": 60.02152, "longitude": 132.91573, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.92444, 60.02538, 132.92444, 60.02538], "geometry": {"coordinates": [132.92444, 60.02538], "type": "Point"}, "id": "522", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 286.35, "brightness": 313.03, "confidence": 73, "daynight": "D", "frp": 11.92, "instrument": "MODIS", "latitude": 60.02538, "longitude": 132.92444, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.90453, 60.02757, 132.90453, 60.02757], "geometry": {"coordinates": [132.90453, 60.02757], "type": "Point"}, "id": "523", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 281.88, "brightness": 313.24, "confidence": 73, "daynight": "D", "frp": 12.26, "instrument": "MODIS", "latitude": 60.02757, "longitude": 132.90453, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.00418, 60.03212, 134.00418, 60.03212], "geometry": {"coordinates": [134.00418, 60.03212], "type": "Point"}, "id": "524", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 280.54, "brightness": 306.05, "confidence": 55, "daynight": "D", "frp": 6.72, "instrument": "MODIS", "latitude": 60.03212, "longitude": 134.00418, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.9912, 60.32693, 141.9912, 60.32693], "geometry": {"coordinates": [141.9912, 60.32693], "type": "Point"}, "id": "525", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 295.37, "brightness": 327.68, "confidence": 84, "daynight": "D", "frp": 27.24, "instrument": "MODIS", "latitude": 60.32693, "longitude": 141.9912, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.97157, 60.33054, 141.97157, 60.33054], "geometry": {"coordinates": [141.97157, 60.33054], "type": "Point"}, "id": "526", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 295.07, "brightness": 309.58, "confidence": 65, "daynight": "D", "frp": 6.61, "instrument": "MODIS", "latitude": 60.33054, "longitude": 141.97157, "satellite": "Terra", "scan": 1.13, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.37167, 61.33311, 132.37167, 61.33311], "geometry": {"coordinates": [132.37167, 61.33311], "type": "Point"}, "id": "527", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 294.07, "brightness": 314.68, "confidence": 68, "daynight": "D", "frp": 12.68, "instrument": "MODIS", "latitude": 61.33311, "longitude": 132.37167, "satellite": "Terra", "scan": 1.21, "track": 1.1, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.34933, 61.33538, 132.34933, 61.33538], "geometry": {"coordinates": [132.34933, 61.33538], "type": "Point"}, "id": "528", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 291.77, "brightness": 322.15, "confidence": 80, "daynight": "D", "frp": 21.82, "instrument": "MODIS", "latitude": 61.33538, "longitude": 132.34933, "satellite": "Terra", "scan": 1.22, "track": 1.1, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [138.504, 61.49033, 138.504, 61.49033], "geometry": {"coordinates": [138.504, 61.49033], "type": "Point"}, "id": "529", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 278.42, "brightness": 311.55, "confidence": 35, "daynight": "D", "frp": 9.39, "instrument": "MODIS", "latitude": 61.49033, "longitude": 138.504, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [138.4861, 61.493, 138.4861, 61.493], "geometry": {"coordinates": [138.4861, 61.493], "type": "Point"}, "id": "530", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 278.01, "brightness": 313.62, "confidence": 14, "daynight": "D", "frp": 10.94, "instrument": "MODIS", "latitude": 61.493, "longitude": 138.4861, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [138.5383, 61.51333, 138.5383, 61.51333], "geometry": {"coordinates": [138.5383, 61.51333], "type": "Point"}, "id": "531", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 276.8, "brightness": 328.91, "confidence": 83, "daynight": "D", "frp": 27.32, "instrument": "MODIS", "latitude": 61.51333, "longitude": 138.5383, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [138.52045, 61.516, 138.52045, 61.516], "geometry": {"coordinates": [138.52045, 61.516], "type": "Point"}, "id": "532", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 275.32, "brightness": 321.07, "confidence": 64, "daynight": "D", "frp": 18.31, "instrument": "MODIS", "latitude": 61.516, "longitude": 138.52045, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.18227, 62.68356, 136.18227, 62.68356], "geometry": {"coordinates": [136.18227, 62.68356], "type": "Point"}, "id": "533", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 297.45, "brightness": 315.14, "confidence": 63, "daynight": "D", "frp": 8.67, "instrument": "MODIS", "latitude": 62.68356, "longitude": 136.18227, "satellite": "Terra", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.18742, 62.69242, 136.18742, 62.69242], "geometry": {"coordinates": [136.18742, 62.69242], "type": "Point"}, "id": "534", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 298.14, "brightness": 315.57, "confidence": 62, "daynight": "D", "frp": 8.7, "instrument": "MODIS", "latitude": 62.69242, "longitude": 136.18742, "satellite": "Terra", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.7708, 62.82397, 136.7708, 62.82397], "geometry": {"coordinates": [136.7708, 62.82397], "type": "Point"}, "id": "535", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 301.46, "brightness": 328.52, "confidence": 83, "daynight": "D", "frp": 20.84, "instrument": "MODIS", "latitude": 62.82397, "longitude": 136.7708, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.75124, 62.82647, 136.75124, 62.82647], "geometry": {"coordinates": [136.75124, 62.82647], "type": "Point"}, "id": "536", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 298.99, "brightness": 314.22, "confidence": 42, "daynight": "D", "frp": 6.34, "instrument": "MODIS", "latitude": 62.82647, "longitude": 136.75124, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.84004, 62.834, 136.84004, 62.834], "geometry": {"coordinates": [136.84004, 62.834], "type": "Point"}, "id": "537", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 301.67, "brightness": 327.08, "confidence": 81, "daynight": "D", "frp": 18.78, "instrument": "MODIS", "latitude": 62.834, "longitude": 136.84004, "satellite": "Terra", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.82056, 62.83651, 136.82056, 62.83651], "geometry": {"coordinates": [136.82056, 62.83651], "type": "Point"}, "id": "538", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 303.88, "brightness": 349.33, "confidence": 95, "daynight": "D", "frp": 56.33, "instrument": "MODIS", "latitude": 62.83651, "longitude": 136.82056, "satellite": "Terra", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.80107, 62.83901, 136.80107, 62.83901], "geometry": {"coordinates": [136.80107, 62.83901], "type": "Point"}, "id": "539", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 297.88, "brightness": 327.77, "confidence": 79, "daynight": "D", "frp": 19.1, "instrument": "MODIS", "latitude": 62.83901, "longitude": 136.80107, "satellite": "Terra", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.82591, 62.84528, 136.82591, 62.84528], "geometry": {"coordinates": [136.82591, 62.84528], "type": "Point"}, "id": "540", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 303.74, "brightness": 337.27, "confidence": 89, "daynight": "D", "frp": 33.73, "instrument": "MODIS", "latitude": 62.84528, "longitude": 136.82591, "satellite": "Terra", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.80647, 62.84777, 136.80647, 62.84777], "geometry": {"coordinates": [136.80647, 62.84777], "type": "Point"}, "id": "541", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 297.0, "brightness": 317.17, "confidence": 48, "daynight": "D", "frp": 8.16, "instrument": "MODIS", "latitude": 62.84777, "longitude": 136.80647, "satellite": "Terra", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.83131, 62.85404, 136.83131, 62.85404], "geometry": {"coordinates": [136.83131, 62.85404], "type": "Point"}, "id": "542", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 302.08, "brightness": 315.93, "confidence": 29, "daynight": "D", "frp": 7.7, "instrument": "MODIS", "latitude": 62.85404, "longitude": 136.83131, "satellite": "Terra", "scan": 1.03, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.78339, 62.87912, 136.78339, 62.87912], "geometry": {"coordinates": [136.78339, 62.87912], "type": "Point"}, "id": "543", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 302.07, "brightness": 326.95, "confidence": 82, "daynight": "D", "frp": 19.25, "instrument": "MODIS", "latitude": 62.87912, "longitude": 136.78339, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.76378, 62.88164, 136.76378, 62.88164], "geometry": {"coordinates": [136.76378, 62.88164], "type": "Point"}, "id": "544", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 301.5, "brightness": 314.75, "confidence": 56, "daynight": "D", "frp": 6.32, "instrument": "MODIS", "latitude": 62.88164, "longitude": 136.76378, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.73184, 62.92265, 136.73184, 62.92265], "geometry": {"coordinates": [136.73184, 62.92265], "type": "Point"}, "id": "545", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 305.33, "brightness": 322.5, "confidence": 78, "daynight": "D", "frp": 10.95, "instrument": "MODIS", "latitude": 62.92265, "longitude": 136.73184, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.79111, 63.25658, 120.79111, 63.25658], "geometry": {"coordinates": [120.79111, 63.25658], "type": "Point"}, "id": "546", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 294.78, "brightness": 309.83, "confidence": 50, "daynight": "D", "frp": 27.45, "instrument": "MODIS", "latitude": 63.25658, "longitude": 120.79111, "satellite": "Terra", "scan": 3.25, "track": 1.7, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.06714, 63.33656, 120.06714, 63.33656], "geometry": {"coordinates": [120.06714, 63.33656], "type": "Point"}, "id": "547", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 293.1, "brightness": 307.39, "confidence": 32, "daynight": "D", "frp": 24.73, "instrument": "MODIS", "latitude": 63.33656, "longitude": 120.06714, "satellite": "Terra", "scan": 3.45, "track": 1.75, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.07268, 63.34681, 120.07268, 63.34681], "geometry": {"coordinates": [120.07268, 63.34681], "type": "Point"}, "id": "548", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 293.13, "brightness": 312.0, "confidence": 50, "daynight": "D", "frp": 42.05, "instrument": "MODIS", "latitude": 63.34681, "longitude": 120.07268, "satellite": "Terra", "scan": 3.45, "track": 1.75, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.13596, 63.35175, 120.13596, 63.35175], "geometry": {"coordinates": [120.13596, 63.35175], "type": "Point"}, "id": "549", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 292.88, "brightness": 307.7, "confidence": 53, "daynight": "D", "frp": 27.77, "instrument": "MODIS", "latitude": 63.35175, "longitude": 120.13596, "satellite": "Terra", "scan": 3.43, "track": 1.74, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.06731, 63.35225, 120.06731, 63.35225], "geometry": {"coordinates": [120.06731, 63.35225], "type": "Point"}, "id": "550", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 292.51, "brightness": 308.82, "confidence": 57, "daynight": "D", "frp": 32.34, "instrument": "MODIS", "latitude": 63.35225, "longitude": 120.06731, "satellite": "Terra", "scan": 3.45, "track": 1.75, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.17946, 63.7747, 132.17946, 63.7747], "geometry": {"coordinates": [132.17946, 63.7747], "type": "Point"}, "id": "551", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 305.02, "brightness": 334.1, "confidence": 84, "daynight": "D", "frp": 34.7, "instrument": "MODIS", "latitude": 63.7747, "longitude": 132.17946, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.1897, 63.78177, 132.1897, 63.78177], "geometry": {"coordinates": [132.1897, 63.78177], "type": "Point"}, "id": "552", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 301.35, "brightness": 319.18, "confidence": 40, "daynight": "D", "frp": 13.0, "instrument": "MODIS", "latitude": 63.78177, "longitude": 132.1897, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.1635, 63.78409, 132.1635, 63.78409], "geometry": {"coordinates": [132.1635, 63.78409], "type": "Point"}, "id": "553", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 302.36, "brightness": 319.59, "confidence": 43, "daynight": "D", "frp": 13.51, "instrument": "MODIS", "latitude": 63.78409, "longitude": 132.1635, "satellite": "Terra", "scan": 1.33, "track": 1.14, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.09276, 63.81131, 132.09276, 63.81131], "geometry": {"coordinates": [132.09276, 63.81131], "type": "Point"}, "id": "554", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 303.92, "brightness": 315.36, "confidence": 51, "daynight": "D", "frp": 11.16, "instrument": "MODIS", "latitude": 63.81131, "longitude": 132.09276, "satellite": "Terra", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.09743, 63.82139, 132.09743, 63.82139], "geometry": {"coordinates": [132.09743, 63.82139], "type": "Point"}, "id": "555", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 301.16, "brightness": 327.54, "confidence": 82, "daynight": "D", "frp": 29.51, "instrument": "MODIS", "latitude": 63.82139, "longitude": 132.09743, "satellite": "Terra", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.07065, 63.82377, 132.07065, 63.82377], "geometry": {"coordinates": [132.07065, 63.82377], "type": "Point"}, "id": "556", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 301.33, "brightness": 343.64, "confidence": 92, "daynight": "D", "frp": 66.79, "instrument": "MODIS", "latitude": 63.82377, "longitude": 132.07065, "satellite": "Terra", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.76865, 64.18668, 120.76865, 64.18668], "geometry": {"coordinates": [120.76865, 64.18668], "type": "Point"}, "id": "557", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 293.66, "brightness": 319.3, "confidence": 31, "daynight": "D", "frp": 67.07, "instrument": "MODIS", "latitude": 64.18668, "longitude": 120.76865, "satellite": "Terra", "scan": 3.28, "track": 1.71, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.30433, 64.33591, 120.30433, 64.33591], "geometry": {"coordinates": [120.30433, 64.33591], "type": "Point"}, "id": "558", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 294.84, "brightness": 311.6, "confidence": 35, "daynight": "D", "frp": 37.45, "instrument": "MODIS", "latitude": 64.33591, "longitude": 120.30433, "satellite": "Terra", "scan": 3.41, "track": 1.74, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.23343, 64.33617, 120.23343, 64.33617], "geometry": {"coordinates": [120.23343, 64.33617], "type": "Point"}, "id": "559", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 293.78, "brightness": 316.68, "confidence": 66, "daynight": "D", "frp": 63.3, "instrument": "MODIS", "latitude": 64.33617, "longitude": 120.23343, "satellite": "Terra", "scan": 3.43, "track": 1.74, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.29507, 64.34126, 120.29507, 64.34126], "geometry": {"coordinates": [120.29507, 64.34126], "type": "Point"}, "id": "560", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 295.63, "brightness": 321.92, "confidence": 78, "daynight": "D", "frp": 95.94, "instrument": "MODIS", "latitude": 64.34126, "longitude": 120.29507, "satellite": "Terra", "scan": 3.41, "track": 1.74, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.22467, 64.34175, 120.22467, 64.34175], "geometry": {"coordinates": [120.22467, 64.34175], "type": "Point"}, "id": "561", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 294.21, "brightness": 320.89, "confidence": 77, "daynight": "D", "frp": 91.5, "instrument": "MODIS", "latitude": 64.34175, "longitude": 120.22467, "satellite": "Terra", "scan": 3.43, "track": 1.74, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.23262, 64.35183, 120.23262, 64.35183], "geometry": {"coordinates": [120.23262, 64.35183], "type": "Point"}, "id": "562", "properties": {"acq_date": "2024-07-15", "acq_time": 132, "bright_t31": 295.8, "brightness": 315.37, "confidence": 56, "daynight": "D", "frp": 57.11, "instrument": "MODIS", "latitude": 64.35183, "longitude": 120.23262, "satellite": "Terra", "scan": 3.43, "track": 1.74, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [136.87981, 50.28249, 136.87981, 50.28249], "geometry": {"coordinates": [136.87981, 50.28249], "type": "Point"}, "id": "563", "properties": {"acq_date": "2024-07-15", "acq_time": 134, "bright_t31": 293.94, "brightness": 313.4, "confidence": 0, "daynight": "D", "frp": 13.7, "instrument": "MODIS", "latitude": 50.28249, "longitude": 136.87981, "satellite": "Terra", "scan": 1.24, "track": 1.11, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.38922, 51.41003, 143.38922, 51.41003], "geometry": {"coordinates": [143.38922, 51.41003], "type": "Point"}, "id": "564", "properties": {"acq_date": "2024-07-15", "acq_time": 134, "bright_t31": 286.78, "brightness": 302.28, "confidence": 31, "daynight": "D", "frp": 8.6, "instrument": "MODIS", "latitude": 51.41003, "longitude": 143.38922, "satellite": "Terra", "scan": 2.24, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [118.98397, 53.49852, 118.98397, 53.49852], "geometry": {"coordinates": [118.98397, 53.49852], "type": "Point"}, "id": "565", "properties": {"acq_date": "2024-07-15", "acq_time": 134, "bright_t31": 287.43, "brightness": 302.82, "confidence": 45, "daynight": "D", "frp": 23.81, "instrument": "MODIS", "latitude": 53.49852, "longitude": 118.98397, "satellite": "Terra", "scan": 3.47, "track": 1.75, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.39602, 40.66718, 122.39602, 40.66718], "geometry": {"coordinates": [122.39602, 40.66718], "type": "Point"}, "id": "566", "properties": {"acq_date": "2024-07-15", "acq_time": 137, "bright_t31": 299.01, "brightness": 315.52, "confidence": 53, "daynight": "D", "frp": 15.11, "instrument": "MODIS", "latitude": 40.66718, "longitude": 122.39602, "satellite": "Terra", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.00893, 40.68966, 122.00893, 40.68966], "geometry": {"coordinates": [122.00893, 40.68966], "type": "Point"}, "id": "567", "properties": {"acq_date": "2024-07-15", "acq_time": 137, "bright_t31": 297.42, "brightness": 312.07, "confidence": 19, "daynight": "D", "frp": 15.44, "instrument": "MODIS", "latitude": 40.68966, "longitude": 122.00893, "satellite": "Terra", "scan": 1.79, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [125.24501, 42.31852, 125.24501, 42.31852], "geometry": {"coordinates": [125.24501, 42.31852], "type": "Point"}, "id": "568", "properties": {"acq_date": "2024-07-15", "acq_time": 137, "bright_t31": 300.35, "brightness": 314.01, "confidence": 50, "daynight": "D", "frp": 8.8, "instrument": "MODIS", "latitude": 42.31852, "longitude": 125.24501, "satellite": "Terra", "scan": 1.26, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.2128, 44.11337, 129.2128, 44.11337], "geometry": {"coordinates": [129.2128, 44.11337], "type": "Point"}, "id": "569", "properties": {"acq_date": "2024-07-15", "acq_time": 137, "bright_t31": 302.15, "brightness": 317.52, "confidence": 40, "daynight": "D", "frp": 9.24, "instrument": "MODIS", "latitude": 44.11337, "longitude": 129.2128, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [128.07872, 45.05656, 128.07872, 45.05656], "geometry": {"coordinates": [128.07872, 45.05656], "type": "Point"}, "id": "570", "properties": {"acq_date": "2024-07-15", "acq_time": 137, "bright_t31": 291.98, "brightness": 309.33, "confidence": 28, "daynight": "D", "frp": 5.3, "instrument": "MODIS", "latitude": 45.05656, "longitude": 128.07872, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [128.06548, 45.05822, 128.06548, 45.05822], "geometry": {"coordinates": [128.06548, 45.05822], "type": "Point"}, "id": "571", "properties": {"acq_date": "2024-07-15", "acq_time": 137, "bright_t31": 294.6, "brightness": 311.3, "confidence": 45, "daynight": "D", "frp": 6.66, "instrument": "MODIS", "latitude": 45.05822, "longitude": 128.06548, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.82716, 45.83665, 130.82716, 45.83665], "geometry": {"coordinates": [130.82716, 45.83665], "type": "Point"}, "id": "572", "properties": {"acq_date": "2024-07-15", "acq_time": 137, "bright_t31": 290.1, "brightness": 313.05, "confidence": 40, "daynight": "D", "frp": 6.06, "instrument": "MODIS", "latitude": 45.83665, "longitude": 130.82716, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [130.81464, 45.83849, 130.81464, 45.83849], "geometry": {"coordinates": [130.81464, 45.83849], "type": "Point"}, "id": "573", "properties": {"acq_date": "2024-07-15", "acq_time": 137, "bright_t31": 291.06, "brightness": 313.01, "confidence": 38, "daynight": "D", "frp": 5.78, "instrument": "MODIS", "latitude": 45.83849, "longitude": 130.81464, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [129.36711, 46.16263, 129.36711, 46.16263], "geometry": {"coordinates": [129.36711, 46.16263], "type": "Point"}, "id": "574", "properties": {"acq_date": "2024-07-15", "acq_time": 137, "bright_t31": 291.5, "brightness": 312.13, "confidence": 57, "daynight": "D", "frp": 5.71, "instrument": "MODIS", "latitude": 46.16263, "longitude": 129.36711, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [131.08928, 46.60587, 131.08928, 46.60587], "geometry": {"coordinates": [131.08928, 46.60587], "type": "Point"}, "id": "575", "properties": {"acq_date": "2024-07-15", "acq_time": 137, "bright_t31": 286.34, "brightness": 305.79, "confidence": 32, "daynight": "D", "frp": 4.13, "instrument": "MODIS", "latitude": 46.60587, "longitude": 131.08928, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [117.64368, 24.66413, 117.64368, 24.66413], "geometry": {"coordinates": [117.64368, 24.66413], "type": "Point"}, "id": "576", "properties": {"acq_date": "2024-07-15", "acq_time": 141, "bright_t31": 287.91, "brightness": 310.68, "confidence": 22, "daynight": "D", "frp": 10.84, "instrument": "MODIS", "latitude": 24.66413, "longitude": 117.64368, "satellite": "Terra", "scan": 2.17, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.00383, 15.96161, 120.00383, 15.96161], "geometry": {"coordinates": [120.00383, 15.96161], "type": "Point"}, "id": "577", "properties": {"acq_date": "2024-07-15", "acq_time": 143, "bright_t31": 294.26, "brightness": 320.65, "confidence": 74, "daynight": "D", "frp": 14.34, "instrument": "MODIS", "latitude": 15.96161, "longitude": 120.00383, "satellite": "Terra", "scan": 1.16, "track": 1.07, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [145.84711, 67.85172, 145.84711, 67.85172], "geometry": {"coordinates": [145.84711, 67.85172], "type": "Point"}, "id": "578", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.68, "brightness": 308.78, "confidence": 51, "daynight": "D", "frp": 23.43, "instrument": "MODIS", "latitude": 67.85172, "longitude": 145.84711, "satellite": "Aqua", "scan": 2.23, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.66017, 67.85935, 146.66017, 67.85935], "geometry": {"coordinates": [146.66017, 67.85935], "type": "Point"}, "id": "579", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 293.72, "brightness": 309.76, "confidence": 65, "daynight": "D", "frp": 23.41, "instrument": "MODIS", "latitude": 67.85935, "longitude": 146.66017, "satellite": "Aqua", "scan": 2.14, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.66846, 67.85941, 146.66846, 67.85941], "geometry": {"coordinates": [146.66846, 67.85941], "type": "Point"}, "id": "580", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 293.95, "brightness": 312.32, "confidence": 69, "daynight": "D", "frp": 27.35, "instrument": "MODIS", "latitude": 67.85941, "longitude": 146.66846, "satellite": "Aqua", "scan": 2.14, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.78496, 68.28629, 146.78496, 68.28629], "geometry": {"coordinates": [146.78496, 68.28629], "type": "Point"}, "id": "581", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 292.82, "brightness": 323.32, "confidence": 72, "daynight": "D", "frp": 52.92, "instrument": "MODIS", "latitude": 68.28629, "longitude": 146.78496, "satellite": "Aqua", "scan": 2.02, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.8224, 68.29793, 146.8224, 68.29793], "geometry": {"coordinates": [146.8224, 68.29793], "type": "Point"}, "id": "582", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 293.64, "brightness": 325.59, "confidence": 56, "daynight": "D", "frp": 58.16, "instrument": "MODIS", "latitude": 68.29793, "longitude": 146.8224, "satellite": "Aqua", "scan": 2.01, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.07108, 68.36551, 146.07108, 68.36551], "geometry": {"coordinates": [146.07108, 68.36551], "type": "Point"}, "id": "583", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 292.67, "brightness": 312.49, "confidence": 55, "daynight": "D", "frp": 28.69, "instrument": "MODIS", "latitude": 68.36551, "longitude": 146.07108, "satellite": "Aqua", "scan": 2.07, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.05998, 68.36624, 146.05998, 68.36624], "geometry": {"coordinates": [146.05998, 68.36624], "type": "Point"}, "id": "584", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 292.01, "brightness": 309.09, "confidence": 0, "daynight": "D", "frp": 19.79, "instrument": "MODIS", "latitude": 68.36624, "longitude": 146.05998, "satellite": "Aqua", "scan": 2.07, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [148.64827, 68.4248, 148.64827, 68.4248], "geometry": {"coordinates": [148.64827, 68.4248], "type": "Point"}, "id": "585", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.62, "brightness": 306.95, "confidence": 24, "daynight": "D", "frp": 10.97, "instrument": "MODIS", "latitude": 68.4248, "longitude": 148.64827, "satellite": "Aqua", "scan": 1.8, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.55566, 68.49222, 133.55566, 68.49222], "geometry": {"coordinates": [133.55566, 68.49222], "type": "Point"}, "id": "586", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.04, "brightness": 309.08, "confidence": 62, "daynight": "D", "frp": 31.84, "instrument": "MODIS", "latitude": 68.49222, "longitude": 133.55566, "satellite": "Aqua", "scan": 3.64, "track": 1.79, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.54892, 68.4975, 133.54892, 68.4975], "geometry": {"coordinates": [133.54892, 68.4975], "type": "Point"}, "id": "587", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 292.88, "brightness": 307.91, "confidence": 56, "daynight": "D", "frp": 27.26, "instrument": "MODIS", "latitude": 68.4975, "longitude": 133.54892, "satellite": "Aqua", "scan": 3.64, "track": 1.79, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.30788, 68.52894, 134.30788, 68.52894], "geometry": {"coordinates": [134.30788, 68.52894], "type": "Point"}, "id": "588", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.26, "brightness": 331.45, "confidence": 86, "daynight": "D", "frp": 164.03, "instrument": "MODIS", "latitude": 68.52894, "longitude": 134.30788, "satellite": "Aqua", "scan": 3.51, "track": 1.76, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.30498, 68.53358, 134.30498, 68.53358], "geometry": {"coordinates": [134.30498, 68.53358], "type": "Point"}, "id": "589", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.98, "brightness": 340.65, "confidence": 92, "daynight": "D", "frp": 253.99, "instrument": "MODIS", "latitude": 68.53358, "longitude": 134.30498, "satellite": "Aqua", "scan": 3.51, "track": 1.76, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.35904, 68.55302, 134.35904, 68.55302], "geometry": {"coordinates": [134.35904, 68.55302], "type": "Point"}, "id": "590", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.22, "brightness": 326.29, "confidence": 53, "daynight": "D", "frp": 117.4, "instrument": "MODIS", "latitude": 68.55302, "longitude": 134.35904, "satellite": "Aqua", "scan": 3.49, "track": 1.76, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.35545, 68.557, 134.35545, 68.557], "geometry": {"coordinates": [134.35545, 68.557], "type": "Point"}, "id": "591", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.79, "brightness": 320.36, "confidence": 69, "daynight": "D", "frp": 86.76, "instrument": "MODIS", "latitude": 68.557, "longitude": 134.35545, "satellite": "Aqua", "scan": 3.49, "track": 1.76, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.05574, 68.85519, 143.05574, 68.85519], "geometry": {"coordinates": [143.05574, 68.85519], "type": "Point"}, "id": "592", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.98, "brightness": 336.35, "confidence": 35, "daynight": "D", "frp": 104.01, "instrument": "MODIS", "latitude": 68.85519, "longitude": 143.05574, "satellite": "Aqua", "scan": 2.26, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.05984, 68.8569, 143.05984, 68.8569], "geometry": {"coordinates": [143.05984, 68.8569], "type": "Point"}, "id": "593", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.96, "brightness": 339.79, "confidence": 78, "daynight": "D", "frp": 125.31, "instrument": "MODIS", "latitude": 68.8569, "longitude": 143.05984, "satellite": "Aqua", "scan": 2.26, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.95357, 68.8881, 140.95357, 68.8881], "geometry": {"coordinates": [140.95357, 68.8881], "type": "Point"}, "id": "594", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 298.22, "brightness": 328.92, "confidence": 71, "daynight": "D", "frp": 83.55, "instrument": "MODIS", "latitude": 68.8881, "longitude": 140.95357, "satellite": "Aqua", "scan": 2.49, "track": 1.52, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.95619, 68.89303, 142.95619, 68.89303], "geometry": {"coordinates": [142.95619, 68.89303], "type": "Point"}, "id": "595", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.81, "brightness": 341.46, "confidence": 31, "daynight": "D", "frp": 122.84, "instrument": "MODIS", "latitude": 68.89303, "longitude": 142.95619, "satellite": "Aqua", "scan": 2.26, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.02162, 68.89746, 143.02162, 68.89746], "geometry": {"coordinates": [143.02162, 68.89746], "type": "Point"}, "id": "596", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.69, "brightness": 352.06, "confidence": 71, "daynight": "D", "frp": 189.66, "instrument": "MODIS", "latitude": 68.89746, "longitude": 143.02162, "satellite": "Aqua", "scan": 2.25, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.92671, 68.89766, 140.92671, 68.89766], "geometry": {"coordinates": [140.92671, 68.89766], "type": "Point"}, "id": "597", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 297.82, "brightness": 331.35, "confidence": 75, "daynight": "D", "frp": 91.1, "instrument": "MODIS", "latitude": 68.89766, "longitude": 140.92671, "satellite": "Aqua", "scan": 2.49, "track": 1.52, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.0204, 68.89894, 141.0204, 68.89894], "geometry": {"coordinates": [141.0204, 68.89894], "type": "Point"}, "id": "598", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 297.79, "brightness": 322.2, "confidence": 78, "daynight": "D", "frp": 59.13, "instrument": "MODIS", "latitude": 68.89894, "longitude": 141.0204, "satellite": "Aqua", "scan": 2.48, "track": 1.52, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.93248, 68.9011, 142.93248, 68.9011], "geometry": {"coordinates": [142.93248, 68.9011], "type": "Point"}, "id": "599", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.11, "brightness": 339.87, "confidence": 60, "daynight": "D", "frp": 124.28, "instrument": "MODIS", "latitude": 68.9011, "longitude": 142.93248, "satellite": "Aqua", "scan": 2.26, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.90012, 68.90731, 140.90012, 68.90731], "geometry": {"coordinates": [140.90012, 68.90731], "type": "Point"}, "id": "600", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.7, "brightness": 329.99, "confidence": 52, "daynight": "D", "frp": 80.65, "instrument": "MODIS", "latitude": 68.90731, "longitude": 140.90012, "satellite": "Aqua", "scan": 2.49, "track": 1.52, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.06311, 68.91441, 141.06311, 68.91441], "geometry": {"coordinates": [141.06311, 68.91441], "type": "Point"}, "id": "601", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.42, "brightness": 318.93, "confidence": 65, "daynight": "D", "frp": 47.13, "instrument": "MODIS", "latitude": 68.91441, "longitude": 141.06311, "satellite": "Aqua", "scan": 2.47, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.8737, 68.91704, 140.8737, 68.91704], "geometry": {"coordinates": [140.8737, 68.91704], "type": "Point"}, "id": "602", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 298.33, "brightness": 346.79, "confidence": 95, "daynight": "D", "frp": 184.35, "instrument": "MODIS", "latitude": 68.91704, "longitude": 140.8737, "satellite": "Aqua", "scan": 2.49, "track": 1.52, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.03972, 68.91978, 141.03972, 68.91978], "geometry": {"coordinates": [141.03972, 68.91978], "type": "Point"}, "id": "603", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 297.42, "brightness": 327.5, "confidence": 29, "daynight": "D", "frp": 73.02, "instrument": "MODIS", "latitude": 68.91978, "longitude": 141.03972, "satellite": "Aqua", "scan": 2.47, "track": 1.51, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.94385, 68.92335, 140.94385, 68.92335], "geometry": {"coordinates": [140.94385, 68.92335], "type": "Point"}, "id": "604", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 299.92, "brightness": 363.52, "confidence": 100, "daynight": "D", "frp": 326.23, "instrument": "MODIS", "latitude": 68.92335, "longitude": 140.94385, "satellite": "Aqua", "scan": 2.48, "track": 1.52, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.70021, 68.92942, 142.70021, 68.92942], "geometry": {"coordinates": [142.70021, 68.92942], "type": "Point"}, "id": "605", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 298.22, "brightness": 360.19, "confidence": 91, "daynight": "D", "frp": 263.32, "instrument": "MODIS", "latitude": 68.92942, "longitude": 142.70021, "satellite": "Aqua", "scan": 2.28, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.60876, 68.93418, 142.60876, 68.93418], "geometry": {"coordinates": [142.60876, 68.93418], "type": "Point"}, "id": "606", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.14, "brightness": 328.41, "confidence": 63, "daynight": "D", "frp": 75.18, "instrument": "MODIS", "latitude": 68.93418, "longitude": 142.60876, "satellite": "Aqua", "scan": 2.29, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.74187, 68.94377, 142.74187, 68.94377], "geometry": {"coordinates": [142.74187, 68.94377], "type": "Point"}, "id": "607", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 302.63, "brightness": 383.47, "confidence": 100, "daynight": "D", "frp": 532.12, "instrument": "MODIS", "latitude": 68.94377, "longitude": 142.74187, "satellite": "Aqua", "scan": 2.27, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.65041, 68.94849, 142.65041, 68.94849], "geometry": {"coordinates": [142.65041, 68.94849], "type": "Point"}, "id": "608", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.23, "brightness": 331.25, "confidence": 62, "daynight": "D", "frp": 85.24, "instrument": "MODIS", "latitude": 68.94849, "longitude": 142.65041, "satellite": "Aqua", "scan": 2.28, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.78296, 68.95789, 142.78296, 68.95789], "geometry": {"coordinates": [142.78296, 68.95789], "type": "Point"}, "id": "609", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.76, "brightness": 358.88, "confidence": 98, "daynight": "D", "frp": 255.13, "instrument": "MODIS", "latitude": 68.95789, "longitude": 142.78296, "satellite": "Aqua", "scan": 2.26, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.59573, 68.96516, 142.59573, 68.96516], "geometry": {"coordinates": [142.59573, 68.96516], "type": "Point"}, "id": "610", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 292.85, "brightness": 318.51, "confidence": 47, "daynight": "D", "frp": 42.91, "instrument": "MODIS", "latitude": 68.96516, "longitude": 142.59573, "satellite": "Aqua", "scan": 2.28, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.26215, 68.97933, 143.26215, 68.97933], "geometry": {"coordinates": [143.26215, 68.97933], "type": "Point"}, "id": "611", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.67, "brightness": 320.34, "confidence": 76, "daynight": "D", "frp": 46.45, "instrument": "MODIS", "latitude": 68.97933, "longitude": 143.26215, "satellite": "Aqua", "scan": 2.2, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.23711, 68.98857, 143.23711, 68.98857], "geometry": {"coordinates": [143.23711, 68.98857], "type": "Point"}, "id": "612", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.67, "brightness": 322.08, "confidence": 81, "daynight": "D", "frp": 51.83, "instrument": "MODIS", "latitude": 68.98857, "longitude": 143.23711, "satellite": "Aqua", "scan": 2.2, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.58592, 68.99812, 142.58592, 68.99812], "geometry": {"coordinates": [142.58592, 68.99812], "type": "Point"}, "id": "613", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 291.73, "brightness": 312.02, "confidence": 66, "daynight": "D", "frp": 30.2, "instrument": "MODIS", "latitude": 68.99812, "longitude": 142.58592, "satellite": "Aqua", "scan": 2.27, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.88341, 69.11806, 142.88341, 69.11806], "geometry": {"coordinates": [142.88341, 69.11806], "type": "Point"}, "id": "614", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 292.41, "brightness": 326.39, "confidence": 84, "daynight": "D", "frp": 70.46, "instrument": "MODIS", "latitude": 69.11806, "longitude": 142.88341, "satellite": "Aqua", "scan": 2.2, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.7659, 69.12408, 147.7659, 69.12408], "geometry": {"coordinates": [147.7659, 69.12408], "type": "Point"}, "id": "615", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.32, "brightness": 321.66, "confidence": 0, "daynight": "D", "frp": 40.98, "instrument": "MODIS", "latitude": 69.12408, "longitude": 147.7659, "satellite": "Aqua", "scan": 1.74, "track": 1.29, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.45038, 69.13078, 142.45038, 69.13078], "geometry": {"coordinates": [142.45038, 69.13078], "type": "Point"}, "id": "616", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 291.5, "brightness": 310.77, "confidence": 46, "daynight": "D", "frp": 25.06, "instrument": "MODIS", "latitude": 69.13078, "longitude": 142.45038, "satellite": "Aqua", "scan": 2.24, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.92326, 69.13159, 142.92326, 69.13159], "geometry": {"coordinates": [142.92326, 69.13159], "type": "Point"}, "id": "617", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.2, "brightness": 314.61, "confidence": 64, "daynight": "D", "frp": 30.91, "instrument": "MODIS", "latitude": 69.13159, "longitude": 142.92326, "satellite": "Aqua", "scan": 2.19, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.45529, 69.13233, 142.45529, 69.13233], "geometry": {"coordinates": [142.45529, 69.13233], "type": "Point"}, "id": "618", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 291.62, "brightness": 315.51, "confidence": 65, "daynight": "D", "frp": 37.12, "instrument": "MODIS", "latitude": 69.13233, "longitude": 142.45529, "satellite": "Aqua", "scan": 2.24, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.61453, 69.13295, 142.61453, 69.13295], "geometry": {"coordinates": [142.61453, 69.13295], "type": "Point"}, "id": "619", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 290.11, "brightness": 303.22, "confidence": 55, "daynight": "D", "frp": 14.77, "instrument": "MODIS", "latitude": 69.13295, "longitude": 142.61453, "satellite": "Aqua", "scan": 2.23, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.49146, 69.14508, 142.49146, 69.14508], "geometry": {"coordinates": [142.49146, 69.14508], "type": "Point"}, "id": "620", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 292.7, "brightness": 333.65, "confidence": 89, "daynight": "D", "frp": 101.56, "instrument": "MODIS", "latitude": 69.14508, "longitude": 142.49146, "satellite": "Aqua", "scan": 2.23, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.49663, 69.14649, 142.49663, 69.14649], "geometry": {"coordinates": [142.49663, 69.14649], "type": "Point"}, "id": "621", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 293.01, "brightness": 329.0, "confidence": 86, "daynight": "D", "frp": 81.63, "instrument": "MODIS", "latitude": 69.14649, "longitude": 142.49663, "satellite": "Aqua", "scan": 2.23, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.39432, 69.18219, 143.39432, 69.18219], "geometry": {"coordinates": [143.39432, 69.18219], "type": "Point"}, "id": "622", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.9, "brightness": 319.6, "confidence": 38, "daynight": "D", "frp": 35.78, "instrument": "MODIS", "latitude": 69.18219, "longitude": 143.39432, "satellite": "Aqua", "scan": 2.13, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.38991, 69.18231, 142.38991, 69.18231], "geometry": {"coordinates": [142.38991, 69.18231], "type": "Point"}, "id": "623", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 292.55, "brightness": 322.77, "confidence": 71, "daynight": "D", "frp": 53.79, "instrument": "MODIS", "latitude": 69.18231, "longitude": 142.38991, "satellite": "Aqua", "scan": 2.23, "track": 1.45, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.40878, 69.20436, 143.40878, 69.20436], "geometry": {"coordinates": [143.40878, 69.20436], "type": "Point"}, "id": "624", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 297.04, "brightness": 328.28, "confidence": 50, "daynight": "D", "frp": 60.49, "instrument": "MODIS", "latitude": 69.20436, "longitude": 143.40878, "satellite": "Aqua", "scan": 2.12, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.00517, 69.21291, 143.00517, 69.21291], "geometry": {"coordinates": [143.00517, 69.21291], "type": "Point"}, "id": "625", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.19, "brightness": 308.39, "confidence": 26, "daynight": "D", "frp": 12.52, "instrument": "MODIS", "latitude": 69.21291, "longitude": 143.00517, "satellite": "Aqua", "scan": 2.16, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.00742, 69.21294, 143.00742, 69.21294], "geometry": {"coordinates": [143.00742, 69.21294], "type": "Point"}, "id": "626", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.21, "brightness": 308.7, "confidence": 47, "daynight": "D", "frp": 13.67, "instrument": "MODIS", "latitude": 69.21294, "longitude": 143.00742, "satellite": "Aqua", "scan": 2.16, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.63797, 69.21835, 134.63797, 69.21835], "geometry": {"coordinates": [134.63797, 69.21835], "type": "Point"}, "id": "627", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.59, "brightness": 312.9, "confidence": 41, "daynight": "D", "frp": 40.84, "instrument": "MODIS", "latitude": 69.21835, "longitude": 134.63797, "satellite": "Aqua", "scan": 3.13, "track": 1.68, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.68768, 69.24059, 134.68768, 69.24059], "geometry": {"coordinates": [134.68768, 69.24059], "type": "Point"}, "id": "628", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.2, "brightness": 342.14, "confidence": 92, "daynight": "D", "frp": 224.0, "instrument": "MODIS", "latitude": 69.24059, "longitude": 134.68768, "satellite": "Aqua", "scan": 3.11, "track": 1.67, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.36644, 69.2456, 143.36644, 69.2456], "geometry": {"coordinates": [143.36644, 69.2456], "type": "Point"}, "id": "629", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.63, "brightness": 332.47, "confidence": 67, "daynight": "D", "frp": 73.78, "instrument": "MODIS", "latitude": 69.2456, "longitude": 143.36644, "satellite": "Aqua", "scan": 2.12, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.52719, 69.24745, 142.52719, 69.24745], "geometry": {"coordinates": [142.52719, 69.24745], "type": "Point"}, "id": "630", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 292.4, "brightness": 314.86, "confidence": 75, "daynight": "D", "frp": 38.47, "instrument": "MODIS", "latitude": 69.24745, "longitude": 142.52719, "satellite": "Aqua", "scan": 2.2, "track": 1.44, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.42827, 69.24886, 143.42827, 69.24886], "geometry": {"coordinates": [143.42827, 69.24886], "type": "Point"}, "id": "631", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.71, "brightness": 333.89, "confidence": 66, "daynight": "D", "frp": 84.13, "instrument": "MODIS", "latitude": 69.24886, "longitude": 143.42827, "satellite": "Aqua", "scan": 2.11, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.9082, 69.25075, 142.9082, 69.25075], "geometry": {"coordinates": [142.9082, 69.25075], "type": "Point"}, "id": "632", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 292.17, "brightness": 315.3, "confidence": 24, "daynight": "D", "frp": 30.99, "instrument": "MODIS", "latitude": 69.25075, "longitude": 142.9082, "satellite": "Aqua", "scan": 2.16, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.34183, 69.25478, 143.34183, 69.25478], "geometry": {"coordinates": [143.34183, 69.25478], "type": "Point"}, "id": "633", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.95, "brightness": 322.3, "confidence": 66, "daynight": "D", "frp": 42.44, "instrument": "MODIS", "latitude": 69.25478, "longitude": 143.34183, "satellite": "Aqua", "scan": 2.12, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.7372, 69.26269, 134.7372, 69.26269], "geometry": {"coordinates": [134.7372, 69.26269], "type": "Point"}, "id": "634", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.75, "brightness": 325.38, "confidence": 81, "daynight": "D", "frp": 97.95, "instrument": "MODIS", "latitude": 69.26269, "longitude": 134.7372, "satellite": "Aqua", "scan": 3.09, "track": 1.67, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.31709, 69.26392, 143.31709, 69.26392], "geometry": {"coordinates": [143.31709, 69.26392], "type": "Point"}, "id": "635", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.83, "brightness": 326.78, "confidence": 56, "daynight": "D", "frp": 55.99, "instrument": "MODIS", "latitude": 69.26392, "longitude": 143.31709, "satellite": "Aqua", "scan": 2.12, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.70416, 69.27197, 134.70416, 69.27197], "geometry": {"coordinates": [134.70416, 69.27197], "type": "Point"}, "id": "636", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.88, "brightness": 347.28, "confidence": 95, "daynight": "D", "frp": 269.78, "instrument": "MODIS", "latitude": 69.27197, "longitude": 134.70416, "satellite": "Aqua", "scan": 3.09, "track": 1.67, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.91292, 69.27238, 142.91292, 69.27238], "geometry": {"coordinates": [142.91292, 69.27238], "type": "Point"}, "id": "637", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.5, "brightness": 328.63, "confidence": 75, "daynight": "D", "frp": 74.2, "instrument": "MODIS", "latitude": 69.27238, "longitude": 142.91292, "satellite": "Aqua", "scan": 2.15, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.92084, 69.27264, 142.92084, 69.27264], "geometry": {"coordinates": [142.92084, 69.27264], "type": "Point"}, "id": "638", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.3, "brightness": 335.47, "confidence": 90, "daynight": "D", "frp": 103.26, "instrument": "MODIS", "latitude": 69.27264, "longitude": 142.92084, "satellite": "Aqua", "scan": 2.15, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.2924, 69.27307, 143.2924, 69.27307], "geometry": {"coordinates": [143.2924, 69.27307], "type": "Point"}, "id": "639", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.78, "brightness": 327.53, "confidence": 65, "daynight": "D", "frp": 60.13, "instrument": "MODIS", "latitude": 69.27307, "longitude": 143.2924, "satellite": "Aqua", "scan": 2.12, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.28841, 69.27364, 143.28841, 69.27364], "geometry": {"coordinates": [143.28841, 69.27364], "type": "Point"}, "id": "640", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.64, "brightness": 321.59, "confidence": 64, "daynight": "D", "frp": 42.47, "instrument": "MODIS", "latitude": 69.27364, "longitude": 143.28841, "satellite": "Aqua", "scan": 2.12, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.13731, 69.27524, 143.13731, 69.27524], "geometry": {"coordinates": [143.13731, 69.27524], "type": "Point"}, "id": "641", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.06, "brightness": 309.36, "confidence": 52, "daynight": "D", "frp": 14.86, "instrument": "MODIS", "latitude": 69.27524, "longitude": 143.13731, "satellite": "Aqua", "scan": 2.13, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.25261, 69.31396, 143.25261, 69.31396], "geometry": {"coordinates": [143.25261, 69.31396], "type": "Point"}, "id": "642", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 292.68, "brightness": 315.75, "confidence": 30, "daynight": "D", "frp": 31.97, "instrument": "MODIS", "latitude": 69.31396, "longitude": 143.25261, "satellite": "Aqua", "scan": 2.11, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.61118, 69.32876, 134.61118, 69.32876], "geometry": {"coordinates": [134.61118, 69.32876], "type": "Point"}, "id": "643", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.21, "brightness": 311.72, "confidence": 34, "daynight": "D", "frp": 37.05, "instrument": "MODIS", "latitude": 69.32876, "longitude": 134.61118, "satellite": "Aqua", "scan": 3.08, "track": 1.67, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.61903, 69.32994, 134.61903, 69.32994], "geometry": {"coordinates": [134.61903, 69.32994], "type": "Point"}, "id": "644", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.24, "brightness": 313.19, "confidence": 29, "daynight": "D", "frp": 40.29, "instrument": "MODIS", "latitude": 69.32994, "longitude": 134.61903, "satellite": "Aqua", "scan": 3.08, "track": 1.67, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.65405, 69.99831, 141.65405, 69.99831], "geometry": {"coordinates": [141.65405, 69.99831], "type": "Point"}, "id": "645", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.61, "brightness": 331.2, "confidence": 87, "daynight": "D", "frp": 72.05, "instrument": "MODIS", "latitude": 69.99831, "longitude": 141.65405, "satellite": "Aqua", "scan": 2.07, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.64893, 69.99965, 141.64893, 69.99965], "geometry": {"coordinates": [141.64893, 69.99965], "type": "Point"}, "id": "646", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.81, "brightness": 327.62, "confidence": 51, "daynight": "D", "frp": 57.27, "instrument": "MODIS", "latitude": 69.99965, "longitude": 141.64893, "satellite": "Aqua", "scan": 2.07, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.71814, 70.00237, 141.71814, 70.00237], "geometry": {"coordinates": [141.71814, 70.00237], "type": "Point"}, "id": "647", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.32, "brightness": 335.07, "confidence": 83, "daynight": "D", "frp": 86.34, "instrument": "MODIS", "latitude": 70.00237, "longitude": 141.71814, "satellite": "Aqua", "scan": 2.07, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.71266, 70.00378, 141.71266, 70.00378], "geometry": {"coordinates": [141.71266, 70.00378], "type": "Point"}, "id": "648", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 293.81, "brightness": 329.78, "confidence": 43, "daynight": "D", "frp": 61.8, "instrument": "MODIS", "latitude": 70.00378, "longitude": 141.71266, "satellite": "Aqua", "scan": 2.07, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.75642, 70.01531, 141.75642, 70.01531], "geometry": {"coordinates": [141.75642, 70.01531], "type": "Point"}, "id": "649", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.74, "brightness": 341.8, "confidence": 93, "daynight": "D", "frp": 115.59, "instrument": "MODIS", "latitude": 70.01531, "longitude": 141.75642, "satellite": "Aqua", "scan": 2.06, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.75058, 70.0168, 141.75058, 70.0168], "geometry": {"coordinates": [141.75058, 70.0168], "type": "Point"}, "id": "650", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 293.19, "brightness": 334.12, "confidence": 66, "daynight": "D", "frp": 76.5, "instrument": "MODIS", "latitude": 70.0168, "longitude": 141.75058, "satellite": "Aqua", "scan": 2.06, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.59792, 70.01769, 141.59792, 70.01769], "geometry": {"coordinates": [141.59792, 70.01769], "type": "Point"}, "id": "651", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.56, "brightness": 322.39, "confidence": 79, "daynight": "D", "frp": 45.73, "instrument": "MODIS", "latitude": 70.01769, "longitude": 141.59792, "satellite": "Aqua", "scan": 2.07, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.67123, 70.08402, 140.67123, 70.08402], "geometry": {"coordinates": [140.67123, 70.08402], "type": "Point"}, "id": "652", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 297.94, "brightness": 321.48, "confidence": 63, "daynight": "D", "frp": 41.39, "instrument": "MODIS", "latitude": 70.08402, "longitude": 140.67123, "satellite": "Aqua", "scan": 2.14, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.73692, 70.08887, 140.73692, 70.08887], "geometry": {"coordinates": [140.73692, 70.08887], "type": "Point"}, "id": "653", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 298.56, "brightness": 338.09, "confidence": 91, "daynight": "D", "frp": 104.71, "instrument": "MODIS", "latitude": 70.08887, "longitude": 140.73692, "satellite": "Aqua", "scan": 2.13, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.74561, 70.08888, 140.74561, 70.08888], "geometry": {"coordinates": [140.74561, 70.08888], "type": "Point"}, "id": "654", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 298.27, "brightness": 339.19, "confidence": 91, "daynight": "D", "frp": 110.15, "instrument": "MODIS", "latitude": 70.08888, "longitude": 140.74561, "satellite": "Aqua", "scan": 2.13, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.4856, 70.092, 140.4856, 70.092], "geometry": {"coordinates": [140.4856, 70.092], "type": "Point"}, "id": "655", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 299.24, "brightness": 331.84, "confidence": 88, "daynight": "D", "frp": 80.38, "instrument": "MODIS", "latitude": 70.092, "longitude": 140.4856, "satellite": "Aqua", "scan": 2.15, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.48338, 70.09218, 140.48338, 70.09218], "geometry": {"coordinates": [140.48338, 70.09218], "type": "Point"}, "id": "656", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 299.26, "brightness": 328.93, "confidence": 86, "daynight": "D", "frp": 67.75, "instrument": "MODIS", "latitude": 70.09218, "longitude": 140.48338, "satellite": "Aqua", "scan": 2.15, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.64449, 70.0929, 140.64449, 70.0929], "geometry": {"coordinates": [140.64449, 70.0929], "type": "Point"}, "id": "657", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 300.41, "brightness": 351.92, "confidence": 97, "daynight": "D", "frp": 177.61, "instrument": "MODIS", "latitude": 70.0929, "longitude": 140.64449, "satellite": "Aqua", "scan": 2.14, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.55139, 70.09679, 140.55139, 70.09679], "geometry": {"coordinates": [140.55139, 70.09679], "type": "Point"}, "id": "658", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 299.25, "brightness": 325.29, "confidence": 84, "daynight": "D", "frp": 55.25, "instrument": "MODIS", "latitude": 70.09679, "longitude": 140.55139, "satellite": "Aqua", "scan": 2.15, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.61751, 70.1017, 140.61751, 70.1017], "geometry": {"coordinates": [140.61751, 70.1017], "type": "Point"}, "id": "659", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 297.04, "brightness": 328.46, "confidence": 31, "daynight": "D", "frp": 57.15, "instrument": "MODIS", "latitude": 70.1017, "longitude": 140.61751, "satellite": "Aqua", "scan": 2.14, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.77559, 70.10246, 140.77559, 70.10246], "geometry": {"coordinates": [140.77559, 70.10246], "type": "Point"}, "id": "660", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 298.24, "brightness": 327.5, "confidence": 65, "daynight": "D", "frp": 60.48, "instrument": "MODIS", "latitude": 70.10246, "longitude": 140.77559, "satellite": "Aqua", "scan": 2.12, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.52463, 70.10569, 140.52463, 70.10569], "geometry": {"coordinates": [140.52463, 70.10569], "type": "Point"}, "id": "661", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 299.92, "brightness": 346.25, "confidence": 94, "daynight": "D", "frp": 151.58, "instrument": "MODIS", "latitude": 70.10569, "longitude": 140.52463, "satellite": "Aqua", "scan": 2.15, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.52211, 70.10596, 140.52211, 70.10596], "geometry": {"coordinates": [140.52211, 70.10596], "type": "Point"}, "id": "662", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 299.75, "brightness": 340.1, "confidence": 92, "daynight": "D", "frp": 117.33, "instrument": "MODIS", "latitude": 70.10596, "longitude": 140.52211, "satellite": "Aqua", "scan": 2.15, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.68329, 70.10653, 140.68329, 70.10653], "geometry": {"coordinates": [140.68329, 70.10653], "type": "Point"}, "id": "663", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 297.21, "brightness": 332.09, "confidence": 41, "daynight": "D", "frp": 68.42, "instrument": "MODIS", "latitude": 70.10653, "longitude": 140.68329, "satellite": "Aqua", "scan": 2.13, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.93242, 70.10925, 141.93242, 70.10925], "geometry": {"coordinates": [141.93242, 70.10925], "type": "Point"}, "id": "664", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 291.86, "brightness": 373.92, "confidence": 100, "daynight": "D", "frp": 343.34, "instrument": "MODIS", "latitude": 70.10925, "longitude": 141.93242, "satellite": "Aqua", "scan": 2.02, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.925, 70.11133, 141.925, 70.11133], "geometry": {"coordinates": [141.925, 70.11133], "type": "Point"}, "id": "665", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 292.8, "brightness": 375.36, "confidence": 100, "daynight": "D", "frp": 363.6, "instrument": "MODIS", "latitude": 70.11133, "longitude": 141.925, "satellite": "Aqua", "scan": 2.02, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.65646, 70.11536, 140.65646, 70.11536], "geometry": {"coordinates": [140.65646, 70.11536], "type": "Point"}, "id": "666", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 297.44, "brightness": 341.76, "confidence": 89, "daynight": "D", "frp": 115.99, "instrument": "MODIS", "latitude": 70.11536, "longitude": 140.65646, "satellite": "Aqua", "scan": 2.13, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.1149, 70.12962, 140.1149, 70.12962], "geometry": {"coordinates": [140.1149, 70.12962], "type": "Point"}, "id": "667", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 300.04, "brightness": 321.48, "confidence": 81, "daynight": "D", "frp": 44.08, "instrument": "MODIS", "latitude": 70.12962, "longitude": 140.1149, "satellite": "Aqua", "scan": 2.18, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.12222, 70.13035, 140.12222, 70.13035], "geometry": {"coordinates": [140.12222, 70.13035], "type": "Point"}, "id": "668", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 300.02, "brightness": 319.43, "confidence": 78, "daynight": "D", "frp": 34.82, "instrument": "MODIS", "latitude": 70.13035, "longitude": 140.12222, "satellite": "Aqua", "scan": 2.18, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.99275, 70.14179, 139.99275, 70.14179], "geometry": {"coordinates": [139.99275, 70.14179], "type": "Point"}, "id": "669", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.83, "brightness": 321.95, "confidence": 81, "daynight": "D", "frp": 49.39, "instrument": "MODIS", "latitude": 70.14179, "longitude": 139.99275, "satellite": "Aqua", "scan": 2.19, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.73415, 70.1425, 140.73415, 70.1425], "geometry": {"coordinates": [140.73415, 70.1425], "type": "Point"}, "id": "670", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.85, "brightness": 320.55, "confidence": 50, "daynight": "D", "frp": 38.25, "instrument": "MODIS", "latitude": 70.1425, "longitude": 140.73415, "satellite": "Aqua", "scan": 2.12, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.03122, 70.15553, 140.03122, 70.15553], "geometry": {"coordinates": [140.03122, 70.15553], "type": "Point"}, "id": "671", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 297.14, "brightness": 312.35, "confidence": 71, "daynight": "D", "frp": 21.57, "instrument": "MODIS", "latitude": 70.15553, "longitude": 140.03122, "satellite": "Aqua", "scan": 2.18, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.32059, 70.15824, 141.32059, 70.15824], "geometry": {"coordinates": [141.32059, 70.15824], "type": "Point"}, "id": "672", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.85, "brightness": 310.92, "confidence": 46, "daynight": "D", "frp": 18.86, "instrument": "MODIS", "latitude": 70.15824, "longitude": 141.32059, "satellite": "Aqua", "scan": 2.06, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.44957, 70.16665, 141.44957, 70.16665], "geometry": {"coordinates": [141.44957, 70.16665], "type": "Point"}, "id": "673", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 293.34, "brightness": 313.06, "confidence": 69, "daynight": "D", "frp": 26.01, "instrument": "MODIS", "latitude": 70.16665, "longitude": 141.44957, "satellite": "Aqua", "scan": 2.04, "track": 1.39, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.2307, 70.17101, 140.2307, 70.17101], "geometry": {"coordinates": [140.2307, 70.17101], "type": "Point"}, "id": "674", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 299.42, "brightness": 316.08, "confidence": 76, "daynight": "D", "frp": 28.34, "instrument": "MODIS", "latitude": 70.17101, "longitude": 140.2307, "satellite": "Aqua", "scan": 2.15, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.35886, 70.1712, 141.35886, 70.1712], "geometry": {"coordinates": [141.35886, 70.1712], "type": "Point"}, "id": "675", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.75, "brightness": 328.57, "confidence": 86, "daynight": "D", "frp": 66.18, "instrument": "MODIS", "latitude": 70.1712, "longitude": 141.35886, "satellite": "Aqua", "scan": 2.05, "track": 1.39, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.23886, 70.17142, 140.23886, 70.17142], "geometry": {"coordinates": [140.23886, 70.17142], "type": "Point"}, "id": "676", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 299.46, "brightness": 317.46, "confidence": 71, "daynight": "D", "frp": 29.32, "instrument": "MODIS", "latitude": 70.17142, "longitude": 140.23886, "satellite": "Aqua", "scan": 2.15, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.3528, 70.17276, 141.3528, 70.17276], "geometry": {"coordinates": [141.3528, 70.17276], "type": "Point"}, "id": "677", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.31, "brightness": 325.58, "confidence": 62, "daynight": "D", "frp": 54.05, "instrument": "MODIS", "latitude": 70.17276, "longitude": 141.3528, "satellite": "Aqua", "scan": 2.05, "track": 1.39, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.48735, 70.17944, 141.48735, 70.17944], "geometry": {"coordinates": [141.48735, 70.17944], "type": "Point"}, "id": "678", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 293.82, "brightness": 310.49, "confidence": 53, "daynight": "D", "frp": 20.95, "instrument": "MODIS", "latitude": 70.17944, "longitude": 141.48735, "satellite": "Aqua", "scan": 2.04, "track": 1.39, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.26939, 70.18479, 140.26939, 70.18479], "geometry": {"coordinates": [140.26939, 70.18479], "type": "Point"}, "id": "679", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 297.38, "brightness": 309.76, "confidence": 50, "daynight": "D", "frp": 14.66, "instrument": "MODIS", "latitude": 70.18479, "longitude": 140.26939, "satellite": "Aqua", "scan": 2.15, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.78217, 70.18526, 141.78217, 70.18526], "geometry": {"coordinates": [141.78217, 70.18526], "type": "Point"}, "id": "680", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 292.98, "brightness": 316.37, "confidence": 75, "daynight": "D", "frp": 32.64, "instrument": "MODIS", "latitude": 70.18526, "longitude": 141.78217, "satellite": "Aqua", "scan": 2.01, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.76807, 70.18674, 141.76807, 70.18674], "geometry": {"coordinates": [141.76807, 70.18674], "type": "Point"}, "id": "681", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 293.86, "brightness": 318.59, "confidence": 79, "daynight": "D", "frp": 40.64, "instrument": "MODIS", "latitude": 70.18674, "longitude": 141.76807, "satellite": "Aqua", "scan": 2.01, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.58905, 70.19624, 141.58905, 70.19624], "geometry": {"coordinates": [141.58905, 70.19624], "type": "Point"}, "id": "682", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 293.09, "brightness": 309.57, "confidence": 51, "daynight": "D", "frp": 20.19, "instrument": "MODIS", "latitude": 70.19624, "longitude": 141.58905, "satellite": "Aqua", "scan": 2.02, "track": 1.39, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.1839, 70.20374, 141.1839, 70.20374], "geometry": {"coordinates": [141.1839, 70.20374], "type": "Point"}, "id": "683", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.87, "brightness": 336.39, "confidence": 90, "daynight": "D", "frp": 97.7, "instrument": "MODIS", "latitude": 70.20374, "longitude": 141.1839, "satellite": "Aqua", "scan": 2.06, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.17226, 70.2047, 141.17226, 70.2047], "geometry": {"coordinates": [141.17226, 70.2047], "type": "Point"}, "id": "684", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.51, "brightness": 321.75, "confidence": 56, "daynight": "D", "frp": 44.95, "instrument": "MODIS", "latitude": 70.2047, "longitude": 141.17226, "satellite": "Aqua", "scan": 2.06, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.84625, 70.23541, 140.84625, 70.23541], "geometry": {"coordinates": [140.84625, 70.23541], "type": "Point"}, "id": "685", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.65, "brightness": 323.73, "confidence": 65, "daynight": "D", "frp": 49.84, "instrument": "MODIS", "latitude": 70.23541, "longitude": 140.84625, "satellite": "Aqua", "scan": 2.08, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.84108, 70.23656, 140.84108, 70.23656], "geometry": {"coordinates": [140.84108, 70.23656], "type": "Point"}, "id": "686", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.63, "brightness": 328.52, "confidence": 80, "daynight": "D", "frp": 64.72, "instrument": "MODIS", "latitude": 70.23656, "longitude": 140.84108, "satellite": "Aqua", "scan": 2.08, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.28523, 70.24371, 141.28523, 70.24371], "geometry": {"coordinates": [141.28523, 70.24371], "type": "Point"}, "id": "687", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.18, "brightness": 318.63, "confidence": 61, "daynight": "D", "frp": 37.7, "instrument": "MODIS", "latitude": 70.24371, "longitude": 141.28523, "satellite": "Aqua", "scan": 2.04, "track": 1.39, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.81958, 70.24416, 140.81958, 70.24416], "geometry": {"coordinates": [140.81958, 70.24416], "type": "Point"}, "id": "688", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.22, "brightness": 325.4, "confidence": 20, "daynight": "D", "frp": 50.2, "instrument": "MODIS", "latitude": 70.24416, "longitude": 140.81958, "satellite": "Aqua", "scan": 2.08, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.81444, 70.24532, 140.81444, 70.24532], "geometry": {"coordinates": [140.81444, 70.24532], "type": "Point"}, "id": "689", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.21, "brightness": 324.22, "confidence": 83, "daynight": "D", "frp": 51.78, "instrument": "MODIS", "latitude": 70.24532, "longitude": 140.81444, "satellite": "Aqua", "scan": 2.08, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.39687, 70.24831, 140.39687, 70.24831], "geometry": {"coordinates": [140.39687, 70.24831], "type": "Point"}, "id": "690", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.1, "brightness": 309.92, "confidence": 65, "daynight": "D", "frp": 19.36, "instrument": "MODIS", "latitude": 70.24831, "longitude": 140.39687, "satellite": "Aqua", "scan": 2.12, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.66895, 70.2669, 140.66895, 70.2669], "geometry": {"coordinates": [140.66895, 70.2669], "type": "Point"}, "id": "691", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.7, "brightness": 319.68, "confidence": 80, "daynight": "D", "frp": 38.1, "instrument": "MODIS", "latitude": 70.2669, "longitude": 140.66895, "satellite": "Aqua", "scan": 2.09, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.33821, 70.31889, 140.33821, 70.31889], "geometry": {"coordinates": [140.33821, 70.31889], "type": "Point"}, "id": "692", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.71, "brightness": 318.94, "confidence": 66, "daynight": "D", "frp": 37.61, "instrument": "MODIS", "latitude": 70.31889, "longitude": 140.33821, "satellite": "Aqua", "scan": 2.1, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.33382, 70.31966, 140.33382, 70.31966], "geometry": {"coordinates": [140.33382, 70.31966], "type": "Point"}, "id": "693", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.67, "brightness": 319.88, "confidence": 80, "daynight": "D", "frp": 41.68, "instrument": "MODIS", "latitude": 70.31966, "longitude": 140.33382, "satellite": "Aqua", "scan": 2.1, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.62671, 70.32885, 140.62671, 70.32885], "geometry": {"coordinates": [140.62671, 70.32885], "type": "Point"}, "id": "694", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 294.09, "brightness": 322.76, "confidence": 82, "daynight": "D", "frp": 50.49, "instrument": "MODIS", "latitude": 70.32885, "longitude": 140.62671, "satellite": "Aqua", "scan": 2.07, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.70352, 70.3327, 140.70352, 70.3327], "geometry": {"coordinates": [140.70352, 70.3327], "type": "Point"}, "id": "695", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 295.63, "brightness": 351.53, "confidence": 97, "daynight": "D", "frp": 176.48, "instrument": "MODIS", "latitude": 70.3327, "longitude": 140.70352, "satellite": "Aqua", "scan": 2.07, "track": 1.4, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.23679, 70.37677, 140.23679, 70.37677], "geometry": {"coordinates": [140.23679, 70.37677], "type": "Point"}, "id": "696", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 296.23, "brightness": 321.28, "confidence": 65, "daynight": "D", "frp": 42.45, "instrument": "MODIS", "latitude": 70.37677, "longitude": 140.23679, "satellite": "Aqua", "scan": 2.09, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.27585, 70.39042, 140.27585, 70.39042], "geometry": {"coordinates": [140.27585, 70.39042], "type": "Point"}, "id": "697", "properties": {"acq_date": "2024-07-15", "acq_time": 147, "bright_t31": 299.25, "brightness": 357.35, "confidence": 99, "daynight": "D", "frp": 212.8, "instrument": "MODIS", "latitude": 70.39042, "longitude": 140.27585, "satellite": "Aqua", "scan": 2.09, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [119.65019, -3.79094, 119.65019, -3.79094], "geometry": {"coordinates": [119.65019, -3.79094], "type": "Point"}, "id": "698", "properties": {"acq_date": "2024-07-15", "acq_time": 149, "bright_t31": 296.42, "brightness": 311.86, "confidence": 60, "daynight": "D", "frp": 5.44, "instrument": "MODIS", "latitude": -3.79094, "longitude": 119.65019, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [115.50276, -2.21013, 115.50276, -2.21013], "geometry": {"coordinates": [115.50276, -2.21013], "type": "Point"}, "id": "699", "properties": {"acq_date": "2024-07-15", "acq_time": 149, "bright_t31": 296.33, "brightness": 314.45, "confidence": 44, "daynight": "D", "frp": 7.3, "instrument": "MODIS", "latitude": -2.21013, "longitude": 115.50276, "satellite": "Terra", "scan": 1.28, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [115.58472, -2.16037, 115.58472, -2.16037], "geometry": {"coordinates": [115.58472, -2.16037], "type": "Point"}, "id": "700", "properties": {"acq_date": "2024-07-15", "acq_time": 149, "bright_t31": 295.93, "brightness": 314.93, "confidence": 42, "daynight": "D", "frp": 7.81, "instrument": "MODIS", "latitude": -2.16037, "longitude": 115.58472, "satellite": "Terra", "scan": 1.26, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [119.32184, -1.98231, 119.32184, -1.98231], "geometry": {"coordinates": [119.32184, -1.98231], "type": "Point"}, "id": "701", "properties": {"acq_date": "2024-07-15", "acq_time": 149, "bright_t31": 295.58, "brightness": 319.92, "confidence": 79, "daynight": "D", "frp": 12.5, "instrument": "MODIS", "latitude": -1.98231, "longitude": 119.32184, "satellite": "Terra", "scan": 1.01, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [116.20561, -1.90569, 116.20561, -1.90569], "geometry": {"coordinates": [116.20561, -1.90569], "type": "Point"}, "id": "702", "properties": {"acq_date": "2024-07-15", "acq_time": 149, "bright_t31": 296.22, "brightness": 312.49, "confidence": 44, "daynight": "D", "frp": 6.46, "instrument": "MODIS", "latitude": -1.90569, "longitude": 116.20561, "satellite": "Terra", "scan": 1.17, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [117.50917, 0.66913, 117.50917, 0.66913], "geometry": {"coordinates": [117.50917, 0.66913], "type": "Point"}, "id": "703", "properties": {"acq_date": "2024-07-15", "acq_time": 149, "bright_t31": 295.54, "brightness": 312.5, "confidence": 63, "daynight": "D", "frp": 6.34, "instrument": "MODIS", "latitude": 0.66913, "longitude": 117.50917, "satellite": "Terra", "scan": 1.08, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.50665, -15.0847, 126.50665, -15.0847], "geometry": {"coordinates": [126.50665, -15.0847], "type": "Point"}, "id": "704", "properties": {"acq_date": "2024-07-15", "acq_time": 152, "bright_t31": 298.23, "brightness": 330.0, "confidence": 83, "daynight": "D", "frp": 225.98, "instrument": "MODIS", "latitude": -15.0847, "longitude": 126.50665, "satellite": "Terra", "scan": 4.68, "track": 1.98, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.51196, -15.08401, 126.51196, -15.08401], "geometry": {"coordinates": [126.51196, -15.08401], "type": "Point"}, "id": "705", "properties": {"acq_date": "2024-07-15", "acq_time": 152, "bright_t31": 298.09, "brightness": 327.42, "confidence": 80, "daynight": "D", "frp": 191.91, "instrument": "MODIS", "latitude": -15.08401, "longitude": 126.51196, "satellite": "Terra", "scan": 4.68, "track": 1.98, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.4643, -15.0806, 126.4643, -15.0806], "geometry": {"coordinates": [126.4643, -15.0806], "type": "Point"}, "id": "706", "properties": {"acq_date": "2024-07-15", "acq_time": 152, "bright_t31": 297.12, "brightness": 312.8, "confidence": 56, "daynight": "D", "frp": 63.64, "instrument": "MODIS", "latitude": -15.0806, "longitude": 126.4643, "satellite": "Terra", "scan": 4.64, "track": 1.97, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [126.4697, -15.07964, 126.4697, -15.07964], "geometry": {"coordinates": [126.4697, -15.07964], "type": "Point"}, "id": "707", "properties": {"acq_date": "2024-07-15", "acq_time": 152, "bright_t31": 297.25, "brightness": 318.31, "confidence": 69, "daynight": "D", "frp": 102.0, "instrument": "MODIS", "latitude": -15.07964, "longitude": 126.4697, "satellite": "Terra", "scan": 4.64, "track": 1.97, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [118.38654, -8.81809, 118.38654, -8.81809], "geometry": {"coordinates": [118.38654, -8.81809], "type": "Point"}, "id": "708", "properties": {"acq_date": "2024-07-15", "acq_time": 152, "bright_t31": 296.54, "brightness": 307.17, "confidence": 0, "daynight": "D", "frp": 4.66, "instrument": "MODIS", "latitude": -8.81809, "longitude": 118.38654, "satellite": "Terra", "scan": 1.04, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [113.46557, -8.24232, 113.46557, -8.24232], "geometry": {"coordinates": [113.46557, -8.24232], "type": "Point"}, "id": "709", "properties": {"acq_date": "2024-07-15", "acq_time": 152, "bright_t31": 297.27, "brightness": 310.3, "confidence": 60, "daynight": "D", "frp": 8.58, "instrument": "MODIS", "latitude": -8.24232, "longitude": 113.46557, "satellite": "Terra", "scan": 1.42, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [113.45293, -8.24035, 113.45293, -8.24035], "geometry": {"coordinates": [113.45293, -8.24035], "type": "Point"}, "id": "710", "properties": {"acq_date": "2024-07-15", "acq_time": 152, "bright_t31": 297.68, "brightness": 312.95, "confidence": 66, "daynight": "D", "frp": 11.54, "instrument": "MODIS", "latitude": -8.24035, "longitude": 113.45293, "satellite": "Terra", "scan": 1.42, "track": 1.18, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [112.93858, -8.12283, 112.93858, -8.12283], "geometry": {"coordinates": [112.93858, -8.12283], "type": "Point"}, "id": "711", "properties": {"acq_date": "2024-07-15", "acq_time": 152, "bright_t31": 299.3, "brightness": 322.94, "confidence": 77, "daynight": "D", "frp": 34.95, "instrument": "MODIS", "latitude": -8.12283, "longitude": 112.93858, "satellite": "Terra", "scan": 1.56, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [113.95528, -7.86753, 113.95528, -7.86753], "geometry": {"coordinates": [113.95528, -7.86753], "type": "Point"}, "id": "712", "properties": {"acq_date": "2024-07-15", "acq_time": 152, "bright_t31": 298.07, "brightness": 311.46, "confidence": 59, "daynight": "D", "frp": 8.69, "instrument": "MODIS", "latitude": -7.86753, "longitude": 113.95528, "satellite": "Terra", "scan": 1.34, "track": 1.15, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [112.39753, -7.26802, 112.39753, -7.26802], "geometry": {"coordinates": [112.39753, -7.26802], "type": "Point"}, "id": "713", "properties": {"acq_date": "2024-07-15", "acq_time": 152, "bright_t31": 299.21, "brightness": 317.78, "confidence": 69, "daynight": "D", "frp": 18.43, "instrument": "MODIS", "latitude": -7.26802, "longitude": 112.39753, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.33374, -22.62725, 120.33374, -22.62725], "geometry": {"coordinates": [120.33374, -22.62725], "type": "Point"}, "id": "714", "properties": {"acq_date": "2024-07-15", "acq_time": 154, "bright_t31": 296.9, "brightness": 319.04, "confidence": 75, "daynight": "D", "frp": 34.16, "instrument": "MODIS", "latitude": -22.62725, "longitude": 120.33374, "satellite": "Terra", "scan": 1.99, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [120.3147, -22.62523, 120.3147, -22.62523], "geometry": {"coordinates": [120.3147, -22.62523], "type": "Point"}, "id": "715", "properties": {"acq_date": "2024-07-15", "acq_time": 154, "bright_t31": 296.79, "brightness": 311.87, "confidence": 65, "daynight": "D", "frp": 17.39, "instrument": "MODIS", "latitude": -22.62523, "longitude": 120.3147, "satellite": "Terra", "scan": 1.98, "track": 1.37, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [122.93769, -16.42344, 122.93769, -16.42344], "geometry": {"coordinates": [122.93769, -16.42344], "type": "Point"}, "id": "716", "properties": {"acq_date": "2024-07-15", "acq_time": 154, "bright_t31": 299.65, "brightness": 313.6, "confidence": 49, "daynight": "D", "frp": 27.24, "instrument": "MODIS", "latitude": -16.42344, "longitude": 122.93769, "satellite": "Terra", "scan": 2.57, "track": 1.54, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [3.81865, 51.16549, 3.81865, 51.16549], "geometry": {"coordinates": [3.81865, 51.16549], "type": "Point"}, "id": "717", "properties": {"acq_date": "2024-07-15", "acq_time": 202, "bright_t31": 284.76, "brightness": 300.72, "confidence": 17, "daynight": "N", "frp": 16.58, "instrument": "MODIS", "latitude": 51.16549, "longitude": 3.81865, "satellite": "Aqua", "scan": 2.0, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [3.82434, 51.16938, 3.82434, 51.16938], "geometry": {"coordinates": [3.82434, 51.16938], "type": "Point"}, "id": "718", "properties": {"acq_date": "2024-07-15", "acq_time": 202, "bright_t31": 284.73, "brightness": 308.74, "confidence": 75, "daynight": "N", "frp": 31.72, "instrument": "MODIS", "latitude": 51.16938, "longitude": 3.82434, "satellite": "Aqua", "scan": 2.0, "track": 1.38, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [6.70772, 51.36699, 6.70772, 51.36699], "geometry": {"coordinates": [6.70772, 51.36699], "type": "Point"}, "id": "719", "properties": {"acq_date": "2024-07-15", "acq_time": 202, "bright_t31": 286.13, "brightness": 301.13, "confidence": 38, "daynight": "N", "frp": 11.71, "instrument": "MODIS", "latitude": 51.36699, "longitude": 6.70772, "satellite": "Aqua", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [6.71567, 51.36987, 6.71567, 51.36987], "geometry": {"coordinates": [6.71567, 51.36987], "type": "Point"}, "id": "720", "properties": {"acq_date": "2024-07-15", "acq_time": 202, "bright_t31": 286.9, "brightness": 304.29, "confidence": 59, "daynight": "N", "frp": 13.7, "instrument": "MODIS", "latitude": 51.36987, "longitude": 6.71567, "satellite": "Aqua", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [6.72589, 51.48249, 6.72589, 51.48249], "geometry": {"coordinates": [6.72589, 51.48249], "type": "Point"}, "id": "721", "properties": {"acq_date": "2024-07-15", "acq_time": 202, "bright_t31": 285.89, "brightness": 306.3, "confidence": 68, "daynight": "N", "frp": 15.73, "instrument": "MODIS", "latitude": 51.48249, "longitude": 6.72589, "satellite": "Aqua", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [6.705, 51.48441, 6.705, 51.48441], "geometry": {"coordinates": [6.705, 51.48441], "type": "Point"}, "id": "722", "properties": {"acq_date": "2024-07-15", "acq_time": 202, "bright_t31": 285.72, "brightness": 300.89, "confidence": 33, "daynight": "N", "frp": 10.27, "instrument": "MODIS", "latitude": 51.48441, "longitude": 6.705, "satellite": "Aqua", "scan": 1.47, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [10.41895, 52.15231, 10.41895, 52.15231], "geometry": {"coordinates": [10.41895, 52.15231], "type": "Point"}, "id": "723", "properties": {"acq_date": "2024-07-15", "acq_time": 202, "bright_t31": 285.83, "brightness": 301.15, "confidence": 38, "daynight": "N", "frp": 6.94, "instrument": "MODIS", "latitude": 52.15231, "longitude": 10.41895, "satellite": "Aqua", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [10.40322, 52.15426, 10.40322, 52.15426], "geometry": {"coordinates": [10.40322, 52.15426], "type": "Point"}, "id": "724", "properties": {"acq_date": "2024-07-15", "acq_time": 202, "bright_t31": 287.39, "brightness": 316.32, "confidence": 93, "daynight": "N", "frp": 19.04, "instrument": "MODIS", "latitude": 52.15426, "longitude": 10.40322, "satellite": "Aqua", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [10.42187, 52.16151, 10.42187, 52.16151], "geometry": {"coordinates": [10.42187, 52.16151], "type": "Point"}, "id": "725", "properties": {"acq_date": "2024-07-15", "acq_time": 202, "bright_t31": 286.51, "brightness": 302.42, "confidence": 49, "daynight": "N", "frp": 7.72, "instrument": "MODIS", "latitude": 52.16151, "longitude": 10.42187, "satellite": "Aqua", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [9.59035, 36.66142, 9.59035, 36.66142], "geometry": {"coordinates": [9.59035, 36.66142], "type": "Point"}, "id": "726", "properties": {"acq_date": "2024-07-15", "acq_time": 204, "bright_t31": 294.41, "brightness": 308.07, "confidence": 73, "daynight": "N", "frp": 7.89, "instrument": "MODIS", "latitude": 36.66142, "longitude": 9.59035, "satellite": "Aqua", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [9.57887, 36.6633, 9.57887, 36.6633], "geometry": {"coordinates": [9.57887, 36.6633], "type": "Point"}, "id": "727", "properties": {"acq_date": "2024-07-15", "acq_time": 204, "bright_t31": 294.47, "brightness": 309.97, "confidence": 79, "daynight": "N", "frp": 9.43, "instrument": "MODIS", "latitude": 36.6633, "longitude": 9.57887, "satellite": "Aqua", "scan": 1.05, "track": 1.02, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [14.33111, 37.40024, 14.33111, 37.40024], "geometry": {"coordinates": [14.33111, 37.40024], "type": "Point"}, "id": "728", "properties": {"acq_date": "2024-07-15", "acq_time": 204, "bright_t31": 294.29, "brightness": 320.76, "confidence": 100, "daynight": "N", "frp": 40.5, "instrument": "MODIS", "latitude": 37.40024, "longitude": 14.33111, "satellite": "Aqua", "scan": 1.71, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [24.23697, 43.35098, 24.23697, 43.35098], "geometry": {"coordinates": [24.23697, 43.35098], "type": "Point"}, "id": "729", "properties": {"acq_date": "2024-07-15", "acq_time": 204, "bright_t31": 290.17, "brightness": 320.7, "confidence": 100, "daynight": "N", "frp": 158.2, "instrument": "MODIS", "latitude": 43.35098, "longitude": 24.23697, "satellite": "Aqua", "scan": 4.34, "track": 1.92, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [24.24227, 43.35495, 24.24227, 43.35495], "geometry": {"coordinates": [24.24227, 43.35495], "type": "Point"}, "id": "730", "properties": {"acq_date": "2024-07-15", "acq_time": 204, "bright_t31": 290.12, "brightness": 320.1, "confidence": 100, "daynight": "N", "frp": 155.64, "instrument": "MODIS", "latitude": 43.35495, "longitude": 24.24227, "satellite": "Aqua", "scan": 4.34, "track": 1.92, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [24.18991, 43.36414, 24.18991, 43.36414], "geometry": {"coordinates": [24.18991, 43.36414], "type": "Point"}, "id": "731", "properties": {"acq_date": "2024-07-15", "acq_time": 204, "bright_t31": 288.81, "brightness": 300.71, "confidence": 32, "daynight": "N", "frp": 34.1, "instrument": "MODIS", "latitude": 43.36414, "longitude": 24.18991, "satellite": "Aqua", "scan": 4.31, "track": 1.92, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [24.1953, 43.36834, 24.1953, 43.36834], "geometry": {"coordinates": [24.1953, 43.36834], "type": "Point"}, "id": "732", "properties": {"acq_date": "2024-07-15", "acq_time": 204, "bright_t31": 288.84, "brightness": 303.64, "confidence": 56, "daynight": "N", "frp": 49.74, "instrument": "MODIS", "latitude": 43.36834, "longitude": 24.1953, "satellite": "Aqua", "scan": 4.31, "track": 1.92, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [4.9025, 43.44238, 4.9025, 43.44238], "geometry": {"coordinates": [4.9025, 43.44238], "type": "Point"}, "id": "733", "properties": {"acq_date": "2024-07-15", "acq_time": 204, "bright_t31": 291.71, "brightness": 302.64, "confidence": 50, "daynight": "N", "frp": 7.9, "instrument": "MODIS", "latitude": 43.44238, "longitude": 4.9025, "satellite": "Aqua", "scan": 1.4, "track": 1.17, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [9.9481, 45.14213, 9.9481, 45.14213], "geometry": {"coordinates": [9.9481, 45.14213], "type": "Point"}, "id": "734", "properties": {"acq_date": "2024-07-15", "acq_time": 204, "bright_t31": 291.17, "brightness": 307.17, "confidence": 71, "daynight": "N", "frp": 7.58, "instrument": "MODIS", "latitude": 45.14213, "longitude": 9.9481, "satellite": "Aqua", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [7.02934, 30.47008, 7.02934, 30.47008], "geometry": {"coordinates": [7.02934, 30.47008], "type": "Point"}, "id": "735", "properties": {"acq_date": "2024-07-15", "acq_time": 206, "bright_t31": 298.77, "brightness": 310.83, "confidence": 80, "daynight": "N", "frp": 8.16, "instrument": "MODIS", "latitude": 30.47008, "longitude": 7.02934, "satellite": "Aqua", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [5.97825, 31.40519, 5.97825, 31.40519], "geometry": {"coordinates": [5.97825, 31.40519], "type": "Point"}, "id": "736", "properties": {"acq_date": "2024-07-15", "acq_time": 206, "bright_t31": 303.22, "brightness": 325.14, "confidence": 100, "daynight": "N", "frp": 20.16, "instrument": "MODIS", "latitude": 31.40519, "longitude": 5.97825, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [6.0582, 31.6609, 6.0582, 31.6609], "geometry": {"coordinates": [6.0582, 31.6609], "type": "Point"}, "id": "737", "properties": {"acq_date": "2024-07-15", "acq_time": 206, "bright_t31": 297.93, "brightness": 317.17, "confidence": 84, "daynight": "N", "frp": 12.73, "instrument": "MODIS", "latitude": 31.6609, "longitude": 6.0582, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [6.47728, 32.1354, 6.47728, 32.1354], "geometry": {"coordinates": [6.47728, 32.1354], "type": "Point"}, "id": "738", "properties": {"acq_date": "2024-07-15", "acq_time": 206, "bright_t31": 300.27, "brightness": 310.32, "confidence": 78, "daynight": "N", "frp": 7.2, "instrument": "MODIS", "latitude": 32.1354, "longitude": 6.47728, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [6.98876, 32.35477, 6.98876, 32.35477], "geometry": {"coordinates": [6.98876, 32.35477], "type": "Point"}, "id": "739", "properties": {"acq_date": "2024-07-15", "acq_time": 206, "bright_t31": 299.84, "brightness": 311.92, "confidence": 83, "daynight": "N", "frp": 8.73, "instrument": "MODIS", "latitude": 32.35477, "longitude": 6.98876, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [6.97838, 32.35635, 6.97838, 32.35635], "geometry": {"coordinates": [6.97838, 32.35635], "type": "Point"}, "id": "740", "properties": {"acq_date": "2024-07-15", "acq_time": 206, "bright_t31": 300.05, "brightness": 338.05, "confidence": 100, "daynight": "N", "frp": 38.35, "instrument": "MODIS", "latitude": 32.35635, "longitude": 6.97838, "satellite": "Aqua", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [3.17777, 32.5568, 3.17777, 32.5568], "geometry": {"coordinates": [3.17777, 32.5568], "type": "Point"}, "id": "741", "properties": {"acq_date": "2024-07-15", "acq_time": 206, "bright_t31": 298.47, "brightness": 313.19, "confidence": 86, "daynight": "N", "frp": 12.76, "instrument": "MODIS", "latitude": 32.5568, "longitude": 3.17777, "satellite": "Aqua", "scan": 1.26, "track": 1.11, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [3.17091, 32.55706, 3.17091, 32.55706], "geometry": {"coordinates": [3.17091, 32.55706], "type": "Point"}, "id": "742", "properties": {"acq_date": "2024-07-15", "acq_time": 206, "bright_t31": 298.5, "brightness": 315.08, "confidence": 90, "daynight": "N", "frp": 15.32, "instrument": "MODIS", "latitude": 32.55706, "longitude": 3.17091, "satellite": "Aqua", "scan": 1.26, "track": 1.11, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [3.16468, 32.55835, 3.16468, 32.55835], "geometry": {"coordinates": [3.16468, 32.55835], "type": "Point"}, "id": "743", "properties": {"acq_date": "2024-07-15", "acq_time": 206, "bright_t31": 297.92, "brightness": 310.16, "confidence": 78, "daynight": "N", "frp": 9.89, "instrument": "MODIS", "latitude": 32.55835, "longitude": 3.16468, "satellite": "Aqua", "scan": 1.26, "track": 1.11, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [3.19383, 32.73817, 3.19383, 32.73817], "geometry": {"coordinates": [3.19383, 32.73817], "type": "Point"}, "id": "744", "properties": {"acq_date": "2024-07-15", "acq_time": 206, "bright_t31": 297.78, "brightness": 311.15, "confidence": 80, "daynight": "N", "frp": 10.52, "instrument": "MODIS", "latitude": 32.73817, "longitude": 3.19383, "satellite": "Aqua", "scan": 1.26, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [3.1869, 32.73857, 3.1869, 32.73857], "geometry": {"coordinates": [3.1869, 32.73857], "type": "Point"}, "id": "745", "properties": {"acq_date": "2024-07-15", "acq_time": 206, "bright_t31": 298.62, "brightness": 325.23, "confidence": 100, "daynight": "N", "frp": 28.8, "instrument": "MODIS", "latitude": 32.73857, "longitude": 3.1869, "satellite": "Aqua", "scan": 1.26, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [3.18061, 32.73973, 3.18061, 32.73973], "geometry": {"coordinates": [3.18061, 32.73973], "type": "Point"}, "id": "746", "properties": {"acq_date": "2024-07-15", "acq_time": 206, "bright_t31": 298.09, "brightness": 319.05, "confidence": 98, "daynight": "N", "frp": 20.0, "instrument": "MODIS", "latitude": 32.73973, "longitude": 3.18061, "satellite": "Aqua", "scan": 1.26, "track": 1.12, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.94484, -32.11799, -64.94484, -32.11799], "geometry": {"coordinates": [-64.94484, -32.11799], "type": "Point"}, "id": "747", "properties": {"acq_date": "2024-07-15", "acq_time": 228, "bright_t31": 269.2, "brightness": 325.55, "confidence": 100, "daynight": "N", "frp": 29.78, "instrument": "MODIS", "latitude": -32.11799, "longitude": -64.94484, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.95667, -32.11054, -64.95667, -32.11054], "geometry": {"coordinates": [-64.95667, -32.11054], "type": "Point"}, "id": "748", "properties": {"acq_date": "2024-07-15", "acq_time": 228, "bright_t31": 273.63, "brightness": 311.87, "confidence": 78, "daynight": "N", "frp": 15.93, "instrument": "MODIS", "latitude": -32.11054, "longitude": -64.95667, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.94643, -32.10901, -64.94643, -32.10901], "geometry": {"coordinates": [-64.94643, -32.10901], "type": "Point"}, "id": "749", "properties": {"acq_date": "2024-07-15", "acq_time": 228, "bright_t31": 268.62, "brightness": 312.31, "confidence": 85, "daynight": "N", "frp": 16.54, "instrument": "MODIS", "latitude": -32.10901, "longitude": -64.94643, "satellite": "Terra", "scan": 1.02, "track": 1.01, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-69.47688, -26.43776, -69.47688, -26.43776], "geometry": {"coordinates": [-69.47688, -26.43776], "type": "Point"}, "id": "750", "properties": {"acq_date": "2024-07-15", "acq_time": 232, "bright_t31": 273.56, "brightness": 317.58, "confidence": 95, "daynight": "N", "frp": 23.9, "instrument": "MODIS", "latitude": -26.43776, "longitude": -69.47688, "satellite": "Terra", "scan": 1.09, "track": 1.04, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-60.78539, -25.90091, -60.78539, -25.90091], "geometry": {"coordinates": [-60.78539, -25.90091], "type": "Point"}, "id": "751", "properties": {"acq_date": "2024-07-15", "acq_time": 232, "bright_t31": 275.85, "brightness": 300.26, "confidence": 23, "daynight": "N", "frp": 24.37, "instrument": "MODIS", "latitude": -25.90091, "longitude": -60.78539, "satellite": "Terra", "scan": 2.11, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.40109, -25.45614, -64.40109, -25.45614], "geometry": {"coordinates": [-64.40109, -25.45614], "type": "Point"}, "id": "752", "properties": {"acq_date": "2024-07-15", "acq_time": 232, "bright_t31": 271.04, "brightness": 304.04, "confidence": 58, "daynight": "N", "frp": 15.26, "instrument": "MODIS", "latitude": -25.45614, "longitude": -64.40109, "satellite": "Terra", "scan": 1.25, "track": 1.11, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-60.70763, -24.66832, -60.70763, -24.66832], "geometry": {"coordinates": [-60.70763, -24.66832], "type": "Point"}, "id": "753", "properties": {"acq_date": "2024-07-15", "acq_time": 232, "bright_t31": 276.15, "brightness": 302.87, "confidence": 52, "daynight": "N", "frp": 32.41, "instrument": "MODIS", "latitude": -24.66832, "longitude": -60.70763, "satellite": "Terra", "scan": 2.27, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-60.69195, -24.66646, -60.69195, -24.66646], "geometry": {"coordinates": [-60.69195, -24.66646], "type": "Point"}, "id": "754", "properties": {"acq_date": "2024-07-15", "acq_time": 232, "bright_t31": 276.34, "brightness": 309.39, "confidence": 77, "daynight": "N", "frp": 46.53, "instrument": "MODIS", "latitude": -24.66646, "longitude": -60.69195, "satellite": "Terra", "scan": 2.28, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-60.68572, -24.66406, -60.68572, -24.66406], "geometry": {"coordinates": [-60.68572, -24.66406], "type": "Point"}, "id": "755", "properties": {"acq_date": "2024-07-15", "acq_time": 232, "bright_t31": 276.23, "brightness": 302.35, "confidence": 49, "daynight": "N", "frp": 31.68, "instrument": "MODIS", "latitude": -24.66406, "longitude": -60.68572, "satellite": "Terra", "scan": 2.28, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-60.19117, -17.19831, -60.19117, -17.19831], "geometry": {"coordinates": [-60.19117, -17.19831], "type": "Point"}, "id": "756", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 283.47, "brightness": 316.94, "confidence": 94, "daynight": "N", "frp": 113.3, "instrument": "MODIS", "latitude": -17.19831, "longitude": -60.19117, "satellite": "Terra", "scan": 3.6, "track": 1.78, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-60.19986, -17.18897, -60.19986, -17.18897], "geometry": {"coordinates": [-60.19986, -17.18897], "type": "Point"}, "id": "757", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 283.7, "brightness": 321.52, "confidence": 100, "daynight": "N", "frp": 140.76, "instrument": "MODIS", "latitude": -17.18897, "longitude": -60.19986, "satellite": "Terra", "scan": 3.6, "track": 1.78, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-62.84627, -16.38392, -62.84627, -16.38392], "geometry": {"coordinates": [-62.84627, -16.38392], "type": "Point"}, "id": "758", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 282.76, "brightness": 306.22, "confidence": 67, "daynight": "N", "frp": 33.32, "instrument": "MODIS", "latitude": -16.38392, "longitude": -62.84627, "satellite": "Terra", "scan": 2.35, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-62.85492, -16.37426, -62.85492, -16.37426], "geometry": {"coordinates": [-62.85492, -16.37426], "type": "Point"}, "id": "759", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 282.13, "brightness": 320.08, "confidence": 100, "daynight": "N", "frp": 69.66, "instrument": "MODIS", "latitude": -16.37426, "longitude": -62.85492, "satellite": "Terra", "scan": 2.35, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-62.84917, -16.37093, -62.84917, -16.37093], "geometry": {"coordinates": [-62.84917, -16.37093], "type": "Point"}, "id": "760", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 282.48, "brightness": 310.85, "confidence": 81, "daynight": "N", "frp": 42.24, "instrument": "MODIS", "latitude": -16.37093, "longitude": -62.84917, "satellite": "Terra", "scan": 2.35, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.44579, -16.31376, -61.44579, -16.31376], "geometry": {"coordinates": [-61.44579, -16.31376], "type": "Point"}, "id": "761", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 284.66, "brightness": 318.87, "confidence": 98, "daynight": "N", "frp": 96.51, "instrument": "MODIS", "latitude": -16.31376, "longitude": -61.44579, "satellite": "Terra", "scan": 3.02, "track": 1.65, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.45249, -16.31316, -61.45249, -16.31316], "geometry": {"coordinates": [-61.45249, -16.31316], "type": "Point"}, "id": "762", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 284.43, "brightness": 317.0, "confidence": 94, "daynight": "N", "frp": 88.34, "instrument": "MODIS", "latitude": -16.31316, "longitude": -61.45249, "satellite": "Terra", "scan": 3.02, "track": 1.65, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.64944, -15.87544, -61.64944, -15.87544], "geometry": {"coordinates": [-61.64944, -15.87544], "type": "Point"}, "id": "763", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 285.14, "brightness": 310.61, "confidence": 80, "daynight": "N", "frp": 59.63, "instrument": "MODIS", "latitude": -15.87544, "longitude": -61.64944, "satellite": "Terra", "scan": 2.97, "track": 1.64, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-61.6552, -15.87418, -61.6552, -15.87418], "geometry": {"coordinates": [-61.6552, -15.87418], "type": "Point"}, "id": "764", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 285.22, "brightness": 314.54, "confidence": 89, "daynight": "N", "frp": 75.09, "instrument": "MODIS", "latitude": -15.87418, "longitude": -61.6552, "satellite": "Terra", "scan": 2.97, "track": 1.64, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.57391, -15.39156, -63.57391, -15.39156], "geometry": {"coordinates": [-63.57391, -15.39156], "type": "Point"}, "id": "765", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 287.27, "brightness": 304.12, "confidence": 59, "daynight": "N", "frp": 23.83, "instrument": "MODIS", "latitude": -15.39156, "longitude": -63.57391, "satellite": "Terra", "scan": 2.16, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.58036, -15.39134, -63.58036, -15.39134], "geometry": {"coordinates": [-63.58036, -15.39134], "type": "Point"}, "id": "766", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 287.42, "brightness": 306.68, "confidence": 69, "daynight": "N", "frp": 28.85, "instrument": "MODIS", "latitude": -15.39134, "longitude": -63.58036, "satellite": "Terra", "scan": 2.16, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.344, -15.32523, -63.344, -15.32523], "geometry": {"coordinates": [-63.344, -15.32523], "type": "Point"}, "id": "767", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 285.77, "brightness": 305.44, "confidence": 64, "daynight": "N", "frp": 28.76, "instrument": "MODIS", "latitude": -15.32523, "longitude": -63.344, "satellite": "Terra", "scan": 2.26, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.36945, -15.22097, -64.36945, -15.22097], "geometry": {"coordinates": [-64.36945, -15.22097], "type": "Point"}, "id": "768", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 277.08, "brightness": 334.6, "confidence": 100, "daynight": "N", "frp": 95.15, "instrument": "MODIS", "latitude": -15.22097, "longitude": -64.36945, "satellite": "Terra", "scan": 1.9, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.35216, -15.21811, -64.35216, -15.21811], "geometry": {"coordinates": [-64.35216, -15.21811], "type": "Point"}, "id": "769", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 273.11, "brightness": 311.85, "confidence": 47, "daynight": "N", "frp": 32.72, "instrument": "MODIS", "latitude": -15.21811, "longitude": -64.35216, "satellite": "Terra", "scan": 1.9, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.37161, -15.20908, -64.37161, -15.20908], "geometry": {"coordinates": [-64.37161, -15.20908], "type": "Point"}, "id": "770", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 275.65, "brightness": 330.69, "confidence": 100, "daynight": "N", "frp": 83.12, "instrument": "MODIS", "latitude": -15.20908, "longitude": -64.37161, "satellite": "Terra", "scan": 1.9, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.32426, -14.29314, -65.32426, -14.29314], "geometry": {"coordinates": [-65.32426, -14.29314], "type": "Point"}, "id": "771", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 284.62, "brightness": 302.67, "confidence": 51, "daynight": "N", "frp": 15.28, "instrument": "MODIS", "latitude": -14.29314, "longitude": -65.32426, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.31873, -14.29193, -65.31873, -14.29193], "geometry": {"coordinates": [-65.31873, -14.29193], "type": "Point"}, "id": "772", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 284.56, "brightness": 302.83, "confidence": 52, "daynight": "N", "frp": 14.18, "instrument": "MODIS", "latitude": -14.29193, "longitude": -65.31873, "satellite": "Terra", "scan": 1.68, "track": 1.27, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.99844, -14.2783, -63.99844, -14.2783], "geometry": {"coordinates": [-63.99844, -14.2783], "type": "Point"}, "id": "773", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 285.15, "brightness": 315.53, "confidence": 91, "daynight": "N", "frp": 48.25, "instrument": "MODIS", "latitude": -14.2783, "longitude": -63.99844, "satellite": "Terra", "scan": 2.11, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.0042, -14.27726, -64.0042, -14.27726], "geometry": {"coordinates": [-64.0042, -14.27726], "type": "Point"}, "id": "774", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 285.22, "brightness": 308.35, "confidence": 74, "daynight": "N", "frp": 31.2, "instrument": "MODIS", "latitude": -14.27726, "longitude": -64.0042, "satellite": "Terra", "scan": 2.11, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.98505, -14.27413, -63.98505, -14.27413], "geometry": {"coordinates": [-63.98505, -14.27413], "type": "Point"}, "id": "775", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 284.08, "brightness": 307.23, "confidence": 71, "daynight": "N", "frp": 29.17, "instrument": "MODIS", "latitude": -14.27413, "longitude": -63.98505, "satellite": "Terra", "scan": 2.12, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.90673, -14.23672, -63.90673, -14.23672], "geometry": {"coordinates": [-63.90673, -14.23672], "type": "Point"}, "id": "776", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 277.54, "brightness": 305.79, "confidence": 61, "daynight": "N", "frp": 28.19, "instrument": "MODIS", "latitude": -14.23672, "longitude": -63.90673, "satellite": "Terra", "scan": 2.15, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.99192, -14.23671, -63.99192, -14.23671], "geometry": {"coordinates": [-63.99192, -14.23671], "type": "Point"}, "id": "777", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 284.96, "brightness": 303.38, "confidence": 55, "daynight": "N", "frp": 23.42, "instrument": "MODIS", "latitude": -14.23671, "longitude": -63.99192, "satellite": "Terra", "scan": 2.12, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.36269, -13.94234, -65.36269, -13.94234], "geometry": {"coordinates": [-65.36269, -13.94234], "type": "Point"}, "id": "778", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 285.25, "brightness": 311.27, "confidence": 82, "daynight": "N", "frp": 26.59, "instrument": "MODIS", "latitude": -13.94234, "longitude": -65.36269, "satellite": "Terra", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.35743, -13.94073, -65.35743, -13.94073], "geometry": {"coordinates": [-65.35743, -13.94073], "type": "Point"}, "id": "779", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 285.42, "brightness": 320.34, "confidence": 100, "daynight": "N", "frp": 43.83, "instrument": "MODIS", "latitude": -13.94073, "longitude": -65.35743, "satellite": "Terra", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.34737, -13.93993, -65.34737, -13.93993], "geometry": {"coordinates": [-65.34737, -13.93993], "type": "Point"}, "id": "780", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 285.11, "brightness": 307.89, "confidence": 73, "daynight": "N", "frp": 21.59, "instrument": "MODIS", "latitude": -13.93993, "longitude": -65.34737, "satellite": "Terra", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.70445, -13.56762, -64.70445, -13.56762], "geometry": {"coordinates": [-64.70445, -13.56762], "type": "Point"}, "id": "781", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 286.89, "brightness": 308.81, "confidence": 76, "daynight": "N", "frp": 25.08, "instrument": "MODIS", "latitude": -13.56762, "longitude": -64.70445, "satellite": "Terra", "scan": 1.92, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.71165, -13.56267, -64.71165, -13.56267], "geometry": {"coordinates": [-64.71165, -13.56267], "type": "Point"}, "id": "782", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 286.72, "brightness": 307.97, "confidence": 59, "daynight": "N", "frp": 22.26, "instrument": "MODIS", "latitude": -13.56267, "longitude": -64.71165, "satellite": "Terra", "scan": 1.92, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.69426, -13.55989, -64.69426, -13.55989], "geometry": {"coordinates": [-64.69426, -13.55989], "type": "Point"}, "id": "783", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 286.72, "brightness": 307.76, "confidence": 54, "daynight": "N", "frp": 22.19, "instrument": "MODIS", "latitude": -13.55989, "longitude": -64.69426, "satellite": "Terra", "scan": 1.93, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.70656, -13.55566, -64.70656, -13.55566], "geometry": {"coordinates": [-64.70656, -13.55566], "type": "Point"}, "id": "784", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 287.22, "brightness": 321.93, "confidence": 100, "daynight": "N", "frp": 52.43, "instrument": "MODIS", "latitude": -13.55566, "longitude": -64.70656, "satellite": "Terra", "scan": 1.92, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.71377, -13.55072, -64.71377, -13.55072], "geometry": {"coordinates": [-64.71377, -13.55072], "type": "Point"}, "id": "785", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 286.72, "brightness": 316.01, "confidence": 32, "daynight": "N", "frp": 35.62, "instrument": "MODIS", "latitude": -13.55072, "longitude": -64.71377, "satellite": "Terra", "scan": 1.92, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.69639, -13.54792, -64.69639, -13.54792], "geometry": {"coordinates": [-64.69639, -13.54792], "type": "Point"}, "id": "786", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 287.25, "brightness": 318.2, "confidence": 44, "daynight": "N", "frp": 41.11, "instrument": "MODIS", "latitude": -13.54792, "longitude": -64.69639, "satellite": "Terra", "scan": 1.93, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.70866, -13.5437, -64.70866, -13.5437], "geometry": {"coordinates": [-64.70866, -13.5437], "type": "Point"}, "id": "787", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 286.99, "brightness": 329.67, "confidence": 100, "daynight": "N", "frp": 75.22, "instrument": "MODIS", "latitude": -13.5437, "longitude": -64.70866, "satellite": "Terra", "scan": 1.92, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.69131, -13.54077, -64.69131, -13.54077], "geometry": {"coordinates": [-64.69131, -13.54077], "type": "Point"}, "id": "788", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 287.19, "brightness": 324.96, "confidence": 100, "daynight": "N", "frp": 60.64, "instrument": "MODIS", "latitude": -13.54077, "longitude": -64.69131, "satellite": "Terra", "scan": 1.93, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.71589, -13.53876, -64.71589, -13.53876], "geometry": {"coordinates": [-64.71589, -13.53876], "type": "Point"}, "id": "789", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 286.0, "brightness": 316.66, "confidence": 71, "daynight": "N", "frp": 38.3, "instrument": "MODIS", "latitude": -13.53876, "longitude": -64.71589, "satellite": "Terra", "scan": 1.92, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.69851, -13.53595, -64.69851, -13.53595], "geometry": {"coordinates": [-64.69851, -13.53595], "type": "Point"}, "id": "790", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 286.7, "brightness": 331.24, "confidence": 100, "daynight": "N", "frp": 80.05, "instrument": "MODIS", "latitude": -13.53595, "longitude": -64.69851, "satellite": "Terra", "scan": 1.93, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.718, -13.52681, -64.718, -13.52681], "geometry": {"coordinates": [-64.718, -13.52681], "type": "Point"}, "id": "791", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 285.61, "brightness": 300.54, "confidence": 29, "daynight": "N", "frp": 13.0, "instrument": "MODIS", "latitude": -13.52681, "longitude": -64.718, "satellite": "Terra", "scan": 1.92, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.70064, -13.52398, -64.70064, -13.52398], "geometry": {"coordinates": [-64.70064, -13.52398], "type": "Point"}, "id": "792", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 286.59, "brightness": 315.28, "confidence": 91, "daynight": "N", "frp": 39.06, "instrument": "MODIS", "latitude": -13.52398, "longitude": -64.70064, "satellite": "Terra", "scan": 1.93, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.50087, -13.49613, -63.50087, -13.49613], "geometry": {"coordinates": [-63.50087, -13.49613], "type": "Point"}, "id": "793", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 283.15, "brightness": 303.11, "confidence": 53, "daynight": "N", "frp": 28.14, "instrument": "MODIS", "latitude": -13.49613, "longitude": -63.50087, "satellite": "Terra", "scan": 2.39, "track": 1.49, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-66.4023, -13.22, -66.4023, -13.22], "geometry": {"coordinates": [-66.4023, -13.22], "type": "Point"}, "id": "794", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 286.68, "brightness": 307.2, "confidence": 71, "daynight": "N", "frp": 16.49, "instrument": "MODIS", "latitude": -13.22, "longitude": -66.4023, "satellite": "Terra", "scan": 1.46, "track": 1.2, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.23192, -13.09637, -63.23192, -13.09637], "geometry": {"coordinates": [-63.23192, -13.09637], "type": "Point"}, "id": "795", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 285.9, "brightness": 315.39, "confidence": 91, "daynight": "N", "frp": 60.63, "instrument": "MODIS", "latitude": -13.09637, "longitude": -63.23192, "satellite": "Terra", "scan": 2.55, "track": 1.54, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-63.23449, -13.08284, -63.23449, -13.08284], "geometry": {"coordinates": [-63.23449, -13.08284], "type": "Point"}, "id": "796", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 285.92, "brightness": 305.03, "confidence": 63, "daynight": "N", "frp": 33.41, "instrument": "MODIS", "latitude": -13.08284, "longitude": -63.23449, "satellite": "Terra", "scan": 2.55, "track": 1.54, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-68.04948, -12.75481, -68.04948, -12.75481], "geometry": {"coordinates": [-68.04948, -12.75481], "type": "Point"}, "id": "797", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 285.2, "brightness": 300.71, "confidence": 32, "daynight": "N", "frp": 7.79, "instrument": "MODIS", "latitude": -12.75481, "longitude": -68.04948, "satellite": "Terra", "scan": 1.18, "track": 1.08, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-72.10816, -12.48213, -72.10816, -12.48213], "geometry": {"coordinates": [-72.10816, -12.48213], "type": "Point"}, "id": "798", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 277.43, "brightness": 302.55, "confidence": 50, "daynight": "N", "frp": 10.59, "instrument": "MODIS", "latitude": -12.48213, "longitude": -72.10816, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.35702, -12.32798, -65.35702, -12.32798], "geometry": {"coordinates": [-65.35702, -12.32798], "type": "Point"}, "id": "799", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 287.19, "brightness": 301.6, "confidence": 24, "daynight": "N", "frp": 11.62, "instrument": "MODIS", "latitude": -12.32798, "longitude": -65.35702, "satellite": "Terra", "scan": 1.81, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.35894, -12.31634, -65.35894, -12.31634], "geometry": {"coordinates": [-65.35894, -12.31634], "type": "Point"}, "id": "800", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 287.35, "brightness": 300.67, "confidence": 17, "daynight": "N", "frp": 10.55, "instrument": "MODIS", "latitude": -12.31634, "longitude": -65.35894, "satellite": "Terra", "scan": 1.81, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.10712, -11.78442, -65.10712, -11.78442], "geometry": {"coordinates": [-65.10712, -11.78442], "type": "Point"}, "id": "801", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 287.23, "brightness": 304.3, "confidence": 59, "daynight": "N", "frp": 19.08, "instrument": "MODIS", "latitude": -11.78442, "longitude": -65.10712, "satellite": "Terra", "scan": 1.93, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.08975, -11.7817, -65.08975, -11.7817], "geometry": {"coordinates": [-65.08975, -11.7817], "type": "Point"}, "id": "802", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 287.03, "brightness": 305.38, "confidence": 64, "daynight": "N", "frp": 20.73, "instrument": "MODIS", "latitude": -11.7817, "longitude": -65.08975, "satellite": "Terra", "scan": 1.94, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.74909, -9.66398, -65.74909, -9.66398], "geometry": {"coordinates": [-65.74909, -9.66398], "type": "Point"}, "id": "803", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 289.07, "brightness": 301.06, "confidence": 37, "daynight": "N", "frp": 13.5, "instrument": "MODIS", "latitude": -9.66398, "longitude": -65.74909, "satellite": "Terra", "scan": 1.89, "track": 1.34, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.76042, -9.66065, -65.76042, -9.66065], "geometry": {"coordinates": [-65.76042, -9.66065], "type": "Point"}, "id": "804", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 289.05, "brightness": 303.92, "confidence": 58, "daynight": "N", "frp": 16.3, "instrument": "MODIS", "latitude": -9.66065, "longitude": -65.76042, "satellite": "Terra", "scan": 1.88, "track": 1.34, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.937, -9.3568, -65.937, -9.3568], "geometry": {"coordinates": [-65.937, -9.3568], "type": "Point"}, "id": "805", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 290.06, "brightness": 303.65, "confidence": 56, "daynight": "N", "frp": 15.27, "instrument": "MODIS", "latitude": -9.3568, "longitude": -65.937, "satellite": "Terra", "scan": 1.85, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-65.41724, -9.14064, -65.41724, -9.14064], "geometry": {"coordinates": [-65.41724, -9.14064], "type": "Point"}, "id": "806", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 290.68, "brightness": 304.06, "confidence": 58, "daynight": "N", "frp": 17.25, "instrument": "MODIS", "latitude": -9.14064, "longitude": -65.41724, "satellite": "Terra", "scan": 2.04, "track": 1.39, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-68.6863, -9.09004, -68.6863, -9.09004], "geometry": {"coordinates": [-68.6863, -9.09004], "type": "Point"}, "id": "807", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 288.93, "brightness": 300.76, "confidence": 33, "daynight": "N", "frp": 6.43, "instrument": "MODIS", "latitude": -9.09004, "longitude": -68.6863, "satellite": "Terra", "scan": 1.21, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-66.11069, -9.05156, -66.11069, -9.05156], "geometry": {"coordinates": [-66.11069, -9.05156], "type": "Point"}, "id": "808", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 289.94, "brightness": 302.32, "confidence": 48, "daynight": "N", "frp": 13.14, "instrument": "MODIS", "latitude": -9.05156, "longitude": -66.11069, "satellite": "Terra", "scan": 1.81, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-66.17596, -8.99333, -66.17596, -8.99333], "geometry": {"coordinates": [-66.17596, -8.99333], "type": "Point"}, "id": "809", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 290.66, "brightness": 307.55, "confidence": 71, "daynight": "N", "frp": 18.35, "instrument": "MODIS", "latitude": -8.99333, "longitude": -66.17596, "satellite": "Terra", "scan": 1.8, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-66.18591, -8.99186, -66.18591, -8.99186], "geometry": {"coordinates": [-66.18591, -8.99186], "type": "Point"}, "id": "810", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 290.72, "brightness": 316.17, "confidence": 76, "daynight": "N", "frp": 31.57, "instrument": "MODIS", "latitude": -8.99186, "longitude": -66.18591, "satellite": "Terra", "scan": 1.79, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-66.16003, -8.9909, -66.16003, -8.9909], "geometry": {"coordinates": [-66.16003, -8.9909], "type": "Point"}, "id": "811", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 290.53, "brightness": 309.0, "confidence": 76, "daynight": "N", "frp": 20.85, "instrument": "MODIS", "latitude": -8.9909, "longitude": -66.16003, "satellite": "Terra", "scan": 1.8, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-66.16999, -8.98932, -66.16999, -8.98932], "geometry": {"coordinates": [-66.16999, -8.98932], "type": "Point"}, "id": "812", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 291.37, "brightness": 320.51, "confidence": 100, "daynight": "N", "frp": 41.79, "instrument": "MODIS", "latitude": -8.98932, "longitude": -66.16999, "satellite": "Terra", "scan": 1.8, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-66.19376, -8.98415, -66.19376, -8.98415], "geometry": {"coordinates": [-66.19376, -8.98415], "type": "Point"}, "id": "813", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 290.5, "brightness": 314.88, "confidence": 64, "daynight": "N", "frp": 28.84, "instrument": "MODIS", "latitude": -8.98415, "longitude": -66.19376, "satellite": "Terra", "scan": 1.79, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-66.17796, -8.98174, -66.17796, -8.98174], "geometry": {"coordinates": [-66.17796, -8.98174], "type": "Point"}, "id": "814", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 292.26, "brightness": 328.58, "confidence": 100, "daynight": "N", "frp": 62.51, "instrument": "MODIS", "latitude": -8.98174, "longitude": -66.17796, "satellite": "Terra", "scan": 1.8, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-62.41059, -8.72044, -62.41059, -8.72044], "geometry": {"coordinates": [-62.41059, -8.72044], "type": "Point"}, "id": "815", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 291.34, "brightness": 303.09, "confidence": 53, "daynight": "N", "frp": 34.44, "instrument": "MODIS", "latitude": -8.72044, "longitude": -62.41059, "satellite": "Terra", "scan": 3.6, "track": 1.78, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-66.94732, -8.54616, -66.94732, -8.54616], "geometry": {"coordinates": [-66.94732, -8.54616], "type": "Point"}, "id": "816", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 290.02, "brightness": 301.76, "confidence": 44, "daynight": "N", "frp": 9.55, "instrument": "MODIS", "latitude": -8.54616, "longitude": -66.94732, "satellite": "Terra", "scan": 1.6, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.14495, -8.45346, -64.14495, -8.45346], "geometry": {"coordinates": [-64.14495, -8.45346], "type": "Point"}, "id": "817", "properties": {"acq_date": "2024-07-15", "acq_time": 234, "bright_t31": 291.39, "brightness": 312.76, "confidence": 86, "daynight": "N", "frp": 48.11, "instrument": "MODIS", "latitude": -8.45346, "longitude": -64.14495, "satellite": "Terra", "scan": 2.65, "track": 1.56, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-78.34035, -2.00777, -78.34035, -2.00777], "geometry": {"coordinates": [-78.34035, -2.00777], "type": "Point"}, "id": "818", "properties": {"acq_date": "2024-07-15", "acq_time": 236, "bright_t31": 272.55, "brightness": 308.09, "confidence": 73, "daynight": "N", "frp": 33.32, "instrument": "MODIS", "latitude": -2.00777, "longitude": -78.34035, "satellite": "Terra", "scan": 1.91, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-76.22272, 4.16495, -76.22272, 4.16495], "geometry": {"coordinates": [-76.22272, 4.16495], "type": "Point"}, "id": "819", "properties": {"acq_date": "2024-07-15", "acq_time": 238, "bright_t31": 288.8, "brightness": 300.41, "confidence": 18, "daynight": "N", "frp": 4.33, "instrument": "MODIS", "latitude": 4.16495, "longitude": -76.22272, "satellite": "Terra", "scan": 1.12, "track": 1.06, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-74.80755, 6.24435, -74.80755, 6.24435], "geometry": {"coordinates": [-74.80755, 6.24435], "type": "Point"}, "id": "820", "properties": {"acq_date": "2024-07-15", "acq_time": 238, "bright_t31": 290.8, "brightness": 301.99, "confidence": 46, "daynight": "N", "frp": 3.64, "instrument": "MODIS", "latitude": 6.24435, "longitude": -74.80755, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.8694, 10.05616, -64.8694, 10.05616], "geometry": {"coordinates": [-64.8694, 10.05616], "type": "Point"}, "id": "821", "properties": {"acq_date": "2024-07-15", "acq_time": 238, "bright_t31": 288.41, "brightness": 306.84, "confidence": 69, "daynight": "N", "frp": 62.35, "instrument": "MODIS", "latitude": 10.05616, "longitude": -64.8694, "satellite": "Terra", "scan": 4.75, "track": 1.99, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-64.87434, 10.0564, -64.87434, 10.0564], "geometry": {"coordinates": [-64.87434, 10.0564], "type": "Point"}, "id": "822", "properties": {"acq_date": "2024-07-15", "acq_time": 238, "bright_t31": 288.13, "brightness": 307.5, "confidence": 72, "daynight": "N", "frp": 67.7, "instrument": "MODIS", "latitude": 10.0564, "longitude": -64.87434, "satellite": "Terra", "scan": 4.75, "track": 1.99, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-70.18819, 11.73868, -70.18819, 11.73868], "geometry": {"coordinates": [-70.18819, 11.73868], "type": "Point"}, "id": "823", "properties": {"acq_date": "2024-07-15", "acq_time": 241, "bright_t31": 286.95, "brightness": 307.75, "confidence": 56, "daynight": "N", "frp": 19.32, "instrument": "MODIS", "latitude": 11.73868, "longitude": -70.18819, "satellite": "Terra", "scan": 1.91, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-82.69839, 31.79109, -82.69839, 31.79109], "geometry": {"coordinates": [-82.69839, 31.79109], "type": "Point"}, "id": "824", "properties": {"acq_date": "2024-07-15", "acq_time": 247, "bright_t31": 293.92, "brightness": 315.04, "confidence": 90, "daynight": "N", "frp": 12.47, "instrument": "MODIS", "latitude": 31.79109, "longitude": -82.69839, "satellite": "Terra", "scan": 1.1, "track": 1.05, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-80.97924, 31.8754, -80.97924, 31.8754], "geometry": {"coordinates": [-80.97924, 31.8754], "type": "Point"}, "id": "825", "properties": {"acq_date": "2024-07-15", "acq_time": 247, "bright_t31": 296.46, "brightness": 333.17, "confidence": 100, "daynight": "N", "frp": 29.13, "instrument": "MODIS", "latitude": 31.8754, "longitude": -80.97924, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-79.83141, 36.32994, -79.83141, 36.32994], "geometry": {"coordinates": [-79.83141, 36.32994], "type": "Point"}, "id": "826", "properties": {"acq_date": "2024-07-15", "acq_time": 249, "bright_t31": 295.49, "brightness": 305.53, "confidence": 58, "daynight": "N", "frp": 4.55, "instrument": "MODIS", "latitude": 36.32994, "longitude": -79.83141, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-82.04343, 37.23603, -82.04343, 37.23603], "geometry": {"coordinates": [-82.04343, 37.23603], "type": "Point"}, "id": "827", "properties": {"acq_date": "2024-07-15", "acq_time": 249, "bright_t31": 293.92, "brightness": 305.64, "confidence": 65, "daynight": "N", "frp": 5.45, "instrument": "MODIS", "latitude": 37.23603, "longitude": -82.04343, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-85.34835, 41.11946, -85.34835, 41.11946], "geometry": {"coordinates": [-85.34835, 41.11946], "type": "Point"}, "id": "828", "properties": {"acq_date": "2024-07-15", "acq_time": 249, "bright_t31": 293.34, "brightness": 304.51, "confidence": 60, "daynight": "N", "frp": 5.43, "instrument": "MODIS", "latitude": 41.11946, "longitude": -85.34835, "satellite": "Terra", "scan": 1.07, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-84.05003, 41.56992, -84.05003, 41.56992], "geometry": {"coordinates": [-84.05003, 41.56992], "type": "Point"}, "id": "829", "properties": {"acq_date": "2024-07-15", "acq_time": 249, "bright_t31": 292.89, "brightness": 311.5, "confidence": 83, "daynight": "N", "frp": 10.21, "instrument": "MODIS", "latitude": 41.56992, "longitude": -84.05003, "satellite": "Terra", "scan": 1.01, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-83.16342, 42.29619, -83.16342, 42.29619], "geometry": {"coordinates": [-83.16342, 42.29619], "type": "Point"}, "id": "830", "properties": {"acq_date": "2024-07-15", "acq_time": 249, "bright_t31": 294.42, "brightness": 305.66, "confidence": 65, "daynight": "N", "frp": 4.71, "instrument": "MODIS", "latitude": 42.29619, "longitude": -83.16342, "satellite": "Terra", "scan": 1.0, "track": 1.0, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-80.09613, 42.8172, -80.09613, 42.8172], "geometry": {"coordinates": [-80.09613, 42.8172], "type": "Point"}, "id": "831", "properties": {"acq_date": "2024-07-15", "acq_time": 249, "bright_t31": 290.31, "brightness": 301.62, "confidence": 43, "daynight": "N", "frp": 4.55, "instrument": "MODIS", "latitude": 42.8172, "longitude": -80.09613, "satellite": "Terra", "scan": 1.21, "track": 1.09, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-86.15099, 44.11674, -86.15099, 44.11674], "geometry": {"coordinates": [-86.15099, 44.11674], "type": "Point"}, "id": "832", "properties": {"acq_date": "2024-07-15", "acq_time": 249, "bright_t31": 288.34, "brightness": 304.48, "confidence": 60, "daynight": "N", "frp": 6.53, "instrument": "MODIS", "latitude": 44.11674, "longitude": -86.15099, "satellite": "Terra", "scan": 1.06, "track": 1.03, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-114.64752, 63.98803, -114.64752, 63.98803], "geometry": {"coordinates": [-114.64752, 63.98803], "type": "Point"}, "id": "833", "properties": {"acq_date": "2024-07-15", "acq_time": 258, "bright_t31": 289.69, "brightness": 309.08, "confidence": 0, "daynight": "D", "frp": 44.22, "instrument": "MODIS", "latitude": 63.98803, "longitude": -114.64752, "satellite": "Terra", "scan": 2.93, "track": 1.63, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-114.5924, 64.00226, -114.5924, 64.00226], "geometry": {"coordinates": [-114.5924, 64.00226], "type": "Point"}, "id": "834", "properties": {"acq_date": "2024-07-15", "acq_time": 258, "bright_t31": 289.37, "brightness": 305.01, "confidence": 0, "daynight": "D", "frp": 31.67, "instrument": "MODIS", "latitude": 64.00226, "longitude": -114.5924, "satellite": "Terra", "scan": 2.91, "track": 1.63, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-114.5994, 64.00381, -114.5994, 64.00381], "geometry": {"coordinates": [-114.5994, 64.00381], "type": "Point"}, "id": "835", "properties": {"acq_date": "2024-07-15", "acq_time": 258, "bright_t31": 289.3, "brightness": 305.78, "confidence": 0, "daynight": "D", "frp": 34.16, "instrument": "MODIS", "latitude": 64.00381, "longitude": -114.5994, "satellite": "Terra", "scan": 2.91, "track": 1.63, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-119.36752, 64.85289, -119.36752, 64.85289], "geometry": {"coordinates": [-119.36752, 64.85289], "type": "Point"}, "id": "836", "properties": {"acq_date": "2024-07-15", "acq_time": 258, "bright_t31": 293.03, "brightness": 318.07, "confidence": 27, "daynight": "D", "frp": 76.8, "instrument": "MODIS", "latitude": 64.85289, "longitude": -119.36752, "satellite": "Terra", "scan": 3.53, "track": 1.77, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-119.37298, 64.85686, -119.37298, 64.85686], "geometry": {"coordinates": [-119.37298, 64.85686], "type": "Point"}, "id": "837", "properties": {"acq_date": "2024-07-15", "acq_time": 258, "bright_t31": 294.53, "brightness": 329.01, "confidence": 74, "daynight": "D", "frp": 148.47, "instrument": "MODIS", "latitude": 64.85686, "longitude": -119.37298, "satellite": "Terra", "scan": 3.53, "track": 1.77, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-119.39375, 64.8641, -119.39375, 64.8641], "geometry": {"coordinates": [-119.39375, 64.8641], "type": "Point"}, "id": "838", "properties": {"acq_date": "2024-07-15", "acq_time": 258, "bright_t31": 300.0, "brightness": 385.31, "confidence": 100, "daynight": "D", "frp": 1068.52, "instrument": "MODIS", "latitude": 64.8641, "longitude": -119.39375, "satellite": "Terra", "scan": 3.53, "track": 1.77, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-119.39926, 64.86806, -119.39926, 64.86806], "geometry": {"coordinates": [-119.39926, 64.86806], "type": "Point"}, "id": "839", "properties": {"acq_date": "2024-07-15", "acq_time": 258, "bright_t31": 300.74, "brightness": 395.89, "confidence": 100, "daynight": "D", "frp": 1402.07, "instrument": "MODIS", "latitude": 64.86806, "longitude": -119.39926, "satellite": "Terra", "scan": 3.53, "track": 1.77, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-119.034, 64.87796, -119.034, 64.87796], "geometry": {"coordinates": [-119.034, 64.87796], "type": "Point"}, "id": "840", "properties": {"acq_date": "2024-07-15", "acq_time": 258, "bright_t31": 294.01, "brightness": 332.91, "confidence": 40, "daynight": "D", "frp": 161.08, "instrument": "MODIS", "latitude": 64.87796, "longitude": -119.034, "satellite": "Terra", "scan": 3.45, "track": 1.75, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-119.33962, 64.88429, -119.33962, 64.88429], "geometry": {"coordinates": [-119.33962, 64.88429], "type": "Point"}, "id": "841", "properties": {"acq_date": "2024-07-15", "acq_time": 258, "bright_t31": 297.84, "brightness": 363.51, "confidence": 100, "daynight": "D", "frp": 559.07, "instrument": "MODIS", "latitude": 64.88429, "longitude": -119.33962, "satellite": "Terra", "scan": 3.51, "track": 1.76, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-119.34458, 64.88818, -119.34458, 64.88818], "geometry": {"coordinates": [-119.34458, 64.88818], "type": "Point"}, "id": "842", "properties": {"acq_date": "2024-07-15", "acq_time": 258, "bright_t31": 298.23, "brightness": 369.2, "confidence": 100, "daynight": "D", "frp": 667.03, "instrument": "MODIS", "latitude": 64.88818, "longitude": -119.34458, "satellite": "Terra", "scan": 3.51, "track": 1.76, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-119.07104, 64.9838, -119.07104, 64.9838], "geometry": {"coordinates": [-119.07104, 64.9838], "type": "Point"}, "id": "843", "properties": {"acq_date": "2024-07-15", "acq_time": 258, "bright_t31": 297.22, "brightness": 339.69, "confidence": 68, "daynight": "D", "frp": 213.83, "instrument": "MODIS", "latitude": 64.9838, "longitude": -119.07104, "satellite": "Terra", "scan": 3.41, "track": 1.74, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-119.07387, 64.98698, -119.07387, 64.98698], "geometry": {"coordinates": [-119.07387, 64.98698], "type": "Point"}, "id": "844", "properties": {"acq_date": "2024-07-15", "acq_time": 258, "bright_t31": 297.25, "brightness": 341.49, "confidence": 42, "daynight": "D", "frp": 218.57, "instrument": "MODIS", "latitude": 64.98698, "longitude": -119.07387, "satellite": "Terra", "scan": 3.41, "track": 1.74, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [-119.01765, 65.00343, -119.01765, 65.00343], "geometry": {"coordinates": [-119.01765, 65.00343], "type": "Point"}, "id": "845", "properties": {"acq_date": "2024-07-15", "acq_time": 258, "bright_t31": 296.9, "brightness": 340.65, "confidence": 33, "daynight": "D", "frp": 228.39, "instrument": "MODIS", "latitude": 65.00343, "longitude": -119.01765, "satellite": "Terra", "scan": 3.39, "track": 1.74, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.64983, 67.8689, 146.64983, 67.8689], "geometry": {"coordinates": [146.64983, 67.8689], "type": "Point"}, "id": "846", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 291.77, "brightness": 304.26, "confidence": 52, "daynight": "D", "frp": 25.17, "instrument": "MODIS", "latitude": 67.8689, "longitude": 146.64983, "satellite": "Terra", "scan": 3.28, "track": 1.71, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.69376, 68.26493, 134.69376, 68.26493], "geometry": {"coordinates": [134.69376, 68.26493], "type": "Point"}, "id": "847", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.95, "brightness": 309.66, "confidence": 59, "daynight": "D", "frp": 12.17, "instrument": "MODIS", "latitude": 68.26493, "longitude": 134.69376, "satellite": "Terra", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.66209, 68.27204, 134.66209, 68.27204], "geometry": {"coordinates": [134.66209, 68.27204], "type": "Point"}, "id": "848", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.99, "brightness": 310.4, "confidence": 52, "daynight": "D", "frp": 12.24, "instrument": "MODIS", "latitude": 68.27204, "longitude": 134.66209, "satellite": "Terra", "scan": 1.69, "track": 1.28, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.05658, 68.34539, 146.05658, 68.34539], "geometry": {"coordinates": [146.05658, 68.34539], "type": "Point"}, "id": "849", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 291.22, "brightness": 317.24, "confidence": 0, "daynight": "D", "frp": 62.16, "instrument": "MODIS", "latitude": 68.34539, "longitude": 146.05658, "satellite": "Terra", "scan": 2.99, "track": 1.64, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.06227, 68.34626, 146.06227, 68.34626], "geometry": {"coordinates": [146.06227, 68.34626], "type": "Point"}, "id": "850", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 291.31, "brightness": 317.23, "confidence": 0, "daynight": "D", "frp": 63.63, "instrument": "MODIS", "latitude": 68.34626, "longitude": 146.06227, "satellite": "Terra", "scan": 2.99, "track": 1.64, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [146.11923, 68.36688, 146.11923, 68.36688], "geometry": {"coordinates": [146.11923, 68.36688], "type": "Point"}, "id": "851", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 291.49, "brightness": 309.73, "confidence": 27, "daynight": "D", "frp": 35.92, "instrument": "MODIS", "latitude": 68.36688, "longitude": 146.11923, "satellite": "Terra", "scan": 2.99, "track": 1.64, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.23495, 68.3688, 139.23495, 68.3688], "geometry": {"coordinates": [139.23495, 68.3688], "type": "Point"}, "id": "852", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 292.71, "brightness": 307.08, "confidence": 27, "daynight": "D", "frp": 12.35, "instrument": "MODIS", "latitude": 68.3688, "longitude": 139.23495, "satellite": "Terra", "scan": 2.12, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.25685, 68.37858, 139.25685, 68.37858], "geometry": {"coordinates": [139.25685, 68.37858], "type": "Point"}, "id": "853", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 293.03, "brightness": 310.97, "confidence": 58, "daynight": "D", "frp": 21.55, "instrument": "MODIS", "latitude": 68.37858, "longitude": 139.25685, "satellite": "Terra", "scan": 2.12, "track": 1.42, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [139.21759, 68.39083, 139.21759, 68.39083], "geometry": {"coordinates": [139.21759, 68.39083], "type": "Point"}, "id": "854", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 294.59, "brightness": 308.43, "confidence": 52, "daynight": "D", "frp": 15.48, "instrument": "MODIS", "latitude": 68.39083, "longitude": 139.21759, "satellite": "Terra", "scan": 2.12, "track": 1.41, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.45253, 68.42357, 133.45253, 68.42357], "geometry": {"coordinates": [133.45253, 68.42357], "type": "Point"}, "id": "855", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.55, "brightness": 316.31, "confidence": 63, "daynight": "D", "frp": 18.59, "instrument": "MODIS", "latitude": 68.42357, "longitude": 133.45253, "satellite": "Terra", "scan": 1.56, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [148.61743, 68.42657, 148.61743, 68.42657], "geometry": {"coordinates": [148.61743, 68.42657], "type": "Point"}, "id": "856", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 291.32, "brightness": 306.12, "confidence": 55, "daynight": "D", "frp": 31.95, "instrument": "MODIS", "latitude": 68.42657, "longitude": 148.61743, "satellite": "Terra", "scan": 3.32, "track": 1.72, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.46732, 68.45019, 134.46732, 68.45019], "geometry": {"coordinates": [134.46732, 68.45019], "type": "Point"}, "id": "857", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.47, "brightness": 312.01, "confidence": 27, "daynight": "D", "frp": 12.38, "instrument": "MODIS", "latitude": 68.45019, "longitude": 134.46732, "satellite": "Terra", "scan": 1.64, "track": 1.26, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.45901, 68.47559, 133.45901, 68.47559], "geometry": {"coordinates": [133.45901, 68.47559], "type": "Point"}, "id": "858", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.15, "brightness": 325.54, "confidence": 81, "daynight": "D", "frp": 28.83, "instrument": "MODIS", "latitude": 68.47559, "longitude": 133.45901, "satellite": "Terra", "scan": 1.55, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.52724, 68.47643, 134.52724, 68.47643], "geometry": {"coordinates": [134.52724, 68.47643], "type": "Point"}, "id": "859", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.95, "brightness": 328.57, "confidence": 69, "daynight": "D", "frp": 39.13, "instrument": "MODIS", "latitude": 68.47643, "longitude": 134.52724, "satellite": "Terra", "scan": 1.64, "track": 1.26, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.46678, 68.47675, 133.46678, 68.47675], "geometry": {"coordinates": [133.46678, 68.47675], "type": "Point"}, "id": "860", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.33, "brightness": 325.8, "confidence": 82, "daynight": "D", "frp": 27.52, "instrument": "MODIS", "latitude": 68.47675, "longitude": 133.46678, "satellite": "Terra", "scan": 1.55, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.54987, 68.49574, 133.54987, 68.49574], "geometry": {"coordinates": [133.54987, 68.49574], "type": "Point"}, "id": "861", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 301.87, "brightness": 327.65, "confidence": 83, "daynight": "D", "frp": 32.48, "instrument": "MODIS", "latitude": 68.49574, "longitude": 133.54987, "satellite": "Terra", "scan": 1.56, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.58154, 68.50381, 134.58154, 68.50381], "geometry": {"coordinates": [134.58154, 68.50381], "type": "Point"}, "id": "862", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.59, "brightness": 325.67, "confidence": 59, "daynight": "D", "frp": 33.9, "instrument": "MODIS", "latitude": 68.50381, "longitude": 134.58154, "satellite": "Terra", "scan": 1.64, "track": 1.26, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.56709, 68.50477, 133.56709, 68.50477], "geometry": {"coordinates": [133.56709, 68.50477], "type": "Point"}, "id": "863", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 302.13, "brightness": 329.58, "confidence": 84, "daynight": "D", "frp": 37.55, "instrument": "MODIS", "latitude": 68.50477, "longitude": 133.56709, "satellite": "Terra", "scan": 1.56, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.58446, 68.51377, 133.58446, 68.51377], "geometry": {"coordinates": [133.58446, 68.51377], "type": "Point"}, "id": "864", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.3, "brightness": 328.18, "confidence": 83, "daynight": "D", "frp": 35.85, "instrument": "MODIS", "latitude": 68.51377, "longitude": 133.58446, "satellite": "Terra", "scan": 1.56, "track": 1.23, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.32924, 68.52871, 134.32924, 68.52871], "geometry": {"coordinates": [134.32924, 68.52871], "type": "Point"}, "id": "865", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.92, "brightness": 323.7, "confidence": 32, "daynight": "D", "frp": 27.63, "instrument": "MODIS", "latitude": 68.52871, "longitude": 134.32924, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.29755, 68.53704, 134.29755, 68.53704], "geometry": {"coordinates": [134.29755, 68.53704], "type": "Point"}, "id": "866", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.57, "brightness": 318.77, "confidence": 32, "daynight": "D", "frp": 20.36, "instrument": "MODIS", "latitude": 68.53704, "longitude": 134.29755, "satellite": "Terra", "scan": 1.61, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.34731, 68.53776, 134.34731, 68.53776], "geometry": {"coordinates": [134.34731, 68.53776], "type": "Point"}, "id": "867", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 304.18, "brightness": 350.68, "confidence": 96, "daynight": "D", "frp": 108.56, "instrument": "MODIS", "latitude": 68.53776, "longitude": 134.34731, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.45143, 68.53806, 134.45143, 68.53806], "geometry": {"coordinates": [134.45143, 68.53806], "type": "Point"}, "id": "868", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 302.56, "brightness": 327.74, "confidence": 83, "daynight": "D", "frp": 33.09, "instrument": "MODIS", "latitude": 68.53806, "longitude": 134.45143, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.31551, 68.5461, 134.31551, 68.5461], "geometry": {"coordinates": [134.31551, 68.5461], "type": "Point"}, "id": "869", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 305.44, "brightness": 374.55, "confidence": 100, "daynight": "D", "frp": 249.33, "instrument": "MODIS", "latitude": 68.5461, "longitude": 134.31551, "satellite": "Terra", "scan": 1.61, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.47542, 68.5463, 134.47542, 68.5463], "geometry": {"coordinates": [134.47542, 68.5463], "type": "Point"}, "id": "870", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.12, "brightness": 331.55, "confidence": 80, "daynight": "D", "frp": 41.36, "instrument": "MODIS", "latitude": 68.5463, "longitude": 134.47542, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.36626, 68.54658, 134.36626, 68.54658], "geometry": {"coordinates": [134.36626, 68.54658], "type": "Point"}, "id": "871", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 303.6, "brightness": 339.4, "confidence": 67, "daynight": "D", "frp": 64.53, "instrument": "MODIS", "latitude": 68.54658, "longitude": 134.36626, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.46979, 68.54707, 134.46979, 68.54707], "geometry": {"coordinates": [134.46979, 68.54707], "type": "Point"}, "id": "872", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.7, "brightness": 332.74, "confidence": 87, "daynight": "D", "frp": 45.96, "instrument": "MODIS", "latitude": 68.54707, "longitude": 134.46979, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.62665, 68.54783, 134.62665, 68.54783], "geometry": {"coordinates": [134.62665, 68.54783], "type": "Point"}, "id": "873", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 289.15, "brightness": 329.29, "confidence": 59, "daynight": "D", "frp": 45.56, "instrument": "MODIS", "latitude": 68.54783, "longitude": 134.62665, "satellite": "Terra", "scan": 1.64, "track": 1.26, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.33482, 68.55482, 134.33482, 68.55482], "geometry": {"coordinates": [134.33482, 68.55482], "type": "Point"}, "id": "874", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 311.3, "brightness": 405.33, "confidence": 100, "daynight": "D", "frp": 561.06, "instrument": "MODIS", "latitude": 68.55482, "longitude": 134.33482, "satellite": "Terra", "scan": 1.61, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.44287, 68.55495, 134.44287, 68.55495], "geometry": {"coordinates": [134.44287, 68.55495], "type": "Point"}, "id": "875", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.86, "brightness": 327.08, "confidence": 51, "daynight": "D", "frp": 30.37, "instrument": "MODIS", "latitude": 68.55495, "longitude": 134.44287, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.43698, 68.55566, 134.43698, 68.55566], "geometry": {"coordinates": [134.43698, 68.55566], "type": "Point"}, "id": "876", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.07, "brightness": 326.79, "confidence": 60, "daynight": "D", "frp": 29.78, "instrument": "MODIS", "latitude": 68.55566, "longitude": 134.43698, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.59425, 68.55643, 134.59425, 68.55643], "geometry": {"coordinates": [134.59425, 68.55643], "type": "Point"}, "id": "877", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 291.53, "brightness": 324.43, "confidence": 47, "daynight": "D", "frp": 33.9, "instrument": "MODIS", "latitude": 68.55643, "longitude": 134.59425, "satellite": "Terra", "scan": 1.63, "track": 1.26, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.40987, 68.56372, 134.40987, 68.56372], "geometry": {"coordinates": [134.40987, 68.56372], "type": "Point"}, "id": "878", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.36, "brightness": 335.9, "confidence": 80, "daynight": "D", "frp": 60.39, "instrument": "MODIS", "latitude": 68.56372, "longitude": 134.40987, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.40376, 68.56434, 134.40376, 68.56434], "geometry": {"coordinates": [134.40376, 68.56434], "type": "Point"}, "id": "879", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.01, "brightness": 335.17, "confidence": 73, "daynight": "D", "frp": 55.25, "instrument": "MODIS", "latitude": 68.56434, "longitude": 134.40376, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.42204, 68.57334, 134.42204, 68.57334], "geometry": {"coordinates": [134.42204, 68.57334], "type": "Point"}, "id": "880", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.58, "brightness": 325.48, "confidence": 40, "daynight": "D", "frp": 32.79, "instrument": "MODIS", "latitude": 68.57334, "longitude": 134.42204, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.46513, 68.59062, 134.46513, 68.59062], "geometry": {"coordinates": [134.46513, 68.59062], "type": "Point"}, "id": "881", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.74, "brightness": 344.09, "confidence": 93, "daynight": "D", "frp": 92.26, "instrument": "MODIS", "latitude": 68.59062, "longitude": 134.46513, "satellite": "Terra", "scan": 1.62, "track": 1.25, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.25076, 68.65139, 133.25076, 68.65139], "geometry": {"coordinates": [133.25076, 68.65139], "type": "Point"}, "id": "882", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.89, "brightness": 328.49, "confidence": 73, "daynight": "D", "frp": 35.88, "instrument": "MODIS", "latitude": 68.65139, "longitude": 133.25076, "satellite": "Terra", "scan": 1.51, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [133.26065, 68.6531, 133.26065, 68.6531], "geometry": {"coordinates": [133.26065, 68.6531], "type": "Point"}, "id": "883", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.76, "brightness": 333.98, "confidence": 66, "daynight": "D", "frp": 49.44, "instrument": "MODIS", "latitude": 68.6531, "longitude": 133.26065, "satellite": "Terra", "scan": 1.51, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.94783, 68.88734, 140.94783, 68.88734], "geometry": {"coordinates": [140.94783, 68.88734], "type": "Point"}, "id": "884", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.51, "brightness": 326.18, "confidence": 78, "daynight": "D", "frp": 56.73, "instrument": "MODIS", "latitude": 68.88734, "longitude": 140.94783, "satellite": "Terra", "scan": 2.17, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.94386, 68.8874, 140.94386, 68.8874], "geometry": {"coordinates": [140.94386, 68.8874], "type": "Point"}, "id": "885", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.63, "brightness": 323.69, "confidence": 81, "daynight": "D", "frp": 49.85, "instrument": "MODIS", "latitude": 68.8874, "longitude": 140.94386, "satellite": "Terra", "scan": 2.17, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.97157, 68.89686, 140.97157, 68.89686], "geometry": {"coordinates": [140.97157, 68.89686], "type": "Point"}, "id": "886", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.2, "brightness": 333.64, "confidence": 57, "daynight": "D", "frp": 78.98, "instrument": "MODIS", "latitude": 68.89686, "longitude": 140.97157, "satellite": "Terra", "scan": 2.17, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.01683, 68.8979, 143.01683, 68.8979], "geometry": {"coordinates": [143.01683, 68.8979], "type": "Point"}, "id": "887", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.14, "brightness": 341.11, "confidence": 56, "daynight": "D", "frp": 117.22, "instrument": "MODIS", "latitude": 68.8979, "longitude": 143.01683, "satellite": "Terra", "scan": 2.4, "track": 1.49, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.90347, 68.9003, 140.90347, 68.9003], "geometry": {"coordinates": [140.90347, 68.9003], "type": "Point"}, "id": "888", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.15, "brightness": 324.82, "confidence": 82, "daynight": "D", "frp": 51.75, "instrument": "MODIS", "latitude": 68.9003, "longitude": 140.90347, "satellite": "Terra", "scan": 2.16, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.90776, 68.90032, 140.90776, 68.90032], "geometry": {"coordinates": [140.90776, 68.90032], "type": "Point"}, "id": "889", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.04, "brightness": 331.01, "confidence": 86, "daynight": "D", "frp": 73.09, "instrument": "MODIS", "latitude": 68.90032, "longitude": 140.90776, "satellite": "Terra", "scan": 2.16, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.0213, 68.90107, 143.0213, 68.90107], "geometry": {"coordinates": [143.0213, 68.90107], "type": "Point"}, "id": "890", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.36, "brightness": 341.32, "confidence": 73, "daynight": "D", "frp": 123.35, "instrument": "MODIS", "latitude": 68.90107, "longitude": 143.0213, "satellite": "Terra", "scan": 2.4, "track": 1.49, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.79071, 68.9065, 142.79071, 68.9065], "geometry": {"coordinates": [142.79071, 68.9065], "type": "Point"}, "id": "891", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 295.88, "brightness": 323.15, "confidence": 41, "daynight": "D", "frp": 57.86, "instrument": "MODIS", "latitude": 68.9065, "longitude": 142.79071, "satellite": "Terra", "scan": 2.37, "track": 1.49, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.93121, 68.90992, 140.93121, 68.90992], "geometry": {"coordinates": [140.93121, 68.90992], "type": "Point"}, "id": "892", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.29, "brightness": 351.41, "confidence": 96, "daynight": "D", "frp": 172.89, "instrument": "MODIS", "latitude": 68.90992, "longitude": 140.93121, "satellite": "Terra", "scan": 2.16, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.72366, 68.91463, 142.72366, 68.91463], "geometry": {"coordinates": [142.72366, 68.91463], "type": "Point"}, "id": "893", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.82, "brightness": 335.34, "confidence": 89, "daynight": "D", "frp": 111.33, "instrument": "MODIS", "latitude": 68.91463, "longitude": 142.72366, "satellite": "Terra", "scan": 2.36, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.74826, 68.92109, 142.74826, 68.92109], "geometry": {"coordinates": [142.74826, 68.92109], "type": "Point"}, "id": "894", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 302.53, "brightness": 384.7, "confidence": 94, "daynight": "D", "frp": 587.86, "instrument": "MODIS", "latitude": 68.92109, "longitude": 142.74826, "satellite": "Terra", "scan": 2.36, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.84163, 68.92582, 142.84163, 68.92582], "geometry": {"coordinates": [142.84163, 68.92582], "type": "Point"}, "id": "895", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.48, "brightness": 351.41, "confidence": 78, "daynight": "D", "frp": 205.13, "instrument": "MODIS", "latitude": 68.92582, "longitude": 142.84163, "satellite": "Terra", "scan": 2.37, "track": 1.49, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.68079, 68.92589, 142.68079, 68.92589], "geometry": {"coordinates": [142.68079, 68.92589], "type": "Point"}, "id": "896", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.32, "brightness": 331.24, "confidence": 78, "daynight": "D", "frp": 89.93, "instrument": "MODIS", "latitude": 68.92589, "longitude": 142.68079, "satellite": "Terra", "scan": 2.35, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.68074, 68.92914, 142.68074, 68.92914], "geometry": {"coordinates": [142.68074, 68.92914], "type": "Point"}, "id": "897", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.81, "brightness": 346.72, "confidence": 94, "daynight": "D", "frp": 175.64, "instrument": "MODIS", "latitude": 68.92914, "longitude": 142.68074, "satellite": "Terra", "scan": 2.35, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.70583, 68.93563, 142.70583, 68.93563], "geometry": {"coordinates": [142.70583, 68.93563], "type": "Point"}, "id": "898", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 310.98, "brightness": 425.37, "confidence": 100, "daynight": "D", "frp": 1515.5, "instrument": "MODIS", "latitude": 68.93563, "longitude": 142.70583, "satellite": "Terra", "scan": 2.35, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.63782, 68.94061, 142.63782, 68.94061], "geometry": {"coordinates": [142.63782, 68.94061], "type": "Point"}, "id": "899", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.14, "brightness": 349.22, "confidence": 95, "daynight": "D", "frp": 195.57, "instrument": "MODIS", "latitude": 68.94061, "longitude": 142.63782, "satellite": "Terra", "scan": 2.34, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.63747, 68.94373, 142.63747, 68.94373], "geometry": {"coordinates": [142.63747, 68.94373], "type": "Point"}, "id": "900", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.72, "brightness": 354.59, "confidence": 98, "daynight": "D", "frp": 233.01, "instrument": "MODIS", "latitude": 68.94373, "longitude": 142.63747, "satellite": "Terra", "scan": 2.34, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.05693, 68.95656, 141.05693, 68.95656], "geometry": {"coordinates": [141.05693, 68.95656], "type": "Point"}, "id": "901", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.01, "brightness": 321.03, "confidence": 31, "daynight": "D", "frp": 40.16, "instrument": "MODIS", "latitude": 68.95656, "longitude": 141.05693, "satellite": "Terra", "scan": 2.16, "track": 1.43, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.5955, 68.95786, 142.5955, 68.95786], "geometry": {"coordinates": [142.5955, 68.95786], "type": "Point"}, "id": "902", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.81, "brightness": 341.35, "confidence": 92, "daynight": "D", "frp": 146.5, "instrument": "MODIS", "latitude": 68.95786, "longitude": 142.5955, "satellite": "Terra", "scan": 2.33, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.55354, 68.97196, 142.55354, 68.97196], "geometry": {"coordinates": [142.55354, 68.97196], "type": "Point"}, "id": "903", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 295.27, "brightness": 322.46, "confidence": 80, "daynight": "D", "frp": 58.83, "instrument": "MODIS", "latitude": 68.97196, "longitude": 142.55354, "satellite": "Terra", "scan": 2.32, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.24776, 68.98055, 143.24776, 68.98055], "geometry": {"coordinates": [143.24776, 68.98055], "type": "Point"}, "id": "904", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.41, "brightness": 334.72, "confidence": 84, "daynight": "D", "frp": 113.33, "instrument": "MODIS", "latitude": 68.98055, "longitude": 143.24776, "satellite": "Terra", "scan": 2.4, "track": 1.49, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.24989, 68.98442, 143.24989, 68.98442], "geometry": {"coordinates": [143.24989, 68.98442], "type": "Point"}, "id": "905", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.72, "brightness": 335.01, "confidence": 78, "daynight": "D", "frp": 109.06, "instrument": "MODIS", "latitude": 68.98442, "longitude": 143.24989, "satellite": "Terra", "scan": 2.4, "track": 1.49, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.27328, 68.9903, 143.27328, 68.9903], "geometry": {"coordinates": [143.27328, 68.9903], "type": "Point"}, "id": "906", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 294.92, "brightness": 317.85, "confidence": 72, "daynight": "D", "frp": 45.23, "instrument": "MODIS", "latitude": 68.9903, "longitude": 143.27328, "satellite": "Terra", "scan": 2.4, "track": 1.49, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.20512, 68.99539, 143.20512, 68.99539], "geometry": {"coordinates": [143.20512, 68.99539], "type": "Point"}, "id": "907", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.36, "brightness": 314.39, "confidence": 38, "daynight": "D", "frp": 32.44, "instrument": "MODIS", "latitude": 68.99539, "longitude": 143.20512, "satellite": "Terra", "scan": 2.39, "track": 1.49, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [142.56262, 69.00264, 142.56262, 69.00264], "geometry": {"coordinates": [142.56262, 69.00264], "type": "Point"}, "id": "908", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 291.26, "brightness": 310.39, "confidence": 42, "daynight": "D", "frp": 25.07, "instrument": "MODIS", "latitude": 69.00264, "longitude": 142.56262, "satellite": "Terra", "scan": 2.31, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.3239, 69.09915, 143.3239, 69.09915], "geometry": {"coordinates": [143.3239, 69.09915], "type": "Point"}, "id": "909", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 294.76, "brightness": 306.07, "confidence": 48, "daynight": "D", "frp": 12.9, "instrument": "MODIS", "latitude": 69.09915, "longitude": 143.3239, "satellite": "Terra", "scan": 2.37, "track": 1.49, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.78036, 69.11051, 147.78036, 69.11051], "geometry": {"coordinates": [147.78036, 69.11051], "type": "Point"}, "id": "910", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 290.87, "brightness": 311.74, "confidence": 0, "daynight": "D", "frp": 45.5, "instrument": "MODIS", "latitude": 69.11051, "longitude": 147.78036, "satellite": "Terra", "scan": 2.9, "track": 1.62, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [147.79057, 69.11096, 147.79057, 69.11096], "geometry": {"coordinates": [147.79057, 69.11096], "type": "Point"}, "id": "911", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 290.88, "brightness": 315.65, "confidence": 0, "daynight": "D", "frp": 59.72, "instrument": "MODIS", "latitude": 69.11096, "longitude": 147.79057, "satellite": "Terra", "scan": 2.9, "track": 1.62, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.39378, 69.18233, 143.39378, 69.18233], "geometry": {"coordinates": [143.39378, 69.18233], "type": "Point"}, "id": "912", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.63, "brightness": 325.08, "confidence": 80, "daynight": "D", "frp": 60.14, "instrument": "MODIS", "latitude": 69.18233, "longitude": 143.39378, "satellite": "Terra", "scan": 2.35, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.39471, 69.18567, 143.39471, 69.18567], "geometry": {"coordinates": [143.39471, 69.18567], "type": "Point"}, "id": "913", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.36, "brightness": 326.23, "confidence": 83, "daynight": "D", "frp": 64.83, "instrument": "MODIS", "latitude": 69.18567, "longitude": 143.39471, "satellite": "Terra", "scan": 2.35, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.41982, 69.19185, 143.41982, 69.19185], "geometry": {"coordinates": [143.41982, 69.19185], "type": "Point"}, "id": "914", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.12, "brightness": 320.08, "confidence": 75, "daynight": "D", "frp": 43.82, "instrument": "MODIS", "latitude": 69.19185, "longitude": 143.41982, "satellite": "Terra", "scan": 2.35, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.37733, 69.20656, 143.37733, 69.20656], "geometry": {"coordinates": [143.37733, 69.20656], "type": "Point"}, "id": "915", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.15, "brightness": 313.02, "confidence": 24, "daynight": "D", "frp": 19.35, "instrument": "MODIS", "latitude": 69.20656, "longitude": 143.37733, "satellite": "Terra", "scan": 2.34, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.67885, 69.23286, 134.67885, 69.23286], "geometry": {"coordinates": [134.67885, 69.23286], "type": "Point"}, "id": "916", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.66, "brightness": 323.91, "confidence": 72, "daynight": "D", "frp": 27.56, "instrument": "MODIS", "latitude": 69.23286, "longitude": 134.67885, "satellite": "Terra", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.69711, 69.24165, 134.69711, 69.24165], "geometry": {"coordinates": [134.69711, 69.24165], "type": "Point"}, "id": "917", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 301.31, "brightness": 338.44, "confidence": 90, "daynight": "D", "frp": 62.16, "instrument": "MODIS", "latitude": 69.24165, "longitude": 134.69711, "satellite": "Terra", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.41261, 69.24973, 143.41261, 69.24973], "geometry": {"coordinates": [143.41261, 69.24973], "type": "Point"}, "id": "918", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.36, "brightness": 342.91, "confidence": 93, "daynight": "D", "frp": 149.83, "instrument": "MODIS", "latitude": 69.24973, "longitude": 143.41261, "satellite": "Terra", "scan": 2.33, "track": 1.48, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.73198, 69.25968, 134.73198, 69.25968], "geometry": {"coordinates": [134.73198, 69.25968], "type": "Point"}, "id": "919", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.76, "brightness": 353.11, "confidence": 97, "daynight": "D", "frp": 114.3, "instrument": "MODIS", "latitude": 69.25968, "longitude": 134.73198, "satellite": "Terra", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.74129, 69.26122, 134.74129, 69.26122], "geometry": {"coordinates": [134.74129, 69.26122], "type": "Point"}, "id": "920", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.68, "brightness": 345.55, "confidence": 93, "daynight": "D", "frp": 85.62, "instrument": "MODIS", "latitude": 69.26122, "longitude": 134.74129, "satellite": "Terra", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.55731, 69.26406, 134.55731, 69.26406], "geometry": {"coordinates": [134.55731, 69.26406], "type": "Point"}, "id": "921", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 302.06, "brightness": 332.91, "confidence": 86, "daynight": "D", "frp": 45.3, "instrument": "MODIS", "latitude": 69.26406, "longitude": 134.55731, "satellite": "Terra", "scan": 1.51, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.37027, 69.26425, 143.37027, 69.26425], "geometry": {"coordinates": [143.37027, 69.26425], "type": "Point"}, "id": "922", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.77, "brightness": 349.81, "confidence": 90, "daynight": "D", "frp": 191.85, "instrument": "MODIS", "latitude": 69.26425, "longitude": 143.37027, "satellite": "Terra", "scan": 2.32, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.70116, 69.26758, 134.70116, 69.26758], "geometry": {"coordinates": [134.70116, 69.26758], "type": "Point"}, "id": "923", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 303.84, "brightness": 350.51, "confidence": 96, "daynight": "D", "frp": 100.77, "instrument": "MODIS", "latitude": 69.26758, "longitude": 134.70116, "satellite": "Terra", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.7511, 69.26828, 134.7511, 69.26828], "geometry": {"coordinates": [134.7511, 69.26828], "type": "Point"}, "id": "924", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.53, "brightness": 337.31, "confidence": 89, "daynight": "D", "frp": 58.61, "instrument": "MODIS", "latitude": 69.26828, "longitude": 134.7511, "satellite": "Terra", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.71036, 69.26926, 134.71036, 69.26926], "geometry": {"coordinates": [134.71036, 69.26926], "type": "Point"}, "id": "925", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 303.64, "brightness": 361.71, "confidence": 100, "daynight": "D", "frp": 152.84, "instrument": "MODIS", "latitude": 69.26926, "longitude": 134.71036, "satellite": "Terra", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.30168, 69.2694, 143.30168, 69.2694], "geometry": {"coordinates": [143.30168, 69.2694], "type": "Point"}, "id": "926", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.25, "brightness": 327.81, "confidence": 76, "daynight": "D", "frp": 62.41, "instrument": "MODIS", "latitude": 69.2694, "longitude": 143.30168, "satellite": "Terra", "scan": 2.31, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.76033, 69.26983, 134.76033, 69.26983], "geometry": {"coordinates": [134.76033, 69.26983], "type": "Point"}, "id": "927", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.87, "brightness": 328.67, "confidence": 83, "daynight": "D", "frp": 38.15, "instrument": "MODIS", "latitude": 69.26983, "longitude": 134.76033, "satellite": "Terra", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.57518, 69.27292, 134.57518, 69.27292], "geometry": {"coordinates": [134.57518, 69.27292], "type": "Point"}, "id": "928", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 303.02, "brightness": 338.85, "confidence": 90, "daynight": "D", "frp": 60.64, "instrument": "MODIS", "latitude": 69.27292, "longitude": 134.57518, "satellite": "Terra", "scan": 1.51, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.07266, 69.27474, 143.07266, 69.27474], "geometry": {"coordinates": [143.07266, 69.27474], "type": "Point"}, "id": "929", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 293.2, "brightness": 313.78, "confidence": 47, "daynight": "D", "frp": 28.68, "instrument": "MODIS", "latitude": 69.27474, "longitude": 143.07266, "satellite": "Terra", "scan": 2.29, "track": 1.46, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.7196, 69.27632, 134.7196, 69.27632], "geometry": {"coordinates": [134.7196, 69.27632], "type": "Point"}, "id": "930", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 306.38, "brightness": 381.12, "confidence": 100, "daynight": "D", "frp": 277.4, "instrument": "MODIS", "latitude": 69.27632, "longitude": 134.7196, "satellite": "Terra", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.72881, 69.278, 134.72881, 69.278], "geometry": {"coordinates": [134.72881, 69.278], "type": "Point"}, "id": "931", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 307.43, "brightness": 402.18, "confidence": 100, "daynight": "D", "frp": 480.33, "instrument": "MODIS", "latitude": 69.278, "longitude": 134.72881, "satellite": "Terra", "scan": 1.53, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.59309, 69.28176, 134.59309, 69.28176], "geometry": {"coordinates": [134.59309, 69.28176], "type": "Point"}, "id": "932", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 303.05, "brightness": 326.71, "confidence": 77, "daynight": "D", "frp": 28.05, "instrument": "MODIS", "latitude": 69.28176, "longitude": 134.59309, "satellite": "Terra", "scan": 1.51, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.69818, 69.28593, 134.69818, 69.28593], "geometry": {"coordinates": [134.69818, 69.28593], "type": "Point"}, "id": "933", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 303.58, "brightness": 325.97, "confidence": 75, "daynight": "D", "frp": 27.32, "instrument": "MODIS", "latitude": 69.28593, "longitude": 134.69818, "satellite": "Terra", "scan": 1.52, "track": 1.22, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [143.28592, 69.2931, 143.28592, 69.2931], "geometry": {"coordinates": [143.28592, 69.2931], "type": "Point"}, "id": "934", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.98, "brightness": 326.06, "confidence": 61, "daynight": "D", "frp": 63.12, "instrument": "MODIS", "latitude": 69.2931, "longitude": 143.28592, "satellite": "Terra", "scan": 2.3, "track": 1.47, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.59274, 69.32659, 134.59274, 69.32659], "geometry": {"coordinates": [134.59274, 69.32659], "type": "Point"}, "id": "935", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.12, "brightness": 331.64, "confidence": 74, "daynight": "D", "frp": 41.54, "instrument": "MODIS", "latitude": 69.32659, "longitude": 134.59274, "satellite": "Terra", "scan": 1.51, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.61076, 69.33539, 134.61076, 69.33539], "geometry": {"coordinates": [134.61076, 69.33539], "type": "Point"}, "id": "936", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.63, "brightness": 327.19, "confidence": 65, "daynight": "D", "frp": 32.44, "instrument": "MODIS", "latitude": 69.33539, "longitude": 134.61076, "satellite": "Terra", "scan": 1.51, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.65892, 69.33646, 134.65892, 69.33646], "geometry": {"coordinates": [134.65892, 69.33646], "type": "Point"}, "id": "937", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 302.02, "brightness": 326.23, "confidence": 70, "daynight": "D", "frp": 34.01, "instrument": "MODIS", "latitude": 69.33646, "longitude": 134.65892, "satellite": "Terra", "scan": 1.51, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.58153, 69.34289, 134.58153, 69.34289], "geometry": {"coordinates": [134.58153, 69.34289], "type": "Point"}, "id": "938", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.93, "brightness": 333.39, "confidence": 0, "daynight": "D", "frp": 50.59, "instrument": "MODIS", "latitude": 69.34289, "longitude": 134.58153, "satellite": "Terra", "scan": 1.5, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [134.62898, 69.34414, 134.62898, 69.34414], "geometry": {"coordinates": [134.62898, 69.34414], "type": "Point"}, "id": "939", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 303.46, "brightness": 371.48, "confidence": 87, "daynight": "D", "frp": 209.86, "instrument": "MODIS", "latitude": 69.34414, "longitude": 134.62898, "satellite": "Terra", "scan": 1.51, "track": 1.21, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.67802, 69.99371, 141.67802, 69.99371], "geometry": {"coordinates": [141.67802, 69.99371], "type": "Point"}, "id": "940", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.84, "brightness": 320.85, "confidence": 47, "daynight": "D", "frp": 34.17, "instrument": "MODIS", "latitude": 69.99371, "longitude": 141.67802, "satellite": "Terra", "scan": 1.95, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.69215, 69.99598, 141.69215, 69.99598], "geometry": {"coordinates": [141.69215, 69.99598], "type": "Point"}, "id": "941", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.66, "brightness": 331.87, "confidence": 70, "daynight": "D", "frp": 65.55, "instrument": "MODIS", "latitude": 69.99598, "longitude": 141.69215, "satellite": "Terra", "scan": 1.95, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.71628, 70.00498, 141.71628, 70.00498], "geometry": {"coordinates": [141.71628, 70.00498], "type": "Point"}, "id": "942", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.82, "brightness": 332.79, "confidence": 62, "daynight": "D", "frp": 66.28, "instrument": "MODIS", "latitude": 70.00498, "longitude": 141.71628, "satellite": "Terra", "scan": 1.95, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.63983, 70.00558, 141.63983, 70.00558], "geometry": {"coordinates": [141.63983, 70.00558], "type": "Point"}, "id": "943", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.89, "brightness": 327.84, "confidence": 42, "daynight": "D", "frp": 51.06, "instrument": "MODIS", "latitude": 70.00558, "longitude": 141.63983, "satellite": "Terra", "scan": 1.95, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.65434, 70.00792, 141.65434, 70.00792], "geometry": {"coordinates": [141.65434, 70.00792], "type": "Point"}, "id": "944", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.25, "brightness": 344.35, "confidence": 93, "daynight": "D", "frp": 116.96, "instrument": "MODIS", "latitude": 70.00792, "longitude": 141.65434, "satellite": "Terra", "scan": 1.95, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.60191, 70.01737, 141.60191, 70.01737], "geometry": {"coordinates": [141.60191, 70.01737], "type": "Point"}, "id": "945", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.09, "brightness": 328.31, "confidence": 51, "daynight": "D", "frp": 52.9, "instrument": "MODIS", "latitude": 70.01737, "longitude": 141.60191, "satellite": "Terra", "scan": 1.94, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.61678, 70.01977, 141.61678, 70.01977], "geometry": {"coordinates": [141.61678, 70.01977], "type": "Point"}, "id": "946", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.17, "brightness": 321.41, "confidence": 77, "daynight": "D", "frp": 36.15, "instrument": "MODIS", "latitude": 70.01977, "longitude": 141.61678, "satellite": "Terra", "scan": 1.94, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.57993, 70.03136, 141.57993, 70.03136], "geometry": {"coordinates": [141.57993, 70.03136], "type": "Point"}, "id": "947", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.53, "brightness": 317.6, "confidence": 63, "daynight": "D", "frp": 26.37, "instrument": "MODIS", "latitude": 70.03136, "longitude": 141.57993, "satellite": "Terra", "scan": 1.93, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.81346, 70.04082, 141.81346, 70.04082], "geometry": {"coordinates": [141.81346, 70.04082], "type": "Point"}, "id": "948", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.46, "brightness": 323.5, "confidence": 40, "daynight": "D", "frp": 40.26, "instrument": "MODIS", "latitude": 70.04082, "longitude": 141.81346, "satellite": "Terra", "scan": 1.95, "track": 1.36, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.77354, 70.08497, 140.77354, 70.08497], "geometry": {"coordinates": [140.77354, 70.08497], "type": "Point"}, "id": "949", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.84, "brightness": 318.23, "confidence": 51, "daynight": "D", "frp": 25.7, "instrument": "MODIS", "latitude": 70.08497, "longitude": 140.77354, "satellite": "Terra", "scan": 1.85, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.71407, 70.08706, 140.71407, 70.08706], "geometry": {"coordinates": [140.71407, 70.08706], "type": "Point"}, "id": "950", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.75, "brightness": 331.15, "confidence": 58, "daynight": "D", "frp": 55.49, "instrument": "MODIS", "latitude": 70.08706, "longitude": 140.71407, "satellite": "Terra", "scan": 1.85, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.7374, 70.09593, 140.7374, 70.09593], "geometry": {"coordinates": [140.7374, 70.09593], "type": "Point"}, "id": "951", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.53, "brightness": 332.22, "confidence": 54, "daynight": "D", "frp": 59.08, "instrument": "MODIS", "latitude": 70.09593, "longitude": 140.7374, "satellite": "Terra", "scan": 1.85, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.54105, 70.09789, 140.54105, 70.09789], "geometry": {"coordinates": [140.54105, 70.09789], "type": "Point"}, "id": "952", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.93, "brightness": 334.68, "confidence": 86, "daynight": "D", "frp": 66.55, "instrument": "MODIS", "latitude": 70.09789, "longitude": 140.54105, "satellite": "Terra", "scan": 1.83, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.67795, 70.09801, 140.67795, 70.09801], "geometry": {"coordinates": [140.67795, 70.09801], "type": "Point"}, "id": "953", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 301.89, "brightness": 345.02, "confidence": 94, "daynight": "D", "frp": 104.94, "instrument": "MODIS", "latitude": 70.09801, "longitude": 140.67795, "satellite": "Terra", "scan": 1.84, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.4816, 70.09988, 140.4816, 70.09988], "geometry": {"coordinates": [140.4816, 70.09988], "type": "Point"}, "id": "954", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.01, "brightness": 321.21, "confidence": 79, "daynight": "D", "frp": 30.16, "instrument": "MODIS", "latitude": 70.09988, "longitude": 140.4816, "satellite": "Terra", "scan": 1.82, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.55971, 70.10204, 140.55971, 70.10204], "geometry": {"coordinates": [140.55971, 70.10204], "type": "Point"}, "id": "955", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 301.74, "brightness": 341.97, "confidence": 88, "daynight": "D", "frp": 92.03, "instrument": "MODIS", "latitude": 70.10204, "longitude": 140.55971, "satellite": "Terra", "scan": 1.83, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.5005, 70.10411, 140.5005, 70.10411], "geometry": {"coordinates": [140.5005, 70.10411], "type": "Point"}, "id": "956", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 301.3, "brightness": 346.11, "confidence": 94, "daynight": "D", "frp": 112.73, "instrument": "MODIS", "latitude": 70.10411, "longitude": 140.5005, "satellite": "Terra", "scan": 1.82, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.76079, 70.10478, 140.76079, 70.10478], "geometry": {"coordinates": [140.76079, 70.10478], "type": "Point"}, "id": "957", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.64, "brightness": 330.6, "confidence": 49, "daynight": "D", "frp": 54.28, "instrument": "MODIS", "latitude": 70.10478, "longitude": 140.76079, "satellite": "Terra", "scan": 1.85, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.50478, 70.10872, 140.50478, 70.10872], "geometry": {"coordinates": [140.50478, 70.10872], "type": "Point"}, "id": "958", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 301.7, "brightness": 348.82, "confidence": 95, "daynight": "D", "frp": 124.86, "instrument": "MODIS", "latitude": 70.10872, "longitude": 140.50478, "satellite": "Terra", "scan": 1.82, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.64194, 70.10892, 140.64194, 70.10892], "geometry": {"coordinates": [140.64194, 70.10892], "type": "Point"}, "id": "959", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.47, "brightness": 339.51, "confidence": 91, "daynight": "D", "frp": 83.63, "instrument": "MODIS", "latitude": 70.10892, "longitude": 140.64194, "satellite": "Terra", "scan": 1.83, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.52367, 70.11295, 140.52367, 70.11295], "geometry": {"coordinates": [140.52367, 70.11295], "type": "Point"}, "id": "960", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.55, "brightness": 350.07, "confidence": 96, "daynight": "D", "frp": 131.3, "instrument": "MODIS", "latitude": 70.11295, "longitude": 140.52367, "satellite": "Terra", "scan": 1.82, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.78384, 70.11375, 140.78384, 70.11375], "geometry": {"coordinates": [140.78384, 70.11375], "type": "Point"}, "id": "961", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.54, "brightness": 340.97, "confidence": 92, "daynight": "D", "frp": 93.54, "instrument": "MODIS", "latitude": 70.11375, "longitude": 140.78384, "satellite": "Terra", "scan": 1.85, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.80008, 70.11852, 140.80008, 70.11852], "geometry": {"coordinates": [140.80008, 70.11852], "type": "Point"}, "id": "962", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.69, "brightness": 327.84, "confidence": 84, "daynight": "D", "frp": 51.62, "instrument": "MODIS", "latitude": 70.11852, "longitude": 140.80008, "satellite": "Terra", "scan": 1.85, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.74783, 70.12462, 140.74783, 70.12462], "geometry": {"coordinates": [140.74783, 70.12462], "type": "Point"}, "id": "963", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.6, "brightness": 355.09, "confidence": 98, "daynight": "D", "frp": 161.97, "instrument": "MODIS", "latitude": 70.12462, "longitude": 140.74783, "satellite": "Terra", "scan": 1.84, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.11621, 70.13042, 140.11621, 70.13042], "geometry": {"coordinates": [140.11621, 70.13042], "type": "Point"}, "id": "964", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 301.59, "brightness": 322.29, "confidence": 69, "daynight": "D", "frp": 29.42, "instrument": "MODIS", "latitude": 70.13042, "longitude": 140.11621, "satellite": "Terra", "scan": 1.79, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.13916, 70.13919, 140.13916, 70.13919], "geometry": {"coordinates": [140.13916, 70.13919], "type": "Point"}, "id": "965", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.32, "brightness": 323.51, "confidence": 80, "daynight": "D", "frp": 30.99, "instrument": "MODIS", "latitude": 70.13919, "longitude": 140.13916, "satellite": "Terra", "scan": 1.79, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.72884, 70.14031, 140.72884, 70.14031], "geometry": {"coordinates": [140.72884, 70.14031], "type": "Point"}, "id": "966", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.43, "brightness": 354.57, "confidence": 98, "daynight": "D", "frp": 162.53, "instrument": "MODIS", "latitude": 70.14031, "longitude": 140.72884, "satellite": "Terra", "scan": 1.83, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.69322, 70.15118, 140.69322, 70.15118], "geometry": {"coordinates": [140.69322, 70.15118], "type": "Point"}, "id": "967", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.73, "brightness": 327.65, "confidence": 75, "daynight": "D", "frp": 49.76, "instrument": "MODIS", "latitude": 70.15118, "longitude": 140.69322, "satellite": "Terra", "scan": 1.83, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.4805, 70.16891, 141.4805, 70.16891], "geometry": {"coordinates": [141.4805, 70.16891], "type": "Point"}, "id": "968", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 295.52, "brightness": 324.21, "confidence": 63, "daynight": "D", "frp": 42.72, "instrument": "MODIS", "latitude": 70.16891, "longitude": 141.4805, "satellite": "Terra", "scan": 1.89, "track": 1.34, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.23177, 70.17406, 140.23177, 70.17406], "geometry": {"coordinates": [140.23177, 70.17406], "type": "Point"}, "id": "969", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 302.74, "brightness": 316.26, "confidence": 63, "daynight": "D", "frp": 14.36, "instrument": "MODIS", "latitude": 70.17406, "longitude": 140.23177, "satellite": "Terra", "scan": 1.79, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.25208, 70.17892, 140.25208, 70.17892], "geometry": {"coordinates": [140.25208, 70.17892], "type": "Point"}, "id": "970", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 301.78, "brightness": 330.37, "confidence": 86, "daynight": "D", "frp": 47.41, "instrument": "MODIS", "latitude": 70.17892, "longitude": 140.25208, "satellite": "Terra", "scan": 1.79, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.36818, 70.17897, 141.36818, 70.17897], "geometry": {"coordinates": [141.36818, 70.17897], "type": "Point"}, "id": "971", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.46, "brightness": 324.14, "confidence": 41, "daynight": "D", "frp": 39.33, "instrument": "MODIS", "latitude": 70.17897, "longitude": 141.36818, "satellite": "Terra", "scan": 1.88, "track": 1.34, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.44402, 70.18029, 141.44402, 70.18029], "geometry": {"coordinates": [141.44402, 70.18029], "type": "Point"}, "id": "972", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.06, "brightness": 322.44, "confidence": 57, "daynight": "D", "frp": 36.61, "instrument": "MODIS", "latitude": 70.18029, "longitude": 141.44402, "satellite": "Terra", "scan": 1.89, "track": 1.34, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.2547, 70.18285, 140.2547, 70.18285], "geometry": {"coordinates": [140.2547, 70.18285], "type": "Point"}, "id": "973", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 301.75, "brightness": 326.63, "confidence": 83, "daynight": "D", "frp": 37.39, "instrument": "MODIS", "latitude": 70.18285, "longitude": 140.2547, "satellite": "Terra", "scan": 1.79, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.79675, 70.18522, 141.79675, 70.18522], "geometry": {"coordinates": [141.79675, 70.18522], "type": "Point"}, "id": "974", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.18, "brightness": 328.37, "confidence": 85, "daynight": "D", "frp": 62.0, "instrument": "MODIS", "latitude": 70.18522, "longitude": 141.79675, "satellite": "Terra", "scan": 1.91, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.33113, 70.19033, 141.33113, 70.19033], "geometry": {"coordinates": [141.33113, 70.19033], "type": "Point"}, "id": "975", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.24, "brightness": 355.34, "confidence": 92, "daynight": "D", "frp": 168.99, "instrument": "MODIS", "latitude": 70.19033, "longitude": 141.33113, "satellite": "Terra", "scan": 1.87, "track": 1.34, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.75113, 70.1909, 141.75113, 70.1909], "geometry": {"coordinates": [141.75113, 70.1909], "type": "Point"}, "id": "976", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.02, "brightness": 324.99, "confidence": 72, "daynight": "D", "frp": 47.37, "instrument": "MODIS", "latitude": 70.1909, "longitude": 141.75113, "satellite": "Terra", "scan": 1.91, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.61342, 70.19298, 141.61342, 70.19298], "geometry": {"coordinates": [141.61342, 70.19298], "type": "Point"}, "id": "977", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 295.42, "brightness": 333.64, "confidence": 67, "daynight": "D", "frp": 78.4, "instrument": "MODIS", "latitude": 70.19298, "longitude": 141.61342, "satellite": "Terra", "scan": 1.9, "track": 1.35, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.34663, 70.19429, 141.34663, 70.19429], "geometry": {"coordinates": [141.34663, 70.19429], "type": "Point"}, "id": "978", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.67, "brightness": 348.41, "confidence": 78, "daynight": "D", "frp": 126.7, "instrument": "MODIS", "latitude": 70.19429, "longitude": 141.34663, "satellite": "Terra", "scan": 1.87, "track": 1.34, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.21049, 70.19501, 141.21049, 70.19501], "geometry": {"coordinates": [141.21049, 70.19501], "type": "Point"}, "id": "979", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.39, "brightness": 310.73, "confidence": 64, "daynight": "D", "frp": 14.9, "instrument": "MODIS", "latitude": 70.19501, "longitude": 141.21049, "satellite": "Terra", "scan": 1.86, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.17426, 70.2061, 141.17426, 70.2061], "geometry": {"coordinates": [141.17426, 70.2061], "type": "Point"}, "id": "980", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.52, "brightness": 319.87, "confidence": 74, "daynight": "D", "frp": 34.39, "instrument": "MODIS", "latitude": 70.2061, "longitude": 141.17426, "satellite": "Terra", "scan": 1.86, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.26276, 70.20699, 140.26276, 70.20699], "geometry": {"coordinates": [140.26276, 70.20699], "type": "Point"}, "id": "981", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.61, "brightness": 321.31, "confidence": 70, "daynight": "D", "frp": 29.35, "instrument": "MODIS", "latitude": 70.20699, "longitude": 140.26276, "satellite": "Terra", "scan": 1.78, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.06712, 70.20702, 140.06712, 70.20702], "geometry": {"coordinates": [140.06712, 70.20702], "type": "Point"}, "id": "982", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.95, "brightness": 321.08, "confidence": 79, "daynight": "D", "frp": 32.67, "instrument": "MODIS", "latitude": 70.20702, "longitude": 140.06712, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [141.25816, 70.21265, 141.25816, 70.21265], "geometry": {"coordinates": [141.25816, 70.21265], "type": "Point"}, "id": "983", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.65, "brightness": 333.47, "confidence": 58, "daynight": "D", "frp": 66.87, "instrument": "MODIS", "latitude": 70.21265, "longitude": 141.25816, "satellite": "Terra", "scan": 1.86, "track": 1.33, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.83995, 70.22812, 140.83995, 70.22812], "geometry": {"coordinates": [140.83995, 70.22812], "type": "Point"}, "id": "984", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 299.31, "brightness": 323.41, "confidence": 53, "daynight": "D", "frp": 35.98, "instrument": "MODIS", "latitude": 70.22812, "longitude": 140.83995, "satellite": "Terra", "scan": 1.82, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.84404, 70.23266, 140.84404, 70.23266], "geometry": {"coordinates": [140.84404, 70.23266], "type": "Point"}, "id": "985", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 301.82, "brightness": 353.16, "confidence": 97, "daynight": "D", "frp": 151.85, "instrument": "MODIS", "latitude": 70.23266, "longitude": 140.84404, "satellite": "Terra", "scan": 1.82, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.86316, 70.23699, 140.86316, 70.23699], "geometry": {"coordinates": [140.86316, 70.23699], "type": "Point"}, "id": "986", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 300.14, "brightness": 343.08, "confidence": 79, "daynight": "D", "frp": 98.65, "instrument": "MODIS", "latitude": 70.23699, "longitude": 140.86316, "satellite": "Terra", "scan": 1.82, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.808, 70.24347, 140.808, 70.24347], "geometry": {"coordinates": [140.808, 70.24347], "type": "Point"}, "id": "987", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 303.36, "brightness": 364.65, "confidence": 94, "daynight": "D", "frp": 222.71, "instrument": "MODIS", "latitude": 70.24347, "longitude": 140.808, "satellite": "Terra", "scan": 1.82, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.7562, 70.26949, 140.7562, 70.26949], "geometry": {"coordinates": [140.7562, 70.26949], "type": "Point"}, "id": "988", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.89, "brightness": 330.37, "confidence": 27, "daynight": "D", "frp": 44.26, "instrument": "MODIS", "latitude": 70.26949, "longitude": 140.7562, "satellite": "Terra", "scan": 1.81, "track": 1.32, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.37253, 70.29507, 140.37253, 70.29507], "geometry": {"coordinates": [140.37253, 70.29507], "type": "Point"}, "id": "989", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.49, "brightness": 328.18, "confidence": 84, "daynight": "D", "frp": 48.95, "instrument": "MODIS", "latitude": 70.29507, "longitude": 140.37253, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.36028, 70.31429, 140.36028, 70.31429], "geometry": {"coordinates": [140.36028, 70.31429], "type": "Point"}, "id": "990", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.2, "brightness": 312.65, "confidence": 55, "daynight": "D", "frp": 16.03, "instrument": "MODIS", "latitude": 70.31429, "longitude": 140.36028, "satellite": "Terra", "scan": 1.77, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.32535, 70.32465, 140.32535, 70.32465], "geometry": {"coordinates": [140.32535, 70.32465], "type": "Point"}, "id": "991", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.03, "brightness": 322.5, "confidence": 80, "daynight": "D", "frp": 36.75, "instrument": "MODIS", "latitude": 70.32465, "longitude": 140.32535, "satellite": "Terra", "scan": 1.76, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.71947, 70.32797, 140.71947, 70.32797], "geometry": {"coordinates": [140.71947, 70.32797], "type": "Point"}, "id": "992", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 296.85, "brightness": 353.55, "confidence": 97, "daynight": "D", "frp": 152.87, "instrument": "MODIS", "latitude": 70.32797, "longitude": 140.71947, "satellite": "Terra", "scan": 1.79, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.60249, 70.33163, 140.60249, 70.33163], "geometry": {"coordinates": [140.60249, 70.33163], "type": "Point"}, "id": "993", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 295.13, "brightness": 320.59, "confidence": 78, "daynight": "D", "frp": 33.85, "instrument": "MODIS", "latitude": 70.33163, "longitude": 140.60249, "satellite": "Terra", "scan": 1.78, "track": 1.31, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.29045, 70.33498, 140.29045, 70.33498], "geometry": {"coordinates": [140.29045, 70.33498], "type": "Point"}, "id": "994", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 294.61, "brightness": 312.67, "confidence": 51, "daynight": "D", "frp": 16.06, "instrument": "MODIS", "latitude": 70.33498, "longitude": 140.29045, "satellite": "Terra", "scan": 1.76, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.22067, 70.35558, 140.22067, 70.35558], "geometry": {"coordinates": [140.22067, 70.35558], "type": "Point"}, "id": "995", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 295.8, "brightness": 327.86, "confidence": 84, "daynight": "D", "frp": 50.07, "instrument": "MODIS", "latitude": 70.35558, "longitude": 140.22067, "satellite": "Terra", "scan": 1.75, "track": 1.3, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.18596, 70.36581, 140.18596, 70.36581], "geometry": {"coordinates": [140.18596, 70.36581], "type": "Point"}, "id": "996", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 294.73, "brightness": 314.18, "confidence": 65, "daynight": "D", "frp": 20.56, "instrument": "MODIS", "latitude": 70.36581, "longitude": 140.18596, "satellite": "Terra", "scan": 1.74, "track": 1.29, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.23064, 70.3835, 140.23064, 70.3835], "geometry": {"coordinates": [140.23064, 70.3835], "type": "Point"}, "id": "997", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 297.94, "brightness": 328.32, "confidence": 62, "daynight": "D", "frp": 46.72, "instrument": "MODIS", "latitude": 70.3835, "longitude": 140.23064, "satellite": "Terra", "scan": 1.74, "track": 1.29, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [140.25305, 70.39233, 140.25305, 70.39233], "geometry": {"coordinates": [140.25305, 70.39233], "type": "Point"}, "id": "998", "properties": {"acq_date": "2024-07-15", "acq_time": 306, "bright_t31": 298.57, "brightness": 344.48, "confidence": 93, "daynight": "D", "frp": 100.66, "instrument": "MODIS", "latitude": 70.39233, "longitude": 140.25305, "satellite": "Terra", "scan": 1.74, "track": 1.29, "version": "6.1NRT"}, "type": "Feature"}, {"bbox": [132.36179, 61.33313, 132.36179, 61.33313], "geometry": {"coordinates": [132.36179, 61.33313], "type": "Point"}, "id": "999", "properties": {"acq_date": "2024-07-15", "acq_time": 308, "bright_t31": 292.16, "brightness": 320.63, "confidence": 77, "daynight": "D", "frp": 78.24, "instrument": "MODIS", "latitude": 61.33313, "longitude": 132.36179, "satellite": "Terra", "scan": 3.13, "track": 1.68, "version": "6.1NRT"}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_b0be9b43188cb0eab858ecb7a3988c88.setStyle(function(feature) {return feature.properties.style;});\n", "\n", " \n", " \n", - " geo_json_44bff450c24ee607d2f0debc86197ed0.addTo(map_71897978a005f7377ef500eb9c1b8336);\n", + " geo_json_b0be9b43188cb0eab858ecb7a3988c88.addTo(map_dec50c2e9912ed0baff54da87f21c4f7);\n", " \n", "</script>\n", "</html>\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen>" ], "text/plain": [ - "" + "" ] }, "metadata": {}, @@ -379,44 +381,6 @@ "cell_type": "code", "execution_count": 7, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "πŸŒ€ blueness-3.64.1\n", - "πŸŒ€ blue_options-4.35.1\n", - "\u001b[0;36mπŸ“œ awesome-bash-cli: .env: 24 env var(s)\u001b[0m\n", - "\u001b[0;36mπŸ“œ awesome-bash-cli: abcli/config.env: 13 env var(s)\u001b[0m\n", - "\u001b[0;36mπŸ”‹ gpu: not found.\u001b[0m\n", - "\u001b[0;36mπŸš€ abcli-9.163.1.current\u001b[0m\n", - "\u001b[0;36mconfirmed: firms-2024-07-16-20-31-32-12539 does not exist.\u001b[0m\n", - "\u001b[0;36mfirms-2024-07-16-20-31-32-12539 open upload started.\u001b[0m\n", - "upload: ../../../storage/abcli/firms-2024-07-16-20-31-32-12539/firms-2024-07-16-20-31-32-12539.csv to s3://kamangir/bolt/firms-2024-07-16-20-31-32-12539/firms-2024-07-16-20-31-32-12539.csv\n", - "upload: ../../../storage/abcli/firms-2024-07-16-20-31-32-12539/firms-2024-07-16-20-31-32-12539.geojson to s3://kamangir/bolt/firms-2024-07-16-20-31-32-12539/firms-2024-07-16-20-31-32-12539.geojson\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - ":: firms-2024-07-16-20-31-32-12539 += #open.\n" - ] - } - ], - "source": [ - "%%bash -s $object_name\n", - "source ~/git/awesome-bash-cli/abcli/.abcli/abcli.sh in_notebook\n", - "\n", - "object_name=$1\n", - " \n", - "abcli upload - $object_name" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, "outputs": [], "source": [ "# END"