blue-sandbox 5.38.1__py3-none-any.whl → 5.61.1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- blue_sandbox/.abcli/alias.sh +1 -1
- blue_sandbox/.abcli/microsoft_building_damage_assessment/ingest/list.sh +21 -0
- blue_sandbox/.abcli/microsoft_building_damage_assessment/ingest.sh +13 -4
- blue_sandbox/.abcli/microsoft_building_damage_assessment/label.sh +26 -0
- blue_sandbox/.abcli/tests/help.sh +4 -2
- blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_ingest_list.sh +19 -0
- blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_label.sh +12 -0
- blue_sandbox/README.py +1 -1
- blue_sandbox/__init__.py +1 -1
- blue_sandbox/config.env +1 -1
- blue_sandbox/env.py +2 -2
- blue_sandbox/microsoft_building_damage_assessment/README.py +21 -13
- blue_sandbox/microsoft_building_damage_assessment/__main__.py +7 -1
- blue_sandbox/microsoft_building_damage_assessment/ingest.py +15 -3
- blue_sandbox/microsoft_building_damage_assessment/label.py +38 -0
- {blue_sandbox-5.38.1.dist-info → blue_sandbox-5.61.1.dist-info}/METADATA +4 -3
- {blue_sandbox-5.38.1.dist-info → blue_sandbox-5.61.1.dist-info}/RECORD +20 -16
- blue_sandbox/help/microsoft_building_damage_assessment.py +0 -42
- {blue_sandbox-5.38.1.dist-info → blue_sandbox-5.61.1.dist-info}/LICENSE +0 -0
- {blue_sandbox-5.38.1.dist-info → blue_sandbox-5.61.1.dist-info}/WHEEL +0 -0
- {blue_sandbox-5.38.1.dist-info → blue_sandbox-5.61.1.dist-info}/top_level.txt +0 -0
blue_sandbox/.abcli/alias.sh
CHANGED
@@ -0,0 +1,21 @@
|
|
1
|
+
#! /usr/bin/env bash
|
2
|
+
|
3
|
+
function blue_sandbox_microsoft_building_damage_assessment_ingest_list() {
|
4
|
+
local options=$1
|
5
|
+
local event_name=$(abcli_option "$options" event all)
|
6
|
+
|
7
|
+
local suffix=$2
|
8
|
+
|
9
|
+
local url="s3://maxar-opendata/events/"
|
10
|
+
|
11
|
+
[[ "$event_name" != all ]] &&
|
12
|
+
url="$url$event_name/ard/"
|
13
|
+
|
14
|
+
[[ ! -z "$suffix" ]] &&
|
15
|
+
url="$url$suffix"
|
16
|
+
|
17
|
+
abcli_eval ,$options \
|
18
|
+
aws s3 ls --no-sign-request $url
|
19
|
+
|
20
|
+
return 0
|
21
|
+
}
|
@@ -2,6 +2,13 @@
|
|
2
2
|
|
3
3
|
function blue_sandbox_microsoft_building_damage_assessment_ingest() {
|
4
4
|
local options=$1
|
5
|
+
|
6
|
+
local show_list=$(abcli_option_int "$options" list 0)
|
7
|
+
if [[ "$show_list" == 1 ]]; then
|
8
|
+
blue_sandbox_microsoft_building_damage_assessment_ingest_list "${@:2}"
|
9
|
+
return
|
10
|
+
fi
|
11
|
+
|
5
12
|
local do_dryrun=$(abcli_option_int "$options" dryrun 0)
|
6
13
|
local do_download=$(abcli_option_int "$options" download $(abcli_not $do_dryrun))
|
7
14
|
local do_gdal=$(abcli_option_int "$options" gdal 1)
|
@@ -19,10 +26,12 @@ function blue_sandbox_microsoft_building_damage_assessment_ingest() {
|
|
19
26
|
pushd $object_path >/dev/null
|
20
27
|
|
21
28
|
# https://github.com/microsoft/building-damage-assessment/blob/main/SATELLITE_WORKFLOW.md#1-image-acquisition-and-label-generation
|
22
|
-
mkdir -pv
|
23
|
-
cd
|
29
|
+
mkdir -pv raw
|
30
|
+
cd raw
|
24
31
|
|
25
32
|
if [[ "$do_download" == 1 ]]; then
|
33
|
+
# TODO: use $event_name and $count (options +=)
|
34
|
+
|
26
35
|
abcli_eval ,$options \
|
27
36
|
wget https://maxar-opendata.s3.amazonaws.com/events/Maui-Hawaii-fires-Aug-23/ard/04/122000330002/2023-08-12/10300100EB15FF00-visual.tif
|
28
37
|
[[ $? -ne 0 ]] && return 1
|
@@ -48,8 +57,6 @@ function blue_sandbox_microsoft_building_damage_assessment_ingest() {
|
|
48
57
|
rm -v maxar_lahaina_8_12_2023-visual.vrt
|
49
58
|
fi
|
50
59
|
|
51
|
-
cd ../../..
|
52
|
-
|
53
60
|
popd >/dev/null
|
54
61
|
|
55
62
|
abcli_eval dryrun=$do_dryrun \
|
@@ -65,3 +72,5 @@ function blue_sandbox_microsoft_building_damage_assessment_ingest() {
|
|
65
72
|
|
66
73
|
return $status
|
67
74
|
}
|
75
|
+
|
76
|
+
abcli_source_caller_suffix_path /ingest
|
@@ -0,0 +1,26 @@
|
|
1
|
+
#! /usr/bin/env bash
|
2
|
+
|
3
|
+
function blue_sandbox_microsoft_building_damage_assessment_label() {
|
4
|
+
local options=$1
|
5
|
+
local do_dryrun=$(abcli_option_int "$options" dryrun 0)
|
6
|
+
local do_download=$(abcli_option_int "$options" download $(abcli_not $do_dryrun))
|
7
|
+
local do_upload=$(abcli_option_int "$options" upload $(abcli_not $do_dryrun))
|
8
|
+
|
9
|
+
local object_name=$(abcli_clarify_object $2 .)
|
10
|
+
[[ "$do_download" == 1 ]] &&
|
11
|
+
abcli_download - $object_name
|
12
|
+
|
13
|
+
abcli_log "labeling $object_name ..."
|
14
|
+
|
15
|
+
abcli_eval dryrun=$do_dryrun \
|
16
|
+
python3 -m blue_sandbox.microsoft_building_damage_assessment \
|
17
|
+
label \
|
18
|
+
--object_name $object_name \
|
19
|
+
"${@:3}"
|
20
|
+
local status="$?"
|
21
|
+
|
22
|
+
[[ "$do_upload" == 1 ]] &&
|
23
|
+
abcli_upload - $object_name
|
24
|
+
|
25
|
+
return $status
|
26
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
#! /usr/bin/env bash
|
2
|
+
|
3
|
+
function test_blue_sandbox_microsoft_building_damage_assessment_ingest_list() {
|
4
|
+
local options=$1
|
5
|
+
|
6
|
+
abcli_eval ,$options \
|
7
|
+
blue_sandbox_microsoft_building_damage_assessment_ingest list
|
8
|
+
[[ $? -ne 0 ]] && return 1
|
9
|
+
|
10
|
+
abcli_eval ,$options \
|
11
|
+
blue_sandbox_microsoft_building_damage_assessment_ingest list \
|
12
|
+
event=Maui-Hawaii-fires-Aug-23
|
13
|
+
[[ $? -ne 0 ]] && return 1
|
14
|
+
|
15
|
+
abcli_eval ,$options \
|
16
|
+
blue_sandbox_microsoft_building_damage_assessment_ingest list \
|
17
|
+
event=Maui-Hawaii-fires-Aug-23 \
|
18
|
+
04/
|
19
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
#! /usr/bin/env bash
|
2
|
+
|
3
|
+
function test_blue_sandbox_microsoft_building_damage_assessment_label() {
|
4
|
+
local options=$1
|
5
|
+
|
6
|
+
abcli_eval ,$options \
|
7
|
+
blue_sandbox_microsoft_building_damage_assessment \
|
8
|
+
label \
|
9
|
+
~upload,$options \
|
10
|
+
$DAMAGES_TEST_DATASET_OBJECT_NAME \
|
11
|
+
"${@:2}"
|
12
|
+
}
|
blue_sandbox/README.py
CHANGED
@@ -11,7 +11,7 @@ from blue_sandbox.microsoft_building_damage_assessment import (
|
|
11
11
|
items = [
|
12
12
|
"{}[`{}`]({}) [![image]({})]({}) {}".format(
|
13
13
|
"🌐",
|
14
|
-
"`@
|
14
|
+
"`@damages`",
|
15
15
|
"https://github.com/kamangir/blue-sandbox/blob/main/blue_sandbox/microsoft_building_damage_assessment/README.md",
|
16
16
|
"https://github.com/microsoft/building-damage-assessment/raw/main/figures/damage.png",
|
17
17
|
"https://github.com/kamangir/blue-sandbox/blob/main/blue_sandbox/microsoft_building_damage_assessment/README.md",
|
blue_sandbox/__init__.py
CHANGED
blue_sandbox/config.env
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
DAMAGES_TEST_DATASET_OBJECT_NAME=Maui-Hawaii-fires-Aug-23-ingest-2025-01-10-qqJqhm
|
blue_sandbox/env.py
CHANGED
@@ -1,11 +1,19 @@
|
|
1
1
|
from typing import Dict
|
2
2
|
|
3
|
+
from blue_sandbox.env import DAMAGES_TEST_DATASET_OBJECT_NAME
|
4
|
+
|
3
5
|
list_of_steps: Dict[str, Dict] = {
|
4
|
-
"ingest":
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
"
|
6
|
+
"ingest": {
|
7
|
+
"object_name": DAMAGES_TEST_DATASET_OBJECT_NAME,
|
8
|
+
"image_name": "Maui-Hawaii-fires-Aug-23-damage-2025-01-09-GgnjQC",
|
9
|
+
},
|
10
|
+
"label": {
|
11
|
+
"object_name": DAMAGES_TEST_DATASET_OBJECT_NAME,
|
12
|
+
"image_name": DAMAGES_TEST_DATASET_OBJECT_NAME,
|
13
|
+
},
|
14
|
+
"train": {"object_name": "", "image_name": ""},
|
15
|
+
"predict": {"object_name": "", "image_name": ""},
|
16
|
+
"summarize": {"object_name": "", "image_name": ""},
|
9
17
|
}
|
10
18
|
|
11
19
|
items = (
|
@@ -13,22 +21,22 @@ items = (
|
|
13
21
|
+ [
|
14
22
|
(
|
15
23
|
"[`{}`](https://kamangir-public.s3.ca-central-1.amazonaws.com/{}.tar.gz)".format(
|
16
|
-
object_name,
|
17
|
-
|
24
|
+
step["object_name"],
|
25
|
+
step["image_name"],
|
18
26
|
)
|
19
|
-
if object_name
|
27
|
+
if step["object_name"]
|
20
28
|
else ""
|
21
29
|
)
|
22
|
-
for
|
30
|
+
for step in list_of_steps.values()
|
23
31
|
]
|
24
32
|
+ [
|
25
33
|
(
|
26
|
-
"
|
27
|
-
|
34
|
+
"![image](https://github.com/kamangir/assets/blob/main/blue-sandbox/{}.png?raw=true)".format(
|
35
|
+
step["image_name"],
|
28
36
|
)
|
29
|
-
if
|
37
|
+
if step["image_name"]
|
30
38
|
else ""
|
31
39
|
)
|
32
|
-
for
|
40
|
+
for step in list_of_steps.values()
|
33
41
|
]
|
34
42
|
)
|
@@ -5,6 +5,7 @@ from blueness.argparse.generic import sys_exit
|
|
5
5
|
|
6
6
|
from blue_sandbox import NAME
|
7
7
|
from blue_sandbox.microsoft_building_damage_assessment.ingest import ingest
|
8
|
+
from blue_sandbox.microsoft_building_damage_assessment.label import label
|
8
9
|
from blue_sandbox.help.microsoft_building_damage_assessment import list_of_events
|
9
10
|
from blue_sandbox.logger import logger
|
10
11
|
|
@@ -14,7 +15,7 @@ parser = argparse.ArgumentParser(NAME)
|
|
14
15
|
parser.add_argument(
|
15
16
|
"task",
|
16
17
|
type=str,
|
17
|
-
help="ingest",
|
18
|
+
help="ingest | label",
|
18
19
|
)
|
19
20
|
parser.add_argument(
|
20
21
|
"--object_name",
|
@@ -41,6 +42,11 @@ if args.task == "ingest":
|
|
41
42
|
event_name=args.event_name,
|
42
43
|
verbose=args.verbose == 1,
|
43
44
|
)
|
45
|
+
elif args.task == "label":
|
46
|
+
success = label(
|
47
|
+
object_name=args.object_name,
|
48
|
+
verbose=args.verbose == 1,
|
49
|
+
)
|
44
50
|
else:
|
45
51
|
success = None
|
46
52
|
|
@@ -1,5 +1,7 @@
|
|
1
1
|
from blueness import module
|
2
2
|
|
3
|
+
from blue_objects import mlflow, metadata
|
4
|
+
|
3
5
|
from blue_sandbox import NAME
|
4
6
|
from blue_sandbox.logger import logger
|
5
7
|
|
@@ -14,6 +16,16 @@ def ingest(
|
|
14
16
|
) -> bool:
|
15
17
|
logger.info(f"{NAME}.ingest({event_name}) -> {object_name}")
|
16
18
|
|
17
|
-
|
18
|
-
|
19
|
-
|
19
|
+
return all(
|
20
|
+
[
|
21
|
+
mlflow.set_tags(
|
22
|
+
object_name,
|
23
|
+
{"event": event_name},
|
24
|
+
),
|
25
|
+
metadata.post_to_object(
|
26
|
+
object_name,
|
27
|
+
"ingest",
|
28
|
+
{"event": event_name},
|
29
|
+
),
|
30
|
+
]
|
31
|
+
)
|
@@ -0,0 +1,38 @@
|
|
1
|
+
import os
|
2
|
+
|
3
|
+
from blueness import module
|
4
|
+
from blue_objects import metadata, file, objects
|
5
|
+
from blue_objects.env import abcli_path_git
|
6
|
+
|
7
|
+
from blue_sandbox import NAME
|
8
|
+
from blue_sandbox.logger import logger
|
9
|
+
|
10
|
+
|
11
|
+
NAME = module.name(__file__, NAME)
|
12
|
+
|
13
|
+
|
14
|
+
def label(
|
15
|
+
object_name: str,
|
16
|
+
verbose: bool = False,
|
17
|
+
) -> bool:
|
18
|
+
logger.info(f"{NAME}.label: {object_name}")
|
19
|
+
|
20
|
+
geojson_filename = os.path.join(
|
21
|
+
abcli_path_git,
|
22
|
+
"building-damage-assessment/data/demo/labels/Maui_Wildfires_August_0.geojson",
|
23
|
+
)
|
24
|
+
|
25
|
+
if not file.copy(
|
26
|
+
geojson_filename,
|
27
|
+
objects.path_of(
|
28
|
+
filename="label.geojson",
|
29
|
+
object_name=object_name,
|
30
|
+
),
|
31
|
+
):
|
32
|
+
return False
|
33
|
+
|
34
|
+
return metadata.post_to_object(
|
35
|
+
object_name,
|
36
|
+
"label",
|
37
|
+
{"geojson": geojson_filename},
|
38
|
+
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: blue_sandbox
|
3
|
-
Version: 5.
|
3
|
+
Version: 5.61.1
|
4
4
|
Summary: 🌀 A sandbox for ideas and experiments.
|
5
5
|
Home-page: https://github.com/kamangir/blue-sandbox
|
6
6
|
Author: Arash Abadpour (Kamangir)
|
@@ -14,6 +14,7 @@ Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
15
15
|
Requires-Dist: blueness
|
16
16
|
Requires-Dist: blue-options
|
17
|
+
Requires-Dist: blue_objects
|
17
18
|
Requires-Dist: abcli
|
18
19
|
Requires-Dist: boto3
|
19
20
|
Requires-Dist: geojson
|
@@ -47,11 +48,11 @@ pip install blue-sandbox
|
|
47
48
|
|
48
49
|
| | | |
|
49
50
|
| --- | --- | --- |
|
50
|
-
| 🌐[``@
|
51
|
+
| 🌐[``@damages``](https://github.com/kamangir/blue-sandbox/blob/main/blue_sandbox/microsoft_building_damage_assessment/README.md) [![image](https://github.com/microsoft/building-damage-assessment/raw/main/figures/damage.png)](https://github.com/kamangir/blue-sandbox/blob/main/blue_sandbox/microsoft_building_damage_assessment/README.md) Satellite imagery damage assessment workflow | 🌀[`experiment 2`](#) [![image](https://github.com/kamangir/assets/raw/main/blue-plugin/marquee.png?raw=true)](#) description of experiment 2 ... | 🌀[`experiment 3`](#) [![image](https://github.com/kamangir/assets/raw/main/blue-plugin/marquee.png?raw=true)](#) description of experiment 3 ... |
|
51
52
|
|
52
53
|
---
|
53
54
|
|
54
55
|
|
55
56
|
[![pylint](https://github.com/kamangir/blue-sandbox/actions/workflows/pylint.yml/badge.svg)](https://github.com/kamangir/blue-sandbox/actions/workflows/pylint.yml) [![pytest](https://github.com/kamangir/blue-sandbox/actions/workflows/pytest.yml/badge.svg)](https://github.com/kamangir/blue-sandbox/actions/workflows/pytest.yml) [![bashtest](https://github.com/kamangir/blue-sandbox/actions/workflows/bashtest.yml/badge.svg)](https://github.com/kamangir/blue-sandbox/actions/workflows/bashtest.yml) [![PyPI version](https://img.shields.io/pypi/v/blue-sandbox.svg)](https://pypi.org/project/blue-sandbox/) [![PyPI - Downloads](https://img.shields.io/pypi/dd/blue-sandbox)](https://pypistats.org/packages/blue-sandbox)
|
56
57
|
|
57
|
-
built by 🌀 [`blue_options-4.
|
58
|
+
built by 🌀 [`blue_options-4.180.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`blue_sandbox-5.61.1`](https://github.com/kamangir/blue-sandbox).
|
@@ -1,8 +1,8 @@
|
|
1
|
-
blue_sandbox/README.py,sha256=
|
2
|
-
blue_sandbox/__init__.py,sha256=
|
1
|
+
blue_sandbox/README.py,sha256=Q45yMxvgjPLPQAZCRzMQZx7Znxa0OAOaf3PZNvdaAyc,1563
|
2
|
+
blue_sandbox/__init__.py,sha256=PBOIZ8-3TUnl55Va85G6Nei76QFokd4SvH4mwVsMyxM,322
|
3
3
|
blue_sandbox/__main__.py,sha256=aPRHSpGpk-bDbzhHpfLNsd3y1gGEHpnhoTF-RBweNwc,361
|
4
|
-
blue_sandbox/config.env,sha256=
|
5
|
-
blue_sandbox/env.py,sha256=
|
4
|
+
blue_sandbox/config.env,sha256=SHQeFdzivHKDimmTyHzVziCfAONN48DSDmc3WVG6gEw,82
|
5
|
+
blue_sandbox/env.py,sha256=EkFH_CX0foWzDaZrirjJpCKu_4wuvfLGqImmqnJMejk,201
|
6
6
|
blue_sandbox/functions.py,sha256=U41kQFNPpfYV6KJpMnkqgqLkozqXiG4tgV6rj8IW1BU,7
|
7
7
|
blue_sandbox/host.py,sha256=uJpiM105rnm6ySF16zA7waWekGBdec-dlpoRRU_QqwU,210
|
8
8
|
blue_sandbox/logger.py,sha256=ZoFrTIfJJGNtZUm2d7lkQjdB2SPl_KBKDmHJOcIivPM,107
|
@@ -11,26 +11,30 @@ blue_sandbox/urls.py,sha256=tIZ36ONJEoUBM-tFhOpkVhLwb1OgLegUeEaBDqW4USM,24
|
|
11
11
|
blue_sandbox/.abcli/abcli.sh,sha256=xsJ4IzuQsvLZog6U8VTBFVXsEi6ADe13L8rn47XtlbU,196
|
12
12
|
blue_sandbox/.abcli/actions.sh,sha256=vImEUI105GRcxs2mAKGMqcvoErtmOPZZ-7dfSmUUxvE,230
|
13
13
|
blue_sandbox/.abcli/aka.sh,sha256=RHDU_JbEEL2B0vvvRJ3NVSsRSEjSu09jNY85n7DLe-k,21
|
14
|
-
blue_sandbox/.abcli/alias.sh,sha256=
|
14
|
+
blue_sandbox/.abcli/alias.sh,sha256=q8j-uG7c0ZLp5BZhBKTXyESjMa_kcEH5Mf8pX4EgC7A,118
|
15
15
|
blue_sandbox/.abcli/blue_sandbox.sh,sha256=PGRJOgNGlC3XL5cw4ecZH40LDuc_6NVazTKhCWtZ-3g,233
|
16
16
|
blue_sandbox/.abcli/browse.sh,sha256=f8qa4qDVts2Am6_ldDwNeJXzhBQTk9PUKl0-a9wW1ww,287
|
17
17
|
blue_sandbox/.abcli/install.sh,sha256=gRbmZfSMWd7RlmQaaXqQKuzuG9EXXA4at1R3KUfQ-qU,263
|
18
18
|
blue_sandbox/.abcli/microsoft_building_damage_assessment.sh,sha256=wIP7BvltFj3Gx5VmSgT6hY67K1BnubELef93HHwKOU0,470
|
19
|
-
blue_sandbox/.abcli/microsoft_building_damage_assessment/ingest.sh,sha256=
|
19
|
+
blue_sandbox/.abcli/microsoft_building_damage_assessment/ingest.sh,sha256=w_EUK_i4iSBpSy22TeexfF9jEAqzNwZuvjhpRraGKhA,2662
|
20
|
+
blue_sandbox/.abcli/microsoft_building_damage_assessment/label.sh,sha256=RROjENj93FhCBOkbe8K05e1fR5QNny0syobkX14rwho,795
|
21
|
+
blue_sandbox/.abcli/microsoft_building_damage_assessment/ingest/list.sh,sha256=9bEjpbwO7Heqd-E2RTM-ck4Q39Eqsv4ged6e0WmxmSs,452
|
20
22
|
blue_sandbox/.abcli/tests/README.sh,sha256=rmJM-BPnTcmpPbJ5GXsF8vd_a84JKryeKkZyVScUing,145
|
21
|
-
blue_sandbox/.abcli/tests/help.sh,sha256=
|
23
|
+
blue_sandbox/.abcli/tests/help.sh,sha256=Nz7paLJB7fSthgfgBf4VGO6xcIs4Gt9OXeH-hQle_0M,434
|
22
24
|
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_ingest.sh,sha256=oUUF8Kuyohxiqxo9FLY9EO0qlgkagntgfuFda6niHeM,426
|
25
|
+
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_ingest_list.sh,sha256=5P0H-FHV7YKt1fenXAs_0cSFhJYWZ9u3LzRpfSRSptw,577
|
26
|
+
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_label.sh,sha256=Envac5i9eGa5usDCO8MYfGFfyAZAT-f0KrrsAkaR91U,311
|
23
27
|
blue_sandbox/.abcli/tests/version.sh,sha256=jF8zoJN1eKE3LfDeRVG9uHEosmEVJX6RtKfdioyeN-o,150
|
24
28
|
blue_sandbox/help/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
25
29
|
blue_sandbox/help/__main__.py,sha256=3Cqp5oISrZCOUApmwoQoCj_0sQgtkiEkm_ob3LFKzRE,234
|
26
30
|
blue_sandbox/help/functions.py,sha256=Ki0nUGyHKDo2t0WnIVzBwxEVJHyRmHh-hIRv3ohJK3c,431
|
27
|
-
blue_sandbox/
|
28
|
-
blue_sandbox/microsoft_building_damage_assessment/README.py,sha256=AyZs8uYpZ7XSYs--5HkMHwgCfZZM1n_E-YWNZ6ncaO4,842
|
31
|
+
blue_sandbox/microsoft_building_damage_assessment/README.py,sha256=9-nfIbvfkOtFubKjuCheWZjWmjIXt559exBvLqb5x_s,1234
|
29
32
|
blue_sandbox/microsoft_building_damage_assessment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
|
-
blue_sandbox/microsoft_building_damage_assessment/__main__.py,sha256=
|
31
|
-
blue_sandbox/microsoft_building_damage_assessment/ingest.py,sha256=
|
32
|
-
blue_sandbox
|
33
|
-
blue_sandbox-5.
|
34
|
-
blue_sandbox-5.
|
35
|
-
blue_sandbox-5.
|
36
|
-
blue_sandbox-5.
|
33
|
+
blue_sandbox/microsoft_building_damage_assessment/__main__.py,sha256=fOx7ijbm8SII94qqafU7sV6mT3MRYbq2RRvaZb4QR-E,1218
|
34
|
+
blue_sandbox/microsoft_building_damage_assessment/ingest.py,sha256=tBchn4dWPIqArwAe8JjEM2xZZlFtrgBRDV_Ko26OEiM,639
|
35
|
+
blue_sandbox/microsoft_building_damage_assessment/label.py,sha256=mpRNOsF8ChxSLwOyvwGmXiD7aO2xfivJPZTC5qwnLaw,823
|
36
|
+
blue_sandbox-5.61.1.dist-info/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
37
|
+
blue_sandbox-5.61.1.dist-info/METADATA,sha256=J3rNu-FENZdGbH_QQ5rKLOIrm0oaCumgzsWfu9tKJUI,2785
|
38
|
+
blue_sandbox-5.61.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
39
|
+
blue_sandbox-5.61.1.dist-info/top_level.txt,sha256=4D9Cb9QUCaqdYAmBiCwvtlaYBtUYVVxv0Sxcr_pzgS8,13
|
40
|
+
blue_sandbox-5.61.1.dist-info/RECORD,,
|
@@ -1,42 +0,0 @@
|
|
1
|
-
from typing import List
|
2
|
-
|
3
|
-
from blue_options.terminal import show_usage, xtra
|
4
|
-
|
5
|
-
list_of_events = ["Maui-Hawaii-fires-Aug-23"]
|
6
|
-
|
7
|
-
|
8
|
-
def help_ingest(
|
9
|
-
tokens: List[str],
|
10
|
-
mono: bool,
|
11
|
-
) -> str:
|
12
|
-
options = "".join(
|
13
|
-
[
|
14
|
-
xtra("~download,dryrun,", mono=mono),
|
15
|
-
"event=<event>",
|
16
|
-
xtra(",~gdal,~rm,~upload", mono=mono),
|
17
|
-
]
|
18
|
-
)
|
19
|
-
|
20
|
-
args = [
|
21
|
-
"[--verbose 1]",
|
22
|
-
]
|
23
|
-
|
24
|
-
return show_usage(
|
25
|
-
[
|
26
|
-
"@damage",
|
27
|
-
"ingest",
|
28
|
-
f"[{options}]",
|
29
|
-
"[-|<object-name>]",
|
30
|
-
]
|
31
|
-
+ args,
|
32
|
-
"ingest <event> -> <object-name>.",
|
33
|
-
{
|
34
|
-
"event: {}".format(" | ".join(list_of_events)): [],
|
35
|
-
},
|
36
|
-
mono=mono,
|
37
|
-
)
|
38
|
-
|
39
|
-
|
40
|
-
help_functions = {
|
41
|
-
"ingest": help_ingest,
|
42
|
-
}
|
File without changes
|
File without changes
|
File without changes
|