-
Notifications
You must be signed in to change notification settings - Fork 0
Changes to get feijoa demo working with 621-outside map #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
NishanthJKumar
wants to merge
7
commits into
main
Choose a base branch
from
spot-planning-hacking
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
64fa926
new changes
NishanthJKumar 1aca6e9
edit readme
NishanthJKumar 86dfc3c
working demo!
NishanthJKumar 697d7c5
Update Spot map record instructions
williamshen-nz b8d45c2
Stow arm before doing stuff
williamshen-nz 99474aa
Add gemini pointing
williamshen-nz 4f0d16a
Local changes to exec plan
williamshen-nz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,3 +11,7 @@ __pycache__ | |
| *.so | ||
| demonstrations/* | ||
| plan.txt | ||
|
|
||
| # Jetbrains | ||
| .idea/ | ||
| *.iml | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,98 @@ | ||
| import json | ||
| from typing import Tuple | ||
|
|
||
| import PIL | ||
|
|
||
| from spot_utils.pretrained_model_interface import GoogleGeminiVLM | ||
|
|
||
|
|
||
| def get_pixel_from_gemini( | ||
| vlm_query_str: str, pil_image: PIL.Image.Image | ||
| ) -> Tuple[int, int]: | ||
| # Assuming create_vlm_by_name exists and works like create_llm_by_name | ||
| # Use the specific model name from CFG or hardcode if necessary | ||
| vlm = GoogleGeminiVLM("gemini-1.5-flash") | ||
|
|
||
| # 2. Construct the query | ||
| # Adjust prompt as needed for better VLM performance | ||
| def parse_json_output(json_output_str): | ||
| # Parsing out the markdown fencing | ||
| lines = json_output_str.splitlines() | ||
| for i, line in enumerate(lines): | ||
| if line.strip() == "```json": | ||
| json_output_str = "\n".join(lines[i + 1 :]) | ||
| json_output_str = json_output_str.split("```")[0] | ||
| break | ||
| json_output_str = json_output_str.strip() | ||
| return json_output_str | ||
|
|
||
| # 3. Query the VLM | ||
| # Assuming sample_completions takes a list of images | ||
| vlm_output_list = vlm.sample_completions( | ||
| prompt=vlm_query_str, | ||
| imgs=[pil_image], | ||
| temperature=0.0, # Low temp for deterministic output | ||
| seed=42, | ||
| num_completions=1, | ||
| ) | ||
| vlm_output_str = vlm_output_list[0] | ||
| # 4. Parse the JSON string | ||
| json_string_to_parse = parse_json_output(vlm_output_str) | ||
| parsed_data = json.loads(json_string_to_parse) | ||
| # 5. Extract and denormalize coordinates | ||
| if not isinstance(parsed_data, list) or not parsed_data: | ||
| raise ValueError("Parsed JSON is not a non-empty list.") | ||
| # Assuming the first point is the desired one | ||
| first_point_obj = parsed_data[0] | ||
| if ( | ||
| "point" not in first_point_obj | ||
| or not isinstance(first_point_obj["point"], list) | ||
| or len(first_point_obj["point"]) != 2 | ||
| ): | ||
| raise ValueError( | ||
| "First element in JSON does not contain a valid 'point' list [y, x]." | ||
| ) | ||
| y_norm, x_norm = first_point_obj["point"] | ||
| if not isinstance(y_norm, (int, float)) or not isinstance(x_norm, (int, float)): | ||
| raise ValueError("Normalized coordinates are not numbers.") | ||
| # Denormalize from 0-1000 range to image pixel coordinates | ||
| img_height = pil_image.height | ||
| img_width = pil_image.width | ||
| y = int(y_norm * img_height / 1000.0) | ||
| x = int(x_norm * img_width / 1000.0) | ||
| # Clamp coordinates to be within image bounds | ||
| y = max(0, min(y, img_height - 1)) | ||
| x = max(0, min(x, img_width - 1)) | ||
| # Assign to the 'pixel' variable in (x, y) format | ||
| pixel = (x, y) | ||
| return pixel | ||
|
|
||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| import logging | ||
| import rerun as rr | ||
| from PIL import Image | ||
| import cv2 | ||
| import numpy as np | ||
|
|
||
|
|
||
| rr.init("gemini_test", spawn=True) | ||
| logging.basicConfig(level=logging.DEBUG) | ||
|
|
||
| pil_image = Image.open("388885845015.jpg") | ||
|
|
||
| vlm_query_template = """ | ||
| Point to the human. | ||
| The answer should follow the json format: [{"point": , "label": }, ...]. The points are in [y, x] format normalized to 0-1000. | ||
| """ | ||
|
|
||
| pixel = get_pixel_from_gemini(vlm_query_template, pil_image) | ||
|
|
||
| image_np = np.asarray(pil_image) | ||
| bgr = cv2.cvtColor(image_np, cv2.COLOR_RGB2BGR) | ||
| cv2.circle(bgr, pixel, 5, (0, 0, 255), -1) | ||
|
|
||
| rgb = cv2.cvtColor(bgr, cv2.COLOR_BGR2RGB) | ||
| rr.log("rgb", rr.Image(rgb)) | ||
| print() |
Binary file removed
BIN
-638 Bytes
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_adept-howler-YbvTcqCtXriq5lEM+pZLSw==
Binary file not shown.
Binary file added
BIN
+3.46 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_afeard-virus-2IW0gjb5GvG+pLT4WCuFgw==
Binary file not shown.
Binary file added
BIN
+1.47 KB
..._nav_maps/outside-621/edge_snapshots/edge_snapshot_id_agape-vole-jyULRdSe9cwI+JzyijgyWw==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_alpine-redbug-Ufs0bUnx5yFGS.onKGHGcQ==
Binary file not shown.
Binary file added
BIN
+928 Bytes
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_amuck-pincer-CaANgemgb8FUWKm1Wfctvw==
Binary file not shown.
2 changes: 2 additions & 0 deletions
2
..._nav_maps/outside-621/edge_snapshots/edge_snapshot_id_ane-syphon-WgF8TQA5by29Onmt7bAc7w==
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
|
|
||
| 4edge_snapshot_id_ane-syphon-WgF8TQA5by29Onmt7bAc7w== |
Binary file added
BIN
+2.04 KB
...h_nav_maps/outside-621/edge_snapshots/edge_snapshot_id_bass-swan-pOGVlHoh+p9.sfg21c+1PQ==
Binary file not shown.
Binary file removed
BIN
-4.03 KB
...h_nav_maps/outside-621/edge_snapshots/edge_snapshot_id_bay-otter-ZBKRwUdyG0ZPTEEP.cSLyw==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_blamed-oxen-u.QhCK43qTi8CfqPZC0h8w==
Binary file not shown.
Binary file added
BIN
+927 Bytes
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_bogus-horse-EaZCYpJtWDVHX2x4sES4UQ==
Binary file not shown.
Binary file added
BIN
+925 Bytes
...h_nav_maps/outside-621/edge_snapshots/edge_snapshot_id_broke-gnu-WZG.9vvJTOaMhHRjiL9FJw==
Binary file not shown.
Binary file added
BIN
+1.48 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_calico-cicada-aZ6Ch+oC72x3lAXeq76FKQ==
Binary file not shown.
Binary file added
BIN
+2.04 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_canty-algae-.+XOQfS8wjcSaSWpcKURJg==
Binary file not shown.
2 changes: 2 additions & 0 deletions
2
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_carven-angler-6dUv3NnhHWdPOOU36y+eEw==
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
|
|
||
| 7edge_snapshot_id_carven-angler-6dUv3NnhHWdPOOU36y+eEw== |
Binary file added
BIN
+2.33 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_cedarn-donkey-ZPVlN1hBjFTQpLVu28D.BA==
Binary file not shown.
Binary file removed
BIN
-2.89 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_chance-medusa-i6872KHXf.wn4p1QmkHUKQ==
Binary file not shown.
Binary file added
BIN
+4.31 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_cheesy-deer-DbEFgb6dP3VNbKrM+27XIQ==
Binary file not shown.
Binary file added
BIN
+1.48 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_craven-marten-HMbnyT9HYhX1f+kxrj5sDw==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_crispy-heron-YQ217HRbaiubpDleBLetVw==
Binary file not shown.
Binary file removed
BIN
-1.19 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_crispy-wren-fpPS1a1rjyX9lC6hoGlpEA==
Binary file not shown.
Binary file removed
BIN
-3.46 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_croaky-botfly-u4d29npl+3LnsMnEX.AC0w==
Binary file not shown.
Binary file added
BIN
+2.04 KB
..._nav_maps/outside-621/edge_snapshots/edge_snapshot_id_cusped-moa-+QAF995jsnyScMbk5LUaWg==
Binary file not shown.
Binary file added
BIN
+1.76 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_daft-gerbil-lQJjcmGBydZLtAK2XuTuTQ==
Binary file not shown.
Binary file added
BIN
+2.04 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_dandy-earwig-pmpgzruMc+mIplotCK93rg==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_dexter-vole-..IzJb6AIbZlo5iDiSqezg==
Binary file not shown.
Binary file removed
BIN
-1.76 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_dilute-sponge-zFFUJaeCHqMsroI2Yxt78A==
Binary file not shown.
Binary file added
BIN
+1.47 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_doughy-biped-pongY1K1gaR8GuXurDkDkQ==
Binary file not shown.
Binary file removed
BIN
-2.04 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_dovish-baboon-zhcbBhRPf3hK0z2TL9h1.A==
Binary file not shown.
Binary file added
BIN
+2.61 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_earned-cocoon-dQk3x7UuaL3UNwSRsEp4Yg==
Binary file not shown.
Binary file removed
BIN
-1.19 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_eight-beagle-jxYWPrZUPnxHomt.9Hsc+A==
Binary file not shown.
Binary file added
BIN
+346 Bytes
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_eroded-mamba-ynF16.qX6EGwZLi0f9oZyw==
Binary file not shown.
Binary file added
BIN
+2.04 KB
...h_nav_maps/outside-621/edge_snapshots/edge_snapshot_id_fazed-pug-U9BfDdVyN.WVrWLcbNWtGw==
Binary file not shown.
Binary file added
BIN
+1.19 KB
..._nav_maps/outside-621/edge_snapshots/edge_snapshot_id_fitter-owl-HAxwkm+dCvDVITomlqX0tA==
Binary file not shown.
Binary file removed
BIN
-928 Bytes
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_foster-cicada-jkwK1k2HnnAfgtSGk.ukAw==
Binary file not shown.
Binary file removed
BIN
-1.19 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_found-mayfly-J0fepk5OSM9NXOZUAd3S8g==
Binary file not shown.
Binary file added
BIN
+925 Bytes
...h_nav_maps/outside-621/edge_snapshots/edge_snapshot_id_foxy-tern-zxMPJyAiydACbMHEWxSakQ==
Binary file not shown.
Binary file added
BIN
+2.61 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_frumpy-agouti-ZAVsmjiVjIUhsT5Wn4fDoA==
Binary file not shown.
Binary file removed
BIN
-3.46 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_furred-snake-fG7HKJz04+c2HBYluXXvSA==
Binary file not shown.
Binary file removed
BIN
-1.76 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_fused-basset-IS8SX9qwgtxi3oSD81t4Lw==
Binary file not shown.
Binary file added
BIN
+2.33 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_garbed-turtle-0Rx9ca5rcZ0q6HqYBTuUNg==
Binary file not shown.
Binary file added
BIN
+637 Bytes
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_garish-hydra-aJeii9l8.vdpYz0fS5GCYg==
Binary file not shown.
Binary file added
BIN
+3.18 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_glary-cicada-pmNy8PJLwbdDxU0v9BMsoQ==
Binary file not shown.
Binary file added
BIN
+2.33 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_greyed-conger-sbzlVD2p5H2YAdXvQALpkw==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_humped-hydra-LlYuqGUn.bYEThxlOf7.2w==
Binary file not shown.
Binary file added
BIN
+3.46 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_inky-guinea-vo.4MI9QVWyHU+ioiSdDRw==
Binary file not shown.
Binary file removed
BIN
-346 Bytes
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_ivied-snail-N.8pjg9qjnOBpqYzF4PrBg==
Binary file not shown.
Binary file added
BIN
+1.76 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_jovial-mule-JSNKZQ26IOcvRkuh9QG3.w==
Binary file not shown.
Binary file removed
BIN
-1.47 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_joyous-embryo-imOlceOSoiDt0arlYMPp5Q==
Binary file not shown.
Binary file added
BIN
+926 Bytes
..._nav_maps/outside-621/edge_snapshots/edge_snapshot_id_jural-fowl-vA.Vyn4dBkZ0Ib0symwjpw==
Binary file not shown.
Binary file added
BIN
+1.76 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_larval-otus-oOpEdF74zgUh6hOOWD1nrQ==
Binary file not shown.
Binary file added
BIN
+928 Bytes
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_latter-nasua-mwjPMxxeQ0vMH56lOI8sHA==
Binary file not shown.
Binary file added
BIN
+1.76 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_legged-guppy-zqZCa09C9Sm6e1551JpksQ==
Binary file not shown.
Binary file added
BIN
+345 Bytes
..._nav_maps/outside-621/edge_snapshots/edge_snapshot_id_lithe-lion-9zIOzpbRL117agmYPigpKQ==
Binary file not shown.
Binary file added
BIN
+346 Bytes
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_loamy-gecko-MSLy5sojuEy4jukJvqzGnA==
Binary file not shown.
Binary file added
BIN
+1.76 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_lunate-colt-yW.dhLlnQWKvntYjjTHAdw==
Binary file not shown.
Binary file added
BIN
+637 Bytes
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_madcap-drone-5HViY5xw4nX6Q9cXuCY58A==
Binary file not shown.
Binary file removed
BIN
-1.47 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_manky-crake-FjteFOCvEtsThEDyO5Nktw==
Binary file not shown.
Binary file added
BIN
+2.61 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_melted-hornet-Zd5DeRA1vo2ZqqJR.mGaAA==
Binary file not shown.
Binary file added
BIN
+1.47 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_menial-mink-cbV+Wrywl8o5SCLlfWPCvA==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_metal-vermin-PnsjTI0Nn3gw8+Ho3ZpcnQ==
Binary file not shown.
Binary file added
BIN
+2.89 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_mimic-beagle-T0fqGm7fF76+VDADOH3sTA==
Binary file not shown.
Binary file removed
BIN
-1.19 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_missed-angler-Qn1l0yjLJo4HJ2Cy4rNizA==
Binary file not shown.
Binary file added
BIN
+1.47 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_moved-goose-mZQIBzwuxQt+8+5zVo0Vvg==
Binary file not shown.
Binary file added
BIN
+2.89 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_musing-jackal-fzsmz4sDYn5h8riOmlnd2Q==
Binary file not shown.
Binary file removed
BIN
-2.04 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_naming-antler-hR8qvO3cR7hmSO.08vwvDA==
Binary file not shown.
Binary file removed
BIN
-2.04 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_napped-finch-c6wXr6YdnUvk4yVcQuzQXw==
Binary file not shown.
Binary file added
BIN
+2.04 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_nonfat-crest-cFRYN99hvn6LeZTxjo4gdw==
Binary file not shown.
Binary file added
BIN
+345 Bytes
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_oaken-lemur-ddZMiCm+XZwn45Mn72m1lQ==
Binary file not shown.
Binary file added
BIN
+635 Bytes
..._nav_maps/outside-621/edge_snapshots/edge_snapshot_id_oozing-jay-UfZyUE0PIYMkoQGsozmy6w==
Binary file not shown.
Binary file removed
BIN
-927 Bytes
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_palmy-beetle-Ga4wEbxEykiHItmAJHmmZQ==
Binary file not shown.
Binary file added
BIN
+2.04 KB
...h_nav_maps/outside-621/edge_snapshots/edge_snapshot_id_passe-bee-wbZUqg2YwGXuxBz2iE63ig==
Binary file not shown.
Binary file removed
BIN
-1.47 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_pebbly-wren-oObEJfK+cYqhDTlm0YUeOg==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_peeved-coyote-4O3bJfZE.hEEbDev03do4g==
Binary file not shown.
Binary file added
BIN
+636 Bytes
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_pesky-angler-j1ve5lyqmkMSfHTE+IJt8A==
Binary file not shown.
Binary file added
BIN
+4.88 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_piggy-cougar-K3hFLiCFTuw+Chm5qpDOCA==
Binary file not shown.
Binary file added
BIN
+1.47 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_plowed-algae-2PwiwfRnD4PvmrgCQ8lhxA==
Binary file not shown.
Binary file removed
BIN
-2.04 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_prima-grouse-anq9JpaSKUKLqS4S3vQAzg==
Binary file not shown.
Binary file added
BIN
+929 Bytes
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_punic-volvox-dXd6SoaLsFJFb3QQzO3QYA==
Binary file not shown.
Binary file added
BIN
+927 Bytes
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_pupal-mamba-rt.0403WQduCYkVXHzOeSA==
Binary file not shown.
Binary file removed
BIN
-1.75 KB
..._nav_maps/outside-621/edge_snapshots/edge_snapshot_id_pursy-pike-7RftO76.ECrHTEkM5154dA==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_rabid-afghan-4Gu3yYElft5N5PzOZ5LE5g==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_ranked-drill-3SPxS0.uiJrLOizKUMY++w==
Binary file not shown.
Binary file removed
BIN
-2.33 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_reefy-gadfly-xNKhOLsoKW9SaPvB2VOwmQ==
Binary file not shown.
Binary file added
BIN
+7.15 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_regal-virus-GYMuXc1qzpZaDehr5xv5MQ==
Binary file not shown.
Binary file added
BIN
+1.19 KB
..._nav_maps/outside-621/edge_snapshots/edge_snapshot_id_rigged-cod-nOAEJCCWqp4OL6F7lKTLAA==
Binary file not shown.
Binary file removed
BIN
-1.47 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_ritzy-otter-YsCMD0wnIDGBrP+uKFK+zg==
Binary file not shown.
Binary file added
BIN
+1.76 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_roomy-hornet-WtPnY.BE9uaqEh306pVYRA==
Binary file not shown.
Binary file added
BIN
+3.18 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_ruled-ocelot-c48ThRLIOgLGBWDsdHp4PA==
Binary file not shown.
Binary file added
BIN
+2.33 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_satiny-algae-PMgZJwjZpm40KFSOWg6HuA==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_satiny-mudcat-b+lCNngcUW669yR1VoTPCw==
Binary file not shown.
Binary file added
BIN
+930 Bytes
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_scenic-rodent-10aiKj10G9ZGolCGWJNpXQ==
Binary file not shown.
Binary file removed
BIN
-347 Bytes
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_senile-squid-cDWNejNmR.s0WhrjfWBM0g==
Binary file not shown.
Binary file added
BIN
+926 Bytes
..._nav_maps/outside-621/edge_snapshots/edge_snapshot_id_sewed-worm-.C9QTJZDaxTd+yv837Buwg==
Binary file not shown.
Binary file added
BIN
+636 Bytes
..._nav_maps/outside-621/edge_snapshots/edge_snapshot_id_size-corgi-9J69fMGAtACS6UcvgB2SUQ==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_sneaky-puffin-H+lAUEvcwafm9mAtCuqYxQ==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_sniffy-turkey-cae+GaTXQWlQ3stsgwSERg==
Binary file not shown.
Binary file added
BIN
+1.76 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_snoopy-pincer-A3I7J5t5tsNF+.QzHqhx3w==
Binary file not shown.
Binary file added
BIN
+2.61 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_sought-warble-ofSrbJYr+AoqxFpwaoFZLg==
Binary file not shown.
Binary file removed
BIN
-1.19 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_spry-cattle-ydCpEVUGM30d0iv3nVOqDw==
Binary file not shown.
Binary file added
BIN
+2.9 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_stereo-salmon-qS3mcNoD6blXe+ELAPtixw==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_strait-koala-MVxHIELRai6egM1Rulqing==
Binary file not shown.
Binary file added
BIN
+927 Bytes
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_stumpy-gull-1YbboKKZzdzB0XaKC9rBIg==
Binary file not shown.
Binary file removed
BIN
-637 Bytes
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_swell-trout-0KSqbuOLhGe+p31Xhf0mSA==
Binary file not shown.
Binary file added
BIN
+1.19 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_tangy-crake-LZEwlrx.cwP.Qr+9roBnsg==
Binary file not shown.
Binary file removed
BIN
-1.19 KB
...nav_maps/outside-621/edge_snapshots/edge_snapshot_id_thirty-seal-7uHWEYyxZoTEKXadUTe1kw==
Binary file not shown.
Binary file removed
BIN
-2.04 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_trusty-cuscus-a4pSATWKy+qKahCZqIj1aA==
Binary file not shown.
Binary file added
BIN
+638 Bytes
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_trusty-walrus-exybucjeKyJfHJLZvJ1jrA==
Binary file not shown.
Binary file added
BIN
+2.32 KB
..._nav_maps/outside-621/edge_snapshots/edge_snapshot_id_tubed-pika-7+F54Z5OiiCTKVBMzuvpvQ==
Binary file not shown.
Binary file added
BIN
+1.47 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_unawed-algae-SWG5jBpqSHD2aVAvhsPFDQ==
Binary file not shown.
Binary file added
BIN
+348 Bytes
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_unawed-coyote-Piqbc6tTZHcd2KF8gtOQ.g==
Binary file not shown.
Binary file added
BIN
+2.61 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_unkept-bedbug-DD1FcJ2664y5Urku2oI+vg==
Binary file not shown.
Binary file removed
BIN
-1.47 KB
..._nav_maps/outside-621/edge_snapshots/edge_snapshot_id_unmade-doe-idzDoSoBE.W.jkAacPdl4g==
Binary file not shown.
Binary file added
BIN
+1.76 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_upbeat-shrimp-z8wisSAxJ12hRmFai4ufmg==
Binary file not shown.
Binary file added
BIN
+3.18 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_warmed-marlin-W2QHo+Tl+8zgZ7GQrNbH.Q==
Binary file not shown.
Binary file added
BIN
+2.33 KB
...v_maps/outside-621/edge_snapshots/edge_snapshot_id_whippy-amoeba-ddIe28ll7NJFb4eBjHSB3A==
Binary file not shown.
Binary file added
BIN
+2.04 KB
...av_maps/outside-621/edge_snapshots/edge_snapshot_id_wifely-tiger-hz.+SXAcbsaGAIsQD.s2WQ==
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Consider replacing print statements with an appropriate logging mechanism for better production-level output control.