blue-sandbox 5.38.1__py3-none-any.whl → 5.47.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/microsoft_building_damage_assessment/ingest/list.sh +21 -0
- blue_sandbox/.abcli/microsoft_building_damage_assessment/ingest.sh +11 -0
- blue_sandbox/.abcli/tests/help.sh +1 -0
- blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_ingest_list.sh +19 -0
- blue_sandbox/__init__.py +1 -1
- {blue_sandbox-5.38.1.dist-info → blue_sandbox-5.47.1.dist-info}/METADATA +2 -2
- {blue_sandbox-5.38.1.dist-info → blue_sandbox-5.47.1.dist-info}/RECORD +10 -9
- blue_sandbox/help/microsoft_building_damage_assessment.py +0 -42
- {blue_sandbox-5.38.1.dist-info → blue_sandbox-5.47.1.dist-info}/LICENSE +0 -0
- {blue_sandbox-5.38.1.dist-info → blue_sandbox-5.47.1.dist-info}/WHEEL +0 -0
- {blue_sandbox-5.38.1.dist-info → blue_sandbox-5.47.1.dist-info}/top_level.txt +0 -0
@@ -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)
|
@@ -23,6 +30,8 @@ function blue_sandbox_microsoft_building_damage_assessment_ingest() {
|
|
23
30
|
cd data/demo/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
|
@@ -65,3 +74,5 @@ function blue_sandbox_microsoft_building_damage_assessment_ingest() {
|
|
65
74
|
|
66
75
|
return $status
|
67
76
|
}
|
77
|
+
|
78
|
+
abcli_source_caller_suffix_path /ingest
|
@@ -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
|
+
}
|
blue_sandbox/__init__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: blue_sandbox
|
3
|
-
Version: 5.
|
3
|
+
Version: 5.47.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)
|
@@ -54,4 +54,4 @@ pip install blue-sandbox
|
|
54
54
|
|
55
55
|
[![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
56
|
|
57
|
-
built by 🌀 [`blue_options-4.177.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`blue_sandbox-5.
|
57
|
+
built by 🌀 [`blue_options-4.177.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`blue_sandbox-5.47.1`](https://github.com/kamangir/blue-sandbox).
|
@@ -1,5 +1,5 @@
|
|
1
1
|
blue_sandbox/README.py,sha256=gHxb5Czp9oyNZykiCKtI9Qnx08QJab8Ht9znKxHMkPs,1562
|
2
|
-
blue_sandbox/__init__.py,sha256=
|
2
|
+
blue_sandbox/__init__.py,sha256=yAwWd5-dAV4y8R3MW_B3K5FX1Hf7ZNCSnuNJCfrS_co,322
|
3
3
|
blue_sandbox/__main__.py,sha256=aPRHSpGpk-bDbzhHpfLNsd3y1gGEHpnhoTF-RBweNwc,361
|
4
4
|
blue_sandbox/config.env,sha256=89ao50sGXYWiU-NMV_fUVXAXdTHKKfWV03BY3_p6EOE,25
|
5
5
|
blue_sandbox/env.py,sha256=ljEErQJNy0cdSvPpJ_ziMNvXK6Qlvi_8VBgTqjSm2uk,173
|
@@ -16,21 +16,22 @@ blue_sandbox/.abcli/blue_sandbox.sh,sha256=PGRJOgNGlC3XL5cw4ecZH40LDuc_6NVazTKhC
|
|
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=7ctyhe8wJ4RDJTOsrQ26FSYvtSizgBysSCGzL7Ap8f8,2701
|
20
|
+
blue_sandbox/.abcli/microsoft_building_damage_assessment/ingest/list.sh,sha256=9bEjpbwO7Heqd-E2RTM-ck4Q39Eqsv4ged6e0WmxmSs,452
|
20
21
|
blue_sandbox/.abcli/tests/README.sh,sha256=rmJM-BPnTcmpPbJ5GXsF8vd_a84JKryeKkZyVScUing,145
|
21
|
-
blue_sandbox/.abcli/tests/help.sh,sha256=
|
22
|
+
blue_sandbox/.abcli/tests/help.sh,sha256=ULiOsZDZ-M2T7fFoCZk3xyBNmJchFeizV_x_WHVqCko,404
|
22
23
|
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_ingest.sh,sha256=oUUF8Kuyohxiqxo9FLY9EO0qlgkagntgfuFda6niHeM,426
|
24
|
+
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_ingest_list.sh,sha256=5P0H-FHV7YKt1fenXAs_0cSFhJYWZ9u3LzRpfSRSptw,577
|
23
25
|
blue_sandbox/.abcli/tests/version.sh,sha256=jF8zoJN1eKE3LfDeRVG9uHEosmEVJX6RtKfdioyeN-o,150
|
24
26
|
blue_sandbox/help/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
25
27
|
blue_sandbox/help/__main__.py,sha256=3Cqp5oISrZCOUApmwoQoCj_0sQgtkiEkm_ob3LFKzRE,234
|
26
28
|
blue_sandbox/help/functions.py,sha256=Ki0nUGyHKDo2t0WnIVzBwxEVJHyRmHh-hIRv3ohJK3c,431
|
27
|
-
blue_sandbox/help/microsoft_building_damage_assessment.py,sha256=3Q9oEVe8EyniQ1eue3SN_S95Akr-Yo9jvOHmypLB2uc,785
|
28
29
|
blue_sandbox/microsoft_building_damage_assessment/README.py,sha256=AyZs8uYpZ7XSYs--5HkMHwgCfZZM1n_E-YWNZ6ncaO4,842
|
29
30
|
blue_sandbox/microsoft_building_damage_assessment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
31
|
blue_sandbox/microsoft_building_damage_assessment/__main__.py,sha256=rjjr-csHJd2jgO2GDlnAbbQAO_zbaXwA7n6Ce0UX0lM,1009
|
31
32
|
blue_sandbox/microsoft_building_damage_assessment/ingest.py,sha256=F5GBHZ6s6QebC-w9e4QsRiQ6ZKxXjFbqckZqV8HDU1s,337
|
32
|
-
blue_sandbox-5.
|
33
|
-
blue_sandbox-5.
|
34
|
-
blue_sandbox-5.
|
35
|
-
blue_sandbox-5.
|
36
|
-
blue_sandbox-5.
|
33
|
+
blue_sandbox-5.47.1.dist-info/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
34
|
+
blue_sandbox-5.47.1.dist-info/METADATA,sha256=bC0hgpyotWeXyJ5d4tZVHOBdGX52KfabS3PtxkD85uQ,2756
|
35
|
+
blue_sandbox-5.47.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
36
|
+
blue_sandbox-5.47.1.dist-info/top_level.txt,sha256=4D9Cb9QUCaqdYAmBiCwvtlaYBtUYVVxv0Sxcr_pzgS8,13
|
37
|
+
blue_sandbox-5.47.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
|