diff --git a/data/GPS/atlasDbUploader.ipynb b/data/GPS/atlasDbUploader.ipynb new file mode 100644 index 00000000..48e41500 --- /dev/null +++ b/data/GPS/atlasDbUploader.ipynb @@ -0,0 +1,4660 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# based on commit 8d5f7 \"aaaaaaa\" something something\n", + "# anything since then needs updating manually in the database" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "import sqlite3\n", + "import base64\n", + "from PIL import Image\n", + "import io\n", + "import os\n", + "from datetime import datetime\n", + "\n", + "def compress_image(image_path, max_size=512 * 1024):\n", + " with Image.open(image_path) as img:\n", + " # Reduce image quality until it is below the max_size\n", + " quality = 90\n", + " \n", + " while True:\n", + " buffer = io.BytesIO()\n", + " img.save(buffer, format=\"JPEG\", quality=quality)\n", + " size = buffer.tell()\n", + " \n", + " if size <= max_size:\n", + " break\n", + " \n", + " if quality > 20:\n", + " quality -= 5\n", + " else:\n", + " width, height = img.size\n", + " if width > 1 and height > 1:\n", + " img = img.resize((width // 2, height // 2), Image.Resampling.LANCZOS)\n", + " quality = 90\n", + " else:\n", + " break\n", + " print(\"quality:\", quality)\n", + " print(\"width, height:\", img.size)\n", + " buffer.seek(0)\n", + " return buffer\n", + "\n", + "def image_to_base64(image_path):\n", + " compressed_image = compress_image(image_path)\n", + " base64_bytes = base64.b64encode(compressed_image.read()).decode('utf-8')\n", + " return base64_bytes\n", + "\n", + "def get_image_dimensions(image_path):\n", + " with Image.open(image_path) as img:\n", + " return img.width, img.height\n", + "\n", + "def insert_image_if_not_exists(db_path, image_path):\n", + " # Get image dimensions\n", + " width, height = get_image_dimensions(image_path)\n", + " \n", + " # Convert the image to Base64\n", + " base64_string = image_to_base64(image_path)\n", + " \n", + " # Get the filename as the description without the extension\n", + " description = os.path.splitext(os.path.basename(image_path))[0]\n", + "\n", + " # Connect to the SQLite database\n", + " conn = sqlite3.connect(db_path)\n", + " cursor = conn.cursor()\n", + "\n", + " # Check if an image with the same base64_bytes already exists\n", + " cursor.execute('''\n", + " SELECT id FROM images WHERE base64_bytes = ?\n", + " ''', (base64_string,))\n", + "\n", + " existing_image = cursor.fetchone()\n", + "\n", + " if existing_image:\n", + " # If an image already exists, return its ID\n", + " image_id = existing_image[0]\n", + " print(\"Image already exists with ID:\", image_id)\n", + " else:\n", + " # Insert a new row into the images table\n", + " cursor.execute('''\n", + " INSERT INTO images (width, height, description, base64_bytes, created_at)\n", + " VALUES (?, ?, ?, ?, CURRENT_TIMESTAMP)\n", + " ''', (width, height, description, base64_string))\n", + "\n", + " # Get the ID of the newly inserted row\n", + " image_id = cursor.lastrowid\n", + " print(\"New image inserted with ID:\", image_id)\n", + "\n", + " # Commit the changes and close the connection\n", + " conn.commit()\n", + " conn.close()\n", + "\n", + " return image_id\n", + "\n", + "def insert_update_if_not_exists(db_path, created_at, description, cave_id):\n", + " # Connect to the SQLite database\n", + " conn = sqlite3.connect(db_path)\n", + " cursor = conn.cursor()\n", + "\n", + " # Check if an update with the same description, cave_id, and created_at already exists\n", + " cursor.execute('''\n", + " SELECT id FROM updates WHERE description = ? AND cave_id = ? AND created_at = ?\n", + " ''', (description, cave_id, created_at))\n", + "\n", + " existing_update = cursor.fetchone()\n", + "\n", + " if existing_update:\n", + " # If an update already exists, return its ID\n", + " update_id = existing_update[0]\n", + " print(\"Update already exists with ID:\", update_id)\n", + " else:\n", + " # Insert a new row into the updates table\n", + " cursor.execute('''\n", + " INSERT INTO updates (created_at, description, cave_id)\n", + " VALUES (?, ?, ?)\n", + " ''', (created_at, description, cave_id))\n", + "\n", + " # Get the ID of the newly inserted row\n", + " update_id = cursor.lastrowid\n", + " print(\"New update inserted with ID:\", update_id)\n", + "\n", + " # Commit the changes and close the connection\n", + " conn.commit()\n", + " conn.close()\n", + "\n", + " return update_id\n", + "\n", + "def get_cave_id_by_name(db_path, cave_name):\n", + " # Connect to the SQLite database\n", + " conn = sqlite3.connect(db_path)\n", + " cursor = conn.cursor()\n", + "\n", + " # Query to get the ID of the cave with the given name\n", + " cursor.execute('''\n", + " SELECT id FROM caves WHERE name = ?\n", + " ''', (cave_name,))\n", + "\n", + " # Fetch the result\n", + " cave_id = cursor.fetchone()\n", + "\n", + " # Close the connection\n", + " conn.close()\n", + "\n", + " # Check if the cave was found and return the ID, otherwise return None\n", + " if cave_id:\n", + " return cave_id[0]\n", + " else:\n", + " return None\n", + "\n", + "def insert_cave_if_not_exists(db_path, cave_name, latitude, longitude, elevation):\n", + " # Connect to the SQLite database\n", + " conn = sqlite3.connect(db_path)\n", + " cursor = conn.cursor()\n", + "\n", + " # Check if a cave with the same name already exists\n", + " cursor.execute('''\n", + " SELECT id FROM caves WHERE name = ?\n", + " ''', (cave_name,))\n", + "\n", + " existing_cave = cursor.fetchone()\n", + "\n", + " if existing_cave:\n", + " # If a cave already exists, return its ID\n", + " cave_id = existing_cave[0]\n", + " print(\"Cave already exists with ID:\", cave_id)\n", + " else:\n", + " # Insert a new row into the caves table\n", + " cursor.execute('''\n", + " INSERT INTO caves (name, latitude, longitude, elevation)\n", + " VALUES (?, ?, ?, ?)\n", + " ''', (cave_name, latitude, longitude, elevation))\n", + "\n", + " # Get the ID of the newly inserted row\n", + " cave_id = cursor.lastrowid\n", + " print(\"New cave inserted with ID:\", cave_id)\n", + "\n", + " # Commit the changes and close the connection\n", + " conn.commit()\n", + " conn.close()\n", + "\n", + " return cave_id\n", + "\n", + "def get_datetime_for_year(year_str):\n", + " # Construct a datetime object for July 1st of the given year\n", + " date_str = f\"{year_str}-07-01 00:00:00\"\n", + " date_obj = datetime.strptime(date_str, \"%Y-%m-%d %H:%M:%S\")\n", + " \n", + " # Format the datetime object as a string suitable for SQLite insertion\n", + " formatted_date = date_obj.strftime(\"%Y-%m-%d %H:%M:%S\")\n", + " \n", + " return formatted_date\n", + "\n", + "def insert_update_image_if_not_exists(db_path, update_id, image_id):\n", + " # Connect to the SQLite database\n", + " conn = sqlite3.connect(db_path)\n", + " cursor = conn.cursor()\n", + "\n", + " # Check if the (update_id, image_id) combination already exists\n", + " cursor.execute('''\n", + " SELECT 1 FROM update_images WHERE update_id = ? AND image_id = ?\n", + " ''', (update_id, image_id))\n", + "\n", + " existing_entry = cursor.fetchone()\n", + "\n", + " if existing_entry:\n", + " # If the entry already exists, print a message\n", + " print(f\"Entry already exists for update_id: {update_id} and image_id: {image_id}\")\n", + " else:\n", + " # Insert a new row into the UpdateImages table\n", + " cursor.execute('''\n", + " INSERT INTO update_images (update_id, image_id)\n", + " VALUES (?, ?)\n", + " ''', (update_id, image_id))\n", + "\n", + " # Commit the changes and close the connection\n", + " conn.commit()\n", + " print(f\"New entry inserted for update_id: {update_id} and image_id: {image_id}\")\n", + "\n", + " conn.close()\n", + "\n", + "def image_short_list_to_path(images):\n", + " image_paths = [f\"./images/{image}\" for image in images]\n", + " return image_paths\n", + "\n", + "# Usage\n", + "db_path = '../../../surface-atlas/assets/atlas.db'\n", + "image_path = './images/A1-2022.jpeg'\n", + "\n", + "# new_id = insert_image_to_db(db_path, image_path)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Cave already exists with ID: 48\n", + "Cave already exists with ID: 52\n", + "Cave already exists with ID: 49\n", + "Cave already exists with ID: 51\n", + "Cave already exists with ID: 107\n", + "Cave already exists with ID: 108\n", + "Cave already exists with ID: 47\n", + "Cave already exists with ID: 20\n", + "Cave already exists with ID: 80\n", + "Cave already exists with ID: 32\n", + "Cave already exists with ID: 17\n", + "Cave already exists with ID: 78\n", + "Cave already exists with ID: 79\n", + "Cave already exists with ID: 109\n", + "Cave already exists with ID: 110\n", + "Cave already exists with ID: 111\n", + "Cave already exists with ID: 112\n", + "Cave already exists with ID: 113\n", + "Cave already exists with ID: 114\n", + "Cave already exists with ID: 115\n", + "Cave already exists with ID: 116\n", + "Cave already exists with ID: 37\n", + "Cave already exists with ID: 72\n", + "Cave already exists with ID: 73\n", + "Cave already exists with ID: 118\n", + "Cave already exists with ID: 71\n", + "Cave already exists with ID: 120\n", + "Cave already exists with ID: 59\n", + "Cave already exists with ID: 61\n", + "Cave already exists with ID: 121\n", + "Cave already exists with ID: 122\n", + "Cave already exists with ID: 57\n", + "Cave already exists with ID: 62\n", + "Cave already exists with ID: 123\n", + "Cave already exists with ID: 22\n", + "Cave already exists with ID: 125\n", + "Cave already exists with ID: 126\n", + "Cave already exists with ID: 74\n", + "Cave already exists with ID: 127\n", + "Cave already exists with ID: 128\n", + "Cave already exists with ID: 129\n", + "Cave already exists with ID: 130\n", + "Cave already exists with ID: 131\n", + "Cave already exists with ID: 132\n", + "Cave already exists with ID: 16\n", + "Cave already exists with ID: 3\n", + "Cave already exists with ID: 133\n", + "Cave already exists with ID: 134\n", + "Cave already exists with ID: 135\n", + "Cave already exists with ID: 2\n", + "Cave already exists with ID: 136\n", + "Cave already exists with ID: 137\n", + "Cave already exists with ID: 6\n", + "Cave already exists with ID: 4\n", + "Cave already exists with ID: 5\n", + "Cave already exists with ID: 10\n", + "Cave already exists with ID: 11\n", + "Cave already exists with ID: 8\n", + "Cave already exists with ID: 13\n", + "Cave already exists with ID: 15\n", + "Cave already exists with ID: 138\n", + "Cave already exists with ID: 139\n", + "Cave already exists with ID: 12\n", + "Cave already exists with ID: 14\n", + "Cave already exists with ID: 140\n", + "Cave already exists with ID: 141\n", + "Cave already exists with ID: 142\n", + "Cave already exists with ID: 143\n", + "Cave already exists with ID: 144\n", + "Cave already exists with ID: 145\n", + "Cave already exists with ID: 7\n", + "Cave already exists with ID: 146\n", + "Cave already exists with ID: 9\n", + "Cave already exists with ID: 147\n", + "Cave already exists with ID: 31\n", + "Cave already exists with ID: 24\n", + "Cave already exists with ID: 23\n", + "Cave already exists with ID: 26\n", + "Cave already exists with ID: 27\n", + "Cave already exists with ID: 28\n", + "Cave already exists with ID: 35\n", + "Cave already exists with ID: 36\n", + "Cave already exists with ID: 30\n", + "Cave already exists with ID: 63\n", + "Cave already exists with ID: 64\n", + "Cave already exists with ID: 65\n", + "Cave already exists with ID: 66\n", + "Cave already exists with ID: 67\n", + "Cave already exists with ID: 68\n", + "Cave already exists with ID: 69\n", + "Cave already exists with ID: 85\n", + "Cave already exists with ID: 86\n", + "Cave already exists with ID: 87\n", + "Cave already exists with ID: 88\n", + "Cave already exists with ID: 89\n", + "Cave already exists with ID: 90\n", + "Cave already exists with ID: 91\n", + "Cave already exists with ID: 92\n", + "Cave already exists with ID: 93\n", + "Cave already exists with ID: 94\n", + "Cave already exists with ID: 95\n", + "Cave already exists with ID: 96\n", + "Cave already exists with ID: 97\n", + "Cave already exists with ID: 98\n", + "Cave already exists with ID: 99\n", + "Cave already exists with ID: 100\n", + "Cave already exists with ID: 101\n", + "Cave already exists with ID: 102\n", + "Cave already exists with ID: 103\n", + "Cave already exists with ID: 104\n", + "Cave already exists with ID: 105\n", + "Cave already exists with ID: 148\n", + "Cave already exists with ID: 149\n", + "Cave already exists with ID: 150\n", + "Cave already exists with ID: 50\n", + "Cave already exists with ID: 151\n", + "Cave already exists with ID: 152\n", + "Cave already exists with ID: 54\n", + "Cave already exists with ID: 56\n", + "Cave already exists with ID: 55\n", + "Cave already exists with ID: 153\n", + "Cave already exists with ID: 154\n", + "Cave already exists with ID: 46\n", + "Cave already exists with ID: 156\n", + "Cave already exists with ID: 157\n", + "Cave already exists with ID: 158\n", + "Cave already exists with ID: 159\n", + "Cave already exists with ID: 160\n", + "Cave already exists with ID: 161\n", + "Cave already exists with ID: 162\n", + "Cave already exists with ID: 163\n", + "Cave already exists with ID: 164\n", + "Cave already exists with ID: 33\n", + "Cave already exists with ID: 165\n", + "Cave already exists with ID: 53\n", + "Cave already exists with ID: 166\n", + "Cave already exists with ID: 167\n", + "Cave already exists with ID: 21\n", + "Cave already exists with ID: 168\n", + "Cave already exists with ID: 169\n", + "Cave already exists with ID: 81\n", + "Cave already exists with ID: 170\n", + "Cave already exists with ID: 171\n", + "Cave already exists with ID: 172\n", + "Cave already exists with ID: 173\n", + "Cave already exists with ID: 174\n", + "Cave already exists with ID: 175\n", + "Cave already exists with ID: 175\n", + "Cave already exists with ID: 176\n", + "Cave already exists with ID: 177\n", + "Cave already exists with ID: 178\n", + "Cave already exists with ID: 179\n", + "Cave already exists with ID: 180\n", + "Cave already exists with ID: 181\n", + "Cave already exists with ID: 182\n", + "Cave already exists with ID: 183\n", + "Cave already exists with ID: 184\n", + "Cave already exists with ID: 185\n", + "Cave already exists with ID: 186\n", + "Cave already exists with ID: 187\n", + "Cave already exists with ID: 188\n", + "Cave already exists with ID: 189\n", + "Cave already exists with ID: 190\n", + "Cave already exists with ID: 191\n", + "Cave already exists with ID: 192\n", + "Cave already exists with ID: 193\n", + "Cave already exists with ID: 194\n", + "Cave already exists with ID: 1\n", + "Cave already exists with ID: 195\n", + "Cave already exists with ID: 196\n", + "Cave already exists with ID: 197\n", + "Cave already exists with ID: 198\n", + "Cave already exists with ID: 199\n", + "Cave already exists with ID: 200\n", + "Cave already exists with ID: 201\n", + "Cave already exists with ID: 202\n", + "Cave already exists with ID: 58\n", + "Cave already exists with ID: 60\n", + "Cave already exists with ID: 29\n", + "Cave already exists with ID: 25\n", + "Cave already exists with ID: 203\n", + "Cave already exists with ID: 204\n", + "Cave already exists with ID: 205\n", + "Cave already exists with ID: 206\n", + "Cave already exists with ID: 207\n", + "Cave already exists with ID: 208\n", + "Cave already exists with ID: 34\n", + "Cave already exists with ID: 38\n", + "Cave already exists with ID: 39\n", + "Cave already exists with ID: 40\n", + "Cave already exists with ID: 41\n", + "Cave already exists with ID: 42\n", + "Cave already exists with ID: 43\n", + "Cave already exists with ID: 44\n", + "Cave already exists with ID: 45\n", + "Cave already exists with ID: 70\n", + "Cave already exists with ID: 209\n", + "Cave already exists with ID: 210\n", + "Cave already exists with ID: 211\n" + ] + } + ], + "source": [ + "# Check all caves exist\n", + "sections = atlas_text.split(\"### \")\n", + "caves = [section.split(\"\\n\")[0] for section in sections]\n", + "for cave in caves:\n", + " if len(cave) > 0:\n", + " insert_cave_if_not_exists(db_path, cave, None, None, None)" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "def create_updates_and_images(cave_name, year, images, description):\n", + " if (not cave_name or not year or (not images and not description)):\n", + " raise ValueError(\"Missing an argument!\")\n", + "\n", + " image_paths = image_short_list_to_path(images)\n", + " cave_id = get_cave_id_by_name(db_path, cave_name)\n", + " timestamp = get_datetime_for_year(year)\n", + " image_ids = [insert_image_if_not_exists(db_path, image_path) for image_path in image_paths]\n", + " update_id = insert_update_if_not_exists(db_path, timestamp, description, cave_id)\n", + " [insert_update_image_if_not_exists(db_path, update_id, image_id) for image_id in image_ids]\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Update already exists with ID: 1\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 1\n", + "Update already exists with ID: 2\n", + "Entry already exists for update_id: 2 and image_id: 1\n", + "Update already exists with ID: 3\n", + "quality: 50\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 2\n", + "Update already exists with ID: 4\n", + "Entry already exists for update_id: 4 and image_id: 2\n", + "Update already exists with ID: 5\n", + "quality: 45\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 3\n", + "Update already exists with ID: 6\n", + "Entry already exists for update_id: 6 and image_id: 3\n", + "Update already exists with ID: 7\n", + "quality: 55\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 4\n", + "Update already exists with ID: 8\n", + "Entry already exists for update_id: 8 and image_id: 4\n", + "Update already exists with ID: 9\n", + "Update already exists with ID: 10\n", + "quality: 35\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 5\n", + "Update already exists with ID: 11\n", + "Entry already exists for update_id: 11 and image_id: 5\n", + "quality: 40\n", + "width, height: (2016, 1512)\n", + "Image already exists with ID: 6\n", + "quality: 55\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 7\n", + "Update already exists with ID: 12\n", + "Entry already exists for update_id: 12 and image_id: 6\n", + "Entry already exists for update_id: 12 and image_id: 7\n", + "quality: 90\n", + "width, height: (1008, 756)\n", + "Image already exists with ID: 8\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 9\n", + "Update already exists with ID: 13\n", + "Entry already exists for update_id: 13 and image_id: 8\n", + "Entry already exists for update_id: 13 and image_id: 9\n", + "Update already exists with ID: 15\n", + "quality: 55\n", + "width, height: (3072, 2304)\n", + "Image already exists with ID: 10\n", + "Update already exists with ID: 16\n", + "Entry already exists for update_id: 16 and image_id: 10\n", + "Update already exists with ID: 17\n", + "quality: 90\n", + "width, height: (1008, 756)\n", + "Image already exists with ID: 8\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 9\n", + "Update already exists with ID: 18\n", + "Entry already exists for update_id: 18 and image_id: 8\n", + "Entry already exists for update_id: 18 and image_id: 9\n", + "quality: 35\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 11\n", + "Update already exists with ID: 19\n", + "Entry already exists for update_id: 19 and image_id: 11\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 12\n", + "Update already exists with ID: 20\n", + "Entry already exists for update_id: 20 and image_id: 12\n", + "quality: 90\n", + "width, height: (1008, 756)\n", + "Image already exists with ID: 13\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 14\n", + "Update already exists with ID: 21\n", + "Entry already exists for update_id: 21 and image_id: 13\n", + "Entry already exists for update_id: 21 and image_id: 14\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 15\n", + "Update already exists with ID: 22\n", + "Entry already exists for update_id: 22 and image_id: 15\n", + "Update already exists with ID: 23\n", + "Update already exists with ID: 24\n", + "Update already exists with ID: 25\n", + "Update already exists with ID: 26\n", + "Update already exists with ID: 27\n", + "Update already exists with ID: 28\n", + "Update already exists with ID: 29\n", + "quality: 75\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 16\n", + "Update already exists with ID: 30\n", + "Entry already exists for update_id: 30 and image_id: 16\n", + "quality: 35\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 17\n", + "Update already exists with ID: 31\n", + "Entry already exists for update_id: 31 and image_id: 17\n", + "quality: 80\n", + "width, height: (2100, 1576)\n", + "Image already exists with ID: 18\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 19\n", + "Update already exists with ID: 32\n", + "Entry already exists for update_id: 32 and image_id: 18\n", + "Entry already exists for update_id: 32 and image_id: 19\n", + "quality: 70\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 20\n", + "quality: 25\n", + "width, height: (3024, 4032)\n", + "Image already exists with ID: 21\n", + "Update already exists with ID: 33\n", + "Entry already exists for update_id: 33 and image_id: 20\n", + "Entry already exists for update_id: 33 and image_id: 21\n", + "Update already exists with ID: 34\n", + "Update already exists with ID: 35\n", + "Update already exists with ID: 36\n", + "Update already exists with ID: 37\n", + "quality: 90\n", + "width, height: (1008, 756)\n", + "Image already exists with ID: 22\n", + "quality: 90\n", + "width, height: (1200, 1600)\n", + "Image already exists with ID: 23\n", + "Update already exists with ID: 38\n", + "Entry already exists for update_id: 38 and image_id: 22\n", + "Entry already exists for update_id: 38 and image_id: 23\n", + "Update already exists with ID: 39\n", + "Update already exists with ID: 40\n", + "quality: 55\n", + "width, height: (1704, 2272)\n", + "Image already exists with ID: 24\n", + "quality: 85\n", + "width, height: (1024, 1536)\n", + "Image already exists with ID: 25\n", + "Update already exists with ID: 41\n", + "Entry already exists for update_id: 41 and image_id: 24\n", + "Entry already exists for update_id: 41 and image_id: 25\n", + "quality: 65\n", + "width, height: (1704, 2272)\n", + "Image already exists with ID: 26\n", + "Update already exists with ID: 42\n", + "Entry already exists for update_id: 42 and image_id: 26\n", + "quality: 45\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 27\n", + "Update already exists with ID: 43\n", + "Entry already exists for update_id: 43 and image_id: 27\n", + "quality: 45\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 28\n", + "Update already exists with ID: 44\n", + "Entry already exists for update_id: 44 and image_id: 28\n", + "quality: 40\n", + "width, height: (1704, 2272)\n", + "Image already exists with ID: 29\n", + "Update already exists with ID: 45\n", + "Entry already exists for update_id: 45 and image_id: 29\n", + "quality: 60\n", + "width, height: (2272, 1704)\n", + "Image already exists with ID: 30\n", + "Update already exists with ID: 46\n", + "Entry already exists for update_id: 46 and image_id: 30\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 31\n", + "Update already exists with ID: 47\n", + "Entry already exists for update_id: 47 and image_id: 31\n", + "Update already exists with ID: 48\n", + "quality: 90\n", + "width, height: (1008, 756)\n", + "Image already exists with ID: 32\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 33\n", + "Update already exists with ID: 49\n", + "Entry already exists for update_id: 49 and image_id: 32\n", + "Entry already exists for update_id: 49 and image_id: 33\n", + "Update already exists with ID: 50\n", + "Update already exists with ID: 51\n", + "Update already exists with ID: 52\n", + "Update already exists with ID: 53\n", + "Update already exists with ID: 54\n", + "quality: 55\n", + "width, height: (2016, 1512)\n", + "Image already exists with ID: 34\n", + "Update already exists with ID: 55\n", + "Entry already exists for update_id: 55 and image_id: 34\n", + "Update already exists with ID: 56\n", + "Update already exists with ID: 57\n", + "Update already exists with ID: 58\n", + "quality: 25\n", + "width, height: (3024, 2005)\n", + "Image already exists with ID: 35\n", + "quality: 20\n", + "width, height: (3024, 2005)\n", + "Image already exists with ID: 36\n", + "Update already exists with ID: 59\n", + "Entry already exists for update_id: 59 and image_id: 35\n", + "Entry already exists for update_id: 59 and image_id: 36\n", + "Update already exists with ID: 60\n", + "quality: 55\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 37\n", + "Update already exists with ID: 61\n", + "Entry already exists for update_id: 61 and image_id: 37\n", + "Update already exists with ID: 62\n", + "quality: 90\n", + "width, height: (1008, 756)\n", + "Image already exists with ID: 38\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 39\n", + "Update already exists with ID: 63\n", + "Entry already exists for update_id: 63 and image_id: 38\n", + "Entry already exists for update_id: 63 and image_id: 39\n", + "Update already exists with ID: 64\n", + "Update already exists with ID: 65\n", + "Update already exists with ID: 66\n", + "Update already exists with ID: 67\n", + "Update already exists with ID: 68\n", + "Update already exists with ID: 69\n", + "Update already exists with ID: 70\n", + "quality: 60\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 40\n", + "Update already exists with ID: 71\n", + "Entry already exists for update_id: 71 and image_id: 40\n", + "Update already exists with ID: 72\n", + "Update already exists with ID: 73\n", + "Update already exists with ID: 74\n", + "quality: 25\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 41\n", + "Update already exists with ID: 75\n", + "Entry already exists for update_id: 75 and image_id: 41\n", + "Update already exists with ID: 76\n", + "Update already exists with ID: 77\n", + "Update already exists with ID: 78\n", + "Update already exists with ID: 79\n", + "Update already exists with ID: 80\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 42\n", + "Update already exists with ID: 81\n", + "Entry already exists for update_id: 81 and image_id: 42\n", + "quality: 90\n", + "width, height: (800, 600)\n", + "Image already exists with ID: 43\n", + "quality: 90\n", + "width, height: (800, 600)\n", + "Image already exists with ID: 44\n", + "Update already exists with ID: 82\n", + "Entry already exists for update_id: 82 and image_id: 43\n", + "Entry already exists for update_id: 82 and image_id: 44\n", + "Update already exists with ID: 83\n", + "Update already exists with ID: 84\n", + "quality: 55\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 45\n", + "Update already exists with ID: 85\n", + "Entry already exists for update_id: 85 and image_id: 45\n", + "Update already exists with ID: 86\n", + "quality: 35\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 46\n", + "Update already exists with ID: 87\n", + "Entry already exists for update_id: 87 and image_id: 46\n", + "Update already exists with ID: 88\n", + "Update already exists with ID: 89\n", + "quality: 20\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 47\n", + "Update already exists with ID: 90\n", + "Entry already exists for update_id: 90 and image_id: 47\n", + "Update already exists with ID: 91\n", + "Update already exists with ID: 92\n", + "Update already exists with ID: 93\n", + "quality: 35\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 48\n", + "Update already exists with ID: 94\n", + "Entry already exists for update_id: 94 and image_id: 48\n", + "Update already exists with ID: 95\n", + "quality: 35\n", + "width, height: (2016, 1512)\n", + "Image already exists with ID: 49\n", + "Update already exists with ID: 96\n", + "Entry already exists for update_id: 96 and image_id: 49\n", + "Update already exists with ID: 97\n", + "quality: 55\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 50\n", + "Update already exists with ID: 98\n", + "Entry already exists for update_id: 98 and image_id: 50\n", + "quality: 65\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 51\n", + "Update already exists with ID: 99\n", + "Entry already exists for update_id: 99 and image_id: 51\n", + "Update already exists with ID: 100\n", + "quality: 55\n", + "width, height: (2016, 1512)\n", + "Image already exists with ID: 52\n", + "Update already exists with ID: 101\n", + "Entry already exists for update_id: 101 and image_id: 52\n", + "Update already exists with ID: 102\n", + "Update already exists with ID: 103\n", + "Update already exists with ID: 104\n", + "quality: 90\n", + "width, height: (449, 600)\n", + "Image already exists with ID: 53\n", + "quality: 90\n", + "width, height: (449, 600)\n", + "Image already exists with ID: 54\n", + "Update already exists with ID: 105\n", + "Entry already exists for update_id: 105 and image_id: 53\n", + "Entry already exists for update_id: 105 and image_id: 54\n", + "Update already exists with ID: 106\n", + "quality: 45\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 55\n", + "Update already exists with ID: 107\n", + "Entry already exists for update_id: 107 and image_id: 55\n", + "Update already exists with ID: 108\n", + "quality: 35\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 56\n", + "Update already exists with ID: 109\n", + "Entry already exists for update_id: 109 and image_id: 56\n", + "Update already exists with ID: 110\n", + "Update already exists with ID: 111\n", + "Update already exists with ID: 112\n", + "Update already exists with ID: 113\n", + "Update already exists with ID: 114\n", + "Update already exists with ID: 115\n", + "quality: 55\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 57\n", + "Update already exists with ID: 116\n", + "Entry already exists for update_id: 116 and image_id: 57\n", + "quality: 60\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 58\n", + "Update already exists with ID: 117\n", + "Entry already exists for update_id: 117 and image_id: 58\n", + "quality: 55\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 59\n", + "Update already exists with ID: 118\n", + "Entry already exists for update_id: 118 and image_id: 59\n", + "Update already exists with ID: 119\n", + "quality: 50\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 60\n", + "Update already exists with ID: 120\n", + "Entry already exists for update_id: 120 and image_id: 60\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 61\n", + "Update already exists with ID: 121\n", + "Entry already exists for update_id: 121 and image_id: 61\n", + "Update already exists with ID: 122\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 62\n", + "Update already exists with ID: 123\n", + "Entry already exists for update_id: 123 and image_id: 62\n", + "Update already exists with ID: 124\n", + "quality: 45\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 63\n", + "Update already exists with ID: 125\n", + "Entry already exists for update_id: 125 and image_id: 63\n", + "Update already exists with ID: 126\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 64\n", + "Update already exists with ID: 127\n", + "Entry already exists for update_id: 127 and image_id: 64\n", + "quality: 40\n", + "width, height: (2016, 1512)\n", + "Image already exists with ID: 65\n", + "Update already exists with ID: 128\n", + "Entry already exists for update_id: 128 and image_id: 65\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 66\n", + "Update already exists with ID: 129\n", + "Entry already exists for update_id: 129 and image_id: 66\n", + "Update already exists with ID: 130\n", + "quality: 35\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 67\n", + "Update already exists with ID: 131\n", + "Entry already exists for update_id: 131 and image_id: 67\n", + "Update already exists with ID: 132\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 68\n", + "Update already exists with ID: 133\n", + "Entry already exists for update_id: 133 and image_id: 68\n", + "Update already exists with ID: 134\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 69\n", + "quality: 90\n", + "width, height: (1008, 756)\n", + "Image already exists with ID: 70\n", + "Update already exists with ID: 135\n", + "Entry already exists for update_id: 135 and image_id: 69\n", + "Entry already exists for update_id: 135 and image_id: 70\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 71\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 72\n", + "Update already exists with ID: 136\n", + "Entry already exists for update_id: 136 and image_id: 71\n", + "Entry already exists for update_id: 136 and image_id: 72\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 73\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 74\n", + "Update already exists with ID: 137\n", + "Entry already exists for update_id: 137 and image_id: 73\n", + "Entry already exists for update_id: 137 and image_id: 74\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 75\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 76\n", + "Update already exists with ID: 138\n", + "Entry already exists for update_id: 138 and image_id: 75\n", + "Entry already exists for update_id: 138 and image_id: 76\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 77\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 78\n", + "Update already exists with ID: 139\n", + "Entry already exists for update_id: 139 and image_id: 77\n", + "Entry already exists for update_id: 139 and image_id: 78\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 79\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 80\n", + "quality: 90\n", + "width, height: (400, 300)\n", + "Image already exists with ID: 81\n", + "Update already exists with ID: 140\n", + "Entry already exists for update_id: 140 and image_id: 79\n", + "Entry already exists for update_id: 140 and image_id: 80\n", + "Entry already exists for update_id: 140 and image_id: 81\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 82\n", + "Update already exists with ID: 141\n", + "Entry already exists for update_id: 141 and image_id: 82\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 83\n", + "quality: 90\n", + "width, height: (1008, 756)\n", + "Image already exists with ID: 84\n", + "Update already exists with ID: 142\n", + "Entry already exists for update_id: 142 and image_id: 83\n", + "Entry already exists for update_id: 142 and image_id: 84\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 85\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 86\n", + "Update already exists with ID: 143\n", + "Entry already exists for update_id: 143 and image_id: 85\n", + "Entry already exists for update_id: 143 and image_id: 86\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 87\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 88\n", + "Update already exists with ID: 144\n", + "Entry already exists for update_id: 144 and image_id: 87\n", + "Entry already exists for update_id: 144 and image_id: 88\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 89\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 90\n", + "Update already exists with ID: 145\n", + "Entry already exists for update_id: 145 and image_id: 89\n", + "Entry already exists for update_id: 145 and image_id: 90\n", + "quality: 90\n", + "width, height: (1008, 756)\n", + "Image already exists with ID: 91\n", + "Update already exists with ID: 146\n", + "Entry already exists for update_id: 146 and image_id: 91\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 92\n", + "Update already exists with ID: 147\n", + "Entry already exists for update_id: 147 and image_id: 92\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 93\n", + "Update already exists with ID: 148\n", + "Entry already exists for update_id: 148 and image_id: 93\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 94\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 95\n", + "quality: 90\n", + "width, height: (300, 400)\n", + "Image already exists with ID: 96\n", + "Update already exists with ID: 149\n", + "Entry already exists for update_id: 149 and image_id: 94\n", + "Entry already exists for update_id: 149 and image_id: 95\n", + "Entry already exists for update_id: 149 and image_id: 96\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 97\n", + "Update already exists with ID: 150\n", + "Entry already exists for update_id: 150 and image_id: 97\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 98\n", + "Update already exists with ID: 151\n", + "Entry already exists for update_id: 151 and image_id: 98\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 99\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 100\n", + "Update already exists with ID: 152\n", + "Entry already exists for update_id: 152 and image_id: 99\n", + "Entry already exists for update_id: 152 and image_id: 100\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 101\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 102\n", + "Update already exists with ID: 153\n", + "Entry already exists for update_id: 153 and image_id: 101\n", + "Entry already exists for update_id: 153 and image_id: 102\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 103\n", + "Update already exists with ID: 154\n", + "Entry already exists for update_id: 154 and image_id: 103\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 104\n", + "Update already exists with ID: 155\n", + "Entry already exists for update_id: 155 and image_id: 104\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 105\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 106\n", + "Update already exists with ID: 156\n", + "Entry already exists for update_id: 156 and image_id: 105\n", + "Entry already exists for update_id: 156 and image_id: 106\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 107\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 108\n", + "Update already exists with ID: 157\n", + "Entry already exists for update_id: 157 and image_id: 107\n", + "Entry already exists for update_id: 157 and image_id: 108\n", + "quality: 90\n", + "width, height: (1008, 756)\n", + "Image already exists with ID: 109\n", + "Update already exists with ID: 158\n", + "Entry already exists for update_id: 158 and image_id: 109\n", + "quality: 90\n", + "width, height: (1008, 756)\n", + "Image already exists with ID: 110\n", + "Update already exists with ID: 159\n", + "Entry already exists for update_id: 159 and image_id: 110\n", + "quality: 90\n", + "width, height: (768, 1024)\n", + "Image already exists with ID: 111\n", + "Update already exists with ID: 160\n", + "Entry already exists for update_id: 160 and image_id: 111\n", + "quality: 90\n", + "width, height: (768, 1024)\n", + "Image already exists with ID: 112\n", + "Update already exists with ID: 161\n", + "Entry already exists for update_id: 161 and image_id: 112\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 113\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 114\n", + "Update already exists with ID: 162\n", + "Entry already exists for update_id: 162 and image_id: 113\n", + "Entry already exists for update_id: 162 and image_id: 114\n", + "Update already exists with ID: 163\n", + "Update already exists with ID: 164\n", + "quality: 65\n", + "width, height: (2016, 1512)\n", + "Image already exists with ID: 115\n", + "Update already exists with ID: 165\n", + "Entry already exists for update_id: 165 and image_id: 115\n", + "quality: 45\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 116\n", + "Update already exists with ID: 166\n", + "Entry already exists for update_id: 166 and image_id: 116\n", + "Update already exists with ID: 167\n", + "Update already exists with ID: 168\n", + "Update already exists with ID: 169\n", + "quality: 45\n", + "width, height: (2016, 1512)\n", + "Image already exists with ID: 117\n", + "Update already exists with ID: 170\n", + "Entry already exists for update_id: 170 and image_id: 117\n", + "Update already exists with ID: 171\n", + "Update already exists with ID: 172\n", + "Update already exists with ID: 173\n", + "quality: 80\n", + "width, height: (1024, 1536)\n", + "Image already exists with ID: 118\n", + "Update already exists with ID: 174\n", + "Entry already exists for update_id: 174 and image_id: 118\n", + "Update already exists with ID: 175\n", + "Update already exists with ID: 176\n", + "quality: 45\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 119\n", + "Update already exists with ID: 177\n", + "Entry already exists for update_id: 177 and image_id: 119\n", + "Update already exists with ID: 178\n", + "quality: 25\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 120\n", + "Update already exists with ID: 179\n", + "Entry already exists for update_id: 179 and image_id: 120\n", + "Update already exists with ID: 180\n", + "quality: 65\n", + "width, height: (2016, 1512)\n", + "Image already exists with ID: 121\n", + "Update already exists with ID: 181\n", + "Entry already exists for update_id: 181 and image_id: 121\n", + "Update already exists with ID: 182\n", + "Update already exists with ID: 183\n", + "quality: 50\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 122\n", + "Update already exists with ID: 184\n", + "Entry already exists for update_id: 184 and image_id: 122\n", + "Update already exists with ID: 185\n", + "Update already exists with ID: 186\n", + "Update already exists with ID: 187\n", + "quality: 50\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 123\n", + "Update already exists with ID: 188\n", + "Entry already exists for update_id: 188 and image_id: 123\n", + "Update already exists with ID: 189\n", + "Update already exists with ID: 190\n", + "Update already exists with ID: 191\n", + "Update already exists with ID: 192\n", + "Update already exists with ID: 193\n", + "quality: 35\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 124\n", + "Update already exists with ID: 194\n", + "Entry already exists for update_id: 194 and image_id: 124\n", + "Update already exists with ID: 195\n", + "quality: 35\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 125\n", + "Update already exists with ID: 196\n", + "Entry already exists for update_id: 196 and image_id: 125\n", + "Update already exists with ID: 197\n", + "Update already exists with ID: 198\n", + "quality: 35\n", + "width, height: (2452, 1630)\n", + "Image already exists with ID: 126\n", + "Update already exists with ID: 199\n", + "Entry already exists for update_id: 199 and image_id: 126\n", + "Update already exists with ID: 200\n", + "quality: 45\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 127\n", + "Update already exists with ID: 201\n", + "Entry already exists for update_id: 201 and image_id: 127\n", + "Update already exists with ID: 202\n", + "Update already exists with ID: 203\n", + "Update already exists with ID: 204\n", + "Update already exists with ID: 205\n", + "Update already exists with ID: 206\n", + "Update already exists with ID: 207\n", + "Update already exists with ID: 208\n", + "Update already exists with ID: 209\n", + "quality: 65\n", + "width, height: (2016, 1512)\n", + "Image already exists with ID: 128\n", + "Update already exists with ID: 210\n", + "Entry already exists for update_id: 210 and image_id: 128\n", + "Update already exists with ID: 211\n", + "Update already exists with ID: 212\n", + "quality: 90\n", + "width, height: (393, 552)\n", + "Image already exists with ID: 129\n", + "Update already exists with ID: 213\n", + "Entry already exists for update_id: 213 and image_id: 129\n", + "quality: 35\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 130\n", + "Update already exists with ID: 214\n", + "Entry already exists for update_id: 214 and image_id: 130\n", + "Update already exists with ID: 215\n", + "Update already exists with ID: 216\n", + "Update already exists with ID: 217\n", + "Update already exists with ID: 218\n", + "Update already exists with ID: 219\n", + "quality: 45\n", + "width, height: (3072, 2048)\n", + "Image already exists with ID: 131\n", + "Update already exists with ID: 220\n", + "Entry already exists for update_id: 220 and image_id: 131\n", + "quality: 55\n", + "width, height: (2100, 1574)\n", + "Image already exists with ID: 132\n", + "Update already exists with ID: 221\n", + "Entry already exists for update_id: 221 and image_id: 132\n", + "quality: 20\n", + "width, height: (3216, 2144)\n", + "Image already exists with ID: 133\n", + "quality: 80\n", + "width, height: (1072, 1608)\n", + "Image already exists with ID: 134\n", + "Update already exists with ID: 222\n", + "Entry already exists for update_id: 222 and image_id: 133\n", + "Entry already exists for update_id: 222 and image_id: 134\n", + "Update already exists with ID: 223\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 135\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 136\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 137\n", + "Update already exists with ID: 224\n", + "Entry already exists for update_id: 224 and image_id: 135\n", + "Entry already exists for update_id: 224 and image_id: 136\n", + "Entry already exists for update_id: 224 and image_id: 137\n", + "Update already exists with ID: 225\n", + "Update already exists with ID: 226\n", + "Update already exists with ID: 227\n", + "Update already exists with ID: 228\n", + "Update already exists with ID: 229\n", + "Update already exists with ID: 230\n", + "Update already exists with ID: 231\n", + "Update already exists with ID: 232\n", + "quality: 30\n", + "width, height: (4272, 2848)\n", + "Image already exists with ID: 138\n", + "Update already exists with ID: 233\n", + "Entry already exists for update_id: 233 and image_id: 138\n", + "Update already exists with ID: 234\n", + "Update already exists with ID: 235\n", + "Update already exists with ID: 236\n", + "Update already exists with ID: 237\n", + "Update already exists with ID: 238\n", + "Update already exists with ID: 239\n", + "Update already exists with ID: 240\n", + "Update already exists with ID: 241\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 139\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 140\n", + "Update already exists with ID: 242\n", + "Entry already exists for update_id: 242 and image_id: 139\n", + "Entry already exists for update_id: 242 and image_id: 140\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 141\n", + "Update already exists with ID: 243\n", + "Entry already exists for update_id: 243 and image_id: 141\n", + "quality: 90\n", + "width, height: (525, 394)\n", + "Image already exists with ID: 142\n", + "Update already exists with ID: 244\n", + "Entry already exists for update_id: 244 and image_id: 142\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 143\n", + "quality: 90\n", + "width, height: (1008, 756)\n", + "Image already exists with ID: 144\n", + "Update already exists with ID: 245\n", + "Entry already exists for update_id: 245 and image_id: 143\n", + "Entry already exists for update_id: 245 and image_id: 144\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 145\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "Image already exists with ID: 146\n", + "Update already exists with ID: 246\n", + "Entry already exists for update_id: 246 and image_id: 145\n", + "Entry already exists for update_id: 246 and image_id: 146\n", + "quality: 40\n", + "width, height: (2272, 1704)\n", + "Image already exists with ID: 147\n", + "Update already exists with ID: 247\n", + "Entry already exists for update_id: 247 and image_id: 147\n", + "quality: 55\n", + "width, height: (2272, 1704)\n", + "Image already exists with ID: 148\n", + "Update already exists with ID: 248\n", + "Entry already exists for update_id: 248 and image_id: 148\n", + "Update already exists with ID: 249\n", + "Update already exists with ID: 250\n", + "Update already exists with ID: 251\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "Image already exists with ID: 149\n", + "Update already exists with ID: 252\n", + "Entry already exists for update_id: 252 and image_id: 149\n", + "Update already exists with ID: 253\n", + "Update already exists with ID: 254\n", + "Update already exists with ID: 255\n", + "Update already exists with ID: 256\n", + "quality: 30\n", + "width, height: (2016, 1512)\n", + "Image already exists with ID: 150\n", + "Update already exists with ID: 257\n", + "Entry already exists for update_id: 257 and image_id: 150\n", + "Update already exists with ID: 258\n", + "quality: 85\n", + "width, height: (1024, 1536)\n", + "Image already exists with ID: 151\n", + "Update already exists with ID: 259\n", + "Entry already exists for update_id: 259 and image_id: 151\n", + "quality: 30\n", + "width, height: (2592, 1944)\n", + "Image already exists with ID: 152\n", + "Update already exists with ID: 260\n", + "Entry already exists for update_id: 260 and image_id: 152\n", + "Update already exists with ID: 261\n", + "quality: 65\n", + "width, height: (2272, 1704)\n", + "New image inserted with ID: 153\n", + "New update inserted with ID: 262\n", + "New entry inserted for update_id: 262 and image_id: 153\n", + "quality: 55\n", + "width, height: (2272, 1704)\n", + "New image inserted with ID: 154\n", + "New update inserted with ID: 263\n", + "New entry inserted for update_id: 263 and image_id: 154\n", + "New update inserted with ID: 264\n", + "quality: 40\n", + "width, height: (2272, 1704)\n", + "New image inserted with ID: 155\n", + "New update inserted with ID: 265\n", + "New entry inserted for update_id: 265 and image_id: 155\n", + "New update inserted with ID: 266\n", + "New update inserted with ID: 267\n", + "quality: 25\n", + "width, height: (2272, 1704)\n", + "New image inserted with ID: 156\n", + "quality: 65\n", + "width, height: (2272, 1704)\n", + "New image inserted with ID: 157\n", + "New update inserted with ID: 268\n", + "New entry inserted for update_id: 268 and image_id: 156\n", + "New entry inserted for update_id: 268 and image_id: 157\n", + "New update inserted with ID: 269\n", + "quality: 40\n", + "width, height: (1704, 2272)\n", + "New image inserted with ID: 158\n", + "New update inserted with ID: 270\n", + "New entry inserted for update_id: 270 and image_id: 158\n", + "quality: 35\n", + "width, height: (1512, 2016)\n", + "New image inserted with ID: 159\n", + "New update inserted with ID: 271\n", + "New entry inserted for update_id: 271 and image_id: 159\n", + "quality: 30\n", + "width, height: (1512, 2016)\n", + "New image inserted with ID: 160\n", + "New update inserted with ID: 272\n", + "New entry inserted for update_id: 272 and image_id: 160\n", + "quality: 45\n", + "width, height: (1512, 2016)\n", + "New image inserted with ID: 161\n", + "New update inserted with ID: 273\n", + "New entry inserted for update_id: 273 and image_id: 161\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "New image inserted with ID: 162\n", + "New update inserted with ID: 274\n", + "New entry inserted for update_id: 274 and image_id: 162\n", + "New update inserted with ID: 275\n", + "New update inserted with ID: 276\n", + "New update inserted with ID: 277\n", + "New update inserted with ID: 278\n", + "New update inserted with ID: 279\n", + "New update inserted with ID: 280\n", + "New update inserted with ID: 281\n", + "New update inserted with ID: 282\n", + "New update inserted with ID: 283\n", + "quality: 35\n", + "width, height: (1512, 2016)\n", + "New image inserted with ID: 163\n", + "New update inserted with ID: 284\n", + "New entry inserted for update_id: 284 and image_id: 163\n", + "New update inserted with ID: 285\n", + "quality: 35\n", + "width, height: (2016, 1512)\n", + "New image inserted with ID: 164\n", + "New update inserted with ID: 286\n", + "New entry inserted for update_id: 286 and image_id: 164\n", + "New update inserted with ID: 287\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "New image inserted with ID: 165\n", + "New update inserted with ID: 288\n", + "New entry inserted for update_id: 288 and image_id: 165\n", + "New update inserted with ID: 289\n", + "quality: 35\n", + "width, height: (1512, 2016)\n", + "New image inserted with ID: 166\n", + "New update inserted with ID: 290\n", + "New entry inserted for update_id: 290 and image_id: 166\n", + "New update inserted with ID: 291\n", + "quality: 55\n", + "width, height: (1512, 2016)\n", + "New image inserted with ID: 167\n", + "New update inserted with ID: 292\n", + "New entry inserted for update_id: 292 and image_id: 167\n", + "New update inserted with ID: 293\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "New image inserted with ID: 168\n", + "New update inserted with ID: 294\n", + "New entry inserted for update_id: 294 and image_id: 168\n", + "New update inserted with ID: 295\n", + "quality: 45\n", + "width, height: (2016, 1512)\n", + "New image inserted with ID: 169\n", + "New update inserted with ID: 296\n", + "New entry inserted for update_id: 296 and image_id: 169\n", + "New update inserted with ID: 297\n", + "quality: 40\n", + "width, height: (2016, 1512)\n", + "New image inserted with ID: 170\n", + "New update inserted with ID: 298\n", + "New entry inserted for update_id: 298 and image_id: 170\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "New image inserted with ID: 171\n", + "quality: 90\n", + "width, height: (1008, 756)\n", + "New image inserted with ID: 172\n", + "New update inserted with ID: 299\n", + "New entry inserted for update_id: 299 and image_id: 171\n", + "New entry inserted for update_id: 299 and image_id: 172\n", + "New update inserted with ID: 300\n", + "quality: 40\n", + "width, height: (1512, 2016)\n", + "New image inserted with ID: 173\n", + "New update inserted with ID: 301\n", + "New entry inserted for update_id: 301 and image_id: 173\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "New image inserted with ID: 174\n", + "quality: 90\n", + "width, height: (756, 1008)\n", + "New image inserted with ID: 175\n", + "New update inserted with ID: 302\n", + "New entry inserted for update_id: 302 and image_id: 174\n", + "New entry inserted for update_id: 302 and image_id: 175\n", + "New update inserted with ID: 303\n", + "New update inserted with ID: 304\n", + "New update inserted with ID: 305\n", + "New update inserted with ID: 306\n", + "New update inserted with ID: 307\n" + ] + } + ], + "source": [ + "# create all the updates!\n", + "\n", + "create_updates_and_images(\"A1\", \"2008\", [], '''- Discovered in 2008 [HM2 draft, page 44]\n", + " - No information other than that they were logged and they are \"worth a go down and look\"\n", + "''')\n", + "create_updates_and_images(\"A1\", \"2022\", [\"A1-2022.jpeg\"], '''- Relogged in 2022\n", + " - Rhys remembers going down one of them once upon a time so likely dead?\n", + " - A1 Has two stainless bolts in it\n", + "''')\n", + "\n", + "create_updates_and_images(\"A2\", \"2008\", [], '''- Discovered in 2008 [HM2 draft, page 44]\n", + " - No information other than that they were logged and they are \"worth a go down and look\"\n", + "''')\n", + "create_updates_and_images(\"A2\", \"2022\", [\"A2-2022.jpeg\"], '''- Relogged in 2022\n", + " - Rhys remembers going down one of them once upon a time so likely dead?\n", + "''')\n", + "\n", + "create_updates_and_images(\"A3\", \"2008\", [], '''- Discovered in 2008 [HM2 draft, page 44]\n", + " - No information other than that they were logged and they are \"worth a go down and look\"\n", + "''')\n", + "create_updates_and_images(\"A3\", \"2022\", [\"A3-2022.jpeg\"], '''- Relogged in 2022\n", + " - Rhys remembers going down one of them once upon a time so likely dead?\n", + "''')\n", + "\n", + "create_updates_and_images(\"A4\", \"2008\", [], '''- Discovered in 2008 [HM2 draft, page 44]\n", + " - No information other than that they were logged and they are \"worth a go down and look\"\n", + "''')\n", + "create_updates_and_images(\"A4\", \"2022\", [\"A4-2022.jpeg\"], '''- Relogged in 2022\n", + " - Rhys remembers going down one of them once upon a time so likely dead?\n", + "''')\n", + "\n", + "create_updates_and_images(cave_name=\"ABBA 4\", year=\"2019\", images=[], description=\"\"\"- Possible cave entrance found by BenR on the east face of planje during N9 trip in 2019\n", + "- ABBA 4 is likely to be 46.2676, 13.75168\n", + "- Should revisit to confirm\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"ABBA 5\", year=\"2019\", images=[], description=\"\"\"- Possible cave entrance found by BenR on the east face of planje during N9 trip in 2019\n", + "- ABBA 5 is likely to be 46.26749, 13.75123\n", + "- Should revisit to confirm\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Andy's Secret Dig\", year=\"2022\", images=[\"Andy's Dig-2022.jpeg\"], description=\"\"\"- No longer a secret as of 2022\n", + " - Relogged on the GPS\n", + " - Still diggable but pretty sketchy, with tent poles holding up boulders\n", + " - Reached by going along the old Mig path before turning down a gulley\n", + " - Can also be reached from below, walking up the gulley\n", + " - From the path down the Gulley, climb up towards an obvious alcove\n", + " - Dig is in the back left of the alcove, and down a 5m free climb\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"B5\", year=\"2022\", images=[\"B5-2022.jpeg\", \"B5 Close Up-2022.jpeg\"], description=\"\"\"- Spotted in 2022 from red paint marking\n", + " - No known information\n", + " - Gravel filled and would require a lot of work\n", + " - Very mossy, not promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"B10\", year=\"1995\", images=[], description=\"\"\"First discovered during the blowing holes recce of 1995 [HM3, page 61, page 104]\"\"\")\n", + "create_updates_and_images(cave_name=\"B10\", year=\"2010\", images=[\"B10-2010.jpg\"], description=\"\"\"[HM3, page 61, page 104]\"\"\")\n", + "create_updates_and_images(cave_name=\"B10\", year=\"2014\", images=[], description=\"\"\"- Dug in 2014\n", + " - Contains a narrow tube suitable for digging\n", + " - More digging required\n", + "[HM3, page 61, page 104]\"\"\")\n", + "create_updates_and_images(cave_name=\"B10\", year=\"2023\", images=[\"B10-2023-1.jpeg\", \"B10-2023-2.jpeg\"], description=\"\"\"- Relogged in 2023\n", + " - Didn't go in, but looks interesting from the outside\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"B12\", year=\"2022\", images=[\"B12-2022.jpeg\"], description=\"\"\"- Spotted in 2022 from red paint marking\n", + " - No known historical information\n", + " - Red paint can just be seen in bottom of image\n", + " - Appears to be a 10m drop blocked by boulders\n", + " - Digging attempted without tools but little progress made\n", + " - Requires long chisel for entrance widening and oversuit to protect (squeeze not passed due to this)\n", + " - Entrance may need traverse line for protection through squeeze\n", + " - Definitely worth returning with tools\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"B20\", year=\"2022\", images=[\"B20-2022.jpeg\"], description=\"\"\"- Re-logged in 2022\n", + " - Good digging potential but hasn't been investigated to the end\n", + " - If it connected with M2, it would give extra height to the system\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"B91\", year=\"2023\", images=[\"B91-2023-2.jpeg\", \"B91-2023-1.jpeg\"], description=\"\"\"- Relogged in 2023\n", + " - Small hole 2m deep looks diggable, can’t see if completely dead. No obvious draft\n", + " - Should rename this as B91 means nothing\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"B93\", year=\"2023\", images=[\"B93-2023.jpeg\"], description=\"\"\"- Relogged in 2023\n", + " - Should be renamed as B93 doesn't mean anything\n", + " - Small hole going sideways 2m, no obvious draft but easy digging\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"B94\", year=\"2024\", images=[], description=\"\"\"No known information, near JJ2. Location 46°15'16\"N 13°45'30\"E. In archive \"2019_Migoveccavelocations\" GPX file.\"\"\")\n", + "create_updates_and_images(cave_name=\"B95\", year=\"2024\", images=[], description=\"\"\"No known information, near bone cave. Location 46°15'15\"N 13°45'33\"E. In archive \"2019_Migoveccavelocations\" GPX file.\"\"\")\n", + "create_updates_and_images(cave_name=\"B96\", year=\"2024\", images=[], description=\"\"\"No known information, near JB and JJ2, a bit down the cliff face. Location 46°15'16\"N 13°45'28\"E. In the archive \"2019_Migoveccavelocations\" GPX file.\"\"\")\n", + "create_updates_and_images(cave_name=\"B97\", year=\"2024\", images=[], description=\"\"\"No known information. Might be the same as \"JB\" as it's logged very close. Just south of JJ2. Location 46°15'15\"N 13°45'29\"E. In archive \"2019_Migoveccavelocations\" GPX file.\"\"\")\n", + "create_updates_and_images(cave_name=\"B98\", year=\"2024\", images=[], description=\"\"\"No known information. About 60m due west from B93. Location 46°15'13\"N 13°45'31\"E. In archive \"2019_Migoveccavelocations\" GPX file.\"\"\")\n", + "create_updates_and_images(cave_name=\"B99\", year=\"2024\", images=[], description=\"\"\"No known information. About 60m WSW from B98, down the cliff face. Location 46°15'12\"N 13°45'28\"E. In archive \"2019_Migoveccavelocations\" GPX file.\"\"\")\n", + "create_updates_and_images(cave_name=\"B100\", year=\"2024\", images=[], description=\"\"\"No known information. Was in one of the yellow club GPSs, but not in the archive \"2019_Migoveccavelocations\" file. Located in the cliff face NW of V10. Added to archive file as of 25/06/2024. Location 46.25597 N, 13.75801 E.\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Bone Cave\", year=\"2022\", images=[\"Bone-2022.jpeg\"], description=\"\"\"- Mentioned in passing in HM1, page 215, but no information provided other than it being near the V10 valley\n", + "- 2022\n", + " - Note that Bone on the old GPS coordinates seems to correspond to a random shake hole by the tents, likely a different cave since V10 valley infers it being on the cliff\n", + " - No cave there, only a 1 foot deep hole\n", + " - Image is of the shake hole by the tents\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"C1\", year=\"2022\", images=[\"C1-2022.jpeg\"], description=\"\"\"- Area C being the area around the container\n", + "- Spotted and logged in 2022\n", + " - No previous entrance marked on the GPS in the area\n", + " - Goes around 10m until a small boulder filled chamber\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"C2, Bonsai Pot, Teeny Tiny Rhododendron Pot\", year=\"2023\", images=[\"C2-2023-1.jpeg\", \"C2-2023-2.jpeg\"], description=\"\"\"- (Re)discovered in 2023\n", + " - Named as there are loads of small Rhododendrons around the entrance\n", + " - Large initial pit with various side chambers\n", + " - Low crawl leads to various small chambers which all die, some after squeezes and short down climbs\n", + " - Short climb up leads to a pitch found to have spits\n", + " - This pitch descends quite a way, splitting into three routes all of which are blocked and die\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"C3\", year=\"2023\", images=[\"C3-2023-1.jpeg\", \"C3-2023-2.jpeg\"], description=\"\"\"- Spotted in 2023\n", + " - Not yet descended\n", + " - No signs of spits, but could have been dropped using naturals\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Coincidence Cave\", year=\"2015\", images=[], description=\"\"\"Discovered in 2015 [HM3, page 113]\n", + " - Initially dug but requires more work\"\"\")\n", + "create_updates_and_images(cave_name=\"Coincidence Cave\", year=\"2018\", images=[], description=\"\"\"- Revisited in 2018 (not yet written up)\n", + " - Breakthrough made to series of chambers\n", + "- Further explored by the Slovenians after 2018\n", + " - All leads seem to have died, from word of mouth\"\"\")\n", + "create_updates_and_images(cave_name=\"Coincidence Cave\", year=\"2022\", images=[], description=\"\"\"- Revisited in 2022\n", + " - End of cave terminates in boulder floor at base of pitch, this would be difficult to dig\n", + " - According to Matti, draft disappears into hole above final pitch, may be diggable\n", + " - Perry has started bolt climbing avens from entrance, first one dead\"\"\")\n", + "create_updates_and_images(cave_name=\"Coincidence Cave\", year=\"2023\", images=[], description=\"\"\"Revisited, draughting dig in final chamber looks promising, banged by Fratnik Perry and the gang, needs more work but is source of the draught.\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"D1, Desperation 1\", year=\"2023\", images=[\"D1-2023-1.jpeg\", \"D1-2023-2.jpeg\"], description=\"\"\"- Discovered by David Wilson Jnr\n", + " - Named desperation due to convenient use as an emergency toilet\n", + "- Revisited in 2023\n", + " - Doesn't seem to go anywhere, not promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"DW's 1996 Dig\", year=\"2008\", images=[], description=\"\"\"- Nearby to Royston Vasey, mentioned in HM2 draft page 44, 2008\n", + " - Worth going back down again\"\"\")\n", + "create_updates_and_images(cave_name=\"DW's 1996 Dig\", year=\"2022\", images=[], description=\"\"\"- Relocation was attempted in 2022\n", + " - No obvious dig could be found, may be the small filled in hole 5m towards Kuk from Royston Vasey\n", + " - Not promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"E1\", year=\"2007\", images=[\"e1-2007.jpg\", \"e1-2007(2).jpg\"], description=\"\"\"- Discovered in 2007 [HM2 draft, page 14]\n", + " - A 25m pitch leading to small windows which require widening to pass\"\"\")\n", + "create_updates_and_images(cave_name=\"E1\", year=\"2008\", images=[\"e1-2008.jpg\"], description=\"\"\"- Revisited in 2008 [HM2 draft, page 41]\n", + " - \"small crawl\" ongoing, but abandoned. Still a lead?\n", + " - \"deep deep\" crawl not dead, dug out to very tight pitch-head. Surface survey, tied centerline to M2 entrance\"\"\")\n", + "create_updates_and_images(cave_name=\"E1\", year=\"2022\", images=[\"E1-2022.jpeg\"], description=\"\"\"- Revisited in 2009 [HM2 2019 draft, page 64]\n", + " - cave approx 30m deep\n", + " - dropped second pitch (capping and chiselling) into chamber, dug in floor to bedrock. Quote: \"No better nor worst than capped pitch, but not the stunning lead\n", + "we were hoping for.\" Photos in Slov 2009 folder\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"E2\", year=\"2022\", images=[\"E2-2022.jpeg\"], description=\"\"\"- Relogged in 2022\n", + "- Visited either 2018 or 2019\n", + " - Ben R remembers poking around it with Janet at some point\n", + " - No obvious leads that he can remember\n", + " - Could be revisited\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"E6\", year=\"2007\", images=[\"e6-2007.jpg\"], description=\"\"\"- Photo from 2007, information from filename. Red paint marking \"E7\" noted. No other info\n", + "- Unclear if a cave\n", + "- could be revisited\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"E7\", year=\"2007\", images=[\"e7-2007.jpg\"], description=\"\"\"- Photo from 2007, information from filename. No other info\n", + "- Unclear if a cave\n", + "- could be revisited\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"E8\", year=\"2022\", images=[\"E8-2022.jpeg\"], description=\"\"\"- Not a cave\n", + " - Logged as \"obvcave\" on historical GPS files\n", + " - Just an alcove, like K1\n", + " - Small free climb through to the roof\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Gelateria, B92\", year=\"2019\", images=[], description=\"\"\"- Logged as B92 on old GPS data (not sure when)\n", + "- Uncovered in 2019 due to low snow levels\n", + " - Dug a little but not very promising\n", + " - It is a real cave but get's very tight very quickly and the digging could continue for a long time\"\"\")\n", + "create_updates_and_images(cave_name=\"Gelateria, B92\", year=\"2023\", images=[\"Gelateria-2023-1.jpeg\", \"Gelateria-2023-2.jpeg\"], description=\"\"\"- Poked again in 2023\n", + " - Christened Gelateria since it's next to where we get snow for the bivi\n", + " - Still doesn't look promising, but recovered some digging things left from 2019\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Gondolin\", year=\"2017\", images=[], description=\"\"\"- Discovered in 2017 [HM3, page 232]\n", + " - Pushed for three pitches before the cave dies\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Hare Cave\", year=\"2004\", images=[], description=\"\"\"- Description in HM1, page 183, 2004\n", + " - Was guarded by a large hare in 2003, so left until 2004\n", + " - Draughting strongly from the floor\n", + " - Seems to be a false floor at the top of a rift, could be dug\n", + " - Small phreatic \"torpedo\" tubes found in upper levels\"\"\")\n", + "create_updates_and_images(cave_name=\"Hare Cave\", year=\"2005\", images=[], description=\"\"\"- Revisited in 2005 [HM1, page 191]\n", + " - Torpedo tubes all found to close down, no leads left\"\"\")\n", + "create_updates_and_images(cave_name=\"Hare Cave\", year=\"2006\", images=[], description=\"\"\"- Revisited in 2006 [HM1, page 206]\n", + " - Investigated a phreatic tube but it didn't seem to go anywhere\n", + " - A strongly draughting dig in the centre of the chamber but more digging is required to see if this goes or not\"\"\")\n", + "create_updates_and_images(cave_name=\"Hare Cave\", year=\"2017\", images=[], description=\"\"\"- Revisited in 2017 [HM3, page 231]\n", + " - As previously reported, the \"torpedo tubes\" do not go and no more leads were found\"\"\")\n", + "create_updates_and_images(cave_name=\"Hare Cave\", year=\"2022\", images=[\"Hare-2022.jpeg\"], description=\"\"\"Relogged and photo taken.\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Jailbreak\", year=\"2013\", images=[], description=\"\"\"- Discovered in 2013 [HM3, page 34]\n", + " - Although it leads to a chamber with many ways on, all of them seem to die\n", + " - Perhaps possible to dig, but no easy places\"\"\")\n", + "create_updates_and_images(cave_name=\"Jailbreak\", year=\"2014\", images=[], description=\"\"\"- Revisited and killed in 2014 [HM3, page 58, page 104]\n", + " - Survey and description in HM3 reference\n", + " - Main lead was killed after hauling a boulder out of the way, other lead was also killed\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Janet's Little Cave, MLC, My Little Cave\", year=\"2004\", images=[], description=\"\"\"- Description in HM1, page 184, 2004\n", + " - Small airy passage in the side of a shakehole near the Kuk path\n", + " - Tube from first chamber into second chamber that hasn't been pushed\n", + " - Ongoing lead as of 2004\"\"\")\n", + "create_updates_and_images(cave_name=\"Janet's Little Cave, MLC, My Little Cave\", year=\"2009\", images=[\"MLC-2009.jpg\", \"MLC-2009(2).jpg\"], description=\"\"\"\"\"\")\n", + "create_updates_and_images(cave_name=\"Janet's Little Cave, MLC, My Little Cave\", year=\"2019\", images=[], description=\"\"\"- Explored and surveyed in 2019 by Tanguy Racine\n", + " - This was when the Disto data was added to the GitHub repo\n", + " - Presumably found to be dead? No indication of any leads\"\"\")\n", + "create_updates_and_images(cave_name=\"Janet's Little Cave, MLC, My Little Cave\", year=\"2022\", images=[\"MLC-2022.jpeg\"], description=\"\"\"- Revisited by DPW and Leo Antwis 2022\n", + " - Dug further but slow progress and not promising\n", + " - Also found cave to be dead, after checking thoroughly for leads (including through tight hole)\n", + " - Only revisited because Ben R forgot he went here in 2019, which is why we need this atlas!!!!\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"JCC\", year=\"2008\", images=[], description=\"\"\"- Unsure if this is a cave or not, a GPS waypoint of this name is mentioned in HM2 draft, page 44, 2008\n", + " - East of M19 there is large entrance with a draughting dig that looks promising\"\"\")\n", + "create_updates_and_images(cave_name=\"JCC\", year=\"2023\", images=[\"JCC-2023-1.jpeg\", \"JCC-2023-2.jpeg\"], description=\"\"\"- Relogged in 2023\n", + " - This description does indeed hold true, but dig wasn't investigated\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"JJ1\", year=\"2006\", images=[], description=\"\"\"- Discovered in 2006, HM1 page 214\n", + " - Multiple caves in the V8 valley, unclear which is JJ1 from HM1 description alone\n", + " - Seems to be a small chamber, a blowing aven and an unpushed wet crawl\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"JJ2, Pella's Feathers\", year=\"2006\", images=[], description=\"\"\"- Discovered in 2006, HM1 page 214\n", + " - Many caves in the V9 valley, but this one is an obvious triangular hole\n", + " - A crawl continues for 10m before splitting\n", + " - The left branch dies, whilst the right branch ends with a rock that requires clearing to progress further\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"JJ3, Hawk Cave\", year=\"2006\", images=[], description=\"\"\"- Discovered in 2006, HM1 page 216\n", + " - Initially discovered by Andrej Fratnik and \"the other Andrej\" back in the 70s\n", + " - Rough survey and description given in HM1 (see above page)\n", + " - Many drafting leads left due to lack of digging equipment and over suits\"\"\")\n", + "create_updates_and_images(cave_name=\"JJ3, Hawk Cave\", year=\"2007\", images=[], description=\"\"\"- Revisited in 2007 [HM2 draft, page 15]\n", + " - Left ongoing due to lack of rope and time\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"JJ4\", year=\"2006\", images=[], description=\"\"\"- Discovered in 2006, HM1 page 215\n", + " - A winder on the side of Kuk\n", + " - No indication of any leads\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"JJ5\", year=\"2006\", images=[], description=\"\"\"- Discovered in 2006, HM1 page 215\n", + " - Crawls and chambers end in a desperate dig beneath hanging death\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"JJ6\", year=\"2006\", images=[], description=\"\"\"- Not a cave, but a waypoint set in 2006, HM1 page 215\n", + " - Many caves are visible from this point\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K1, The Goat Shelter\", year=\"2022\", images=[\"K1-2022.jpeg\"], description=\"\"\"- An obvious entrance on the flank of Kuk that only goes to a higher entrance with no leads [HM1, page 195, 2005]\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K2\", year=\"2005\", images=[], description=\"\"\"- Discovered in 2005 [HM1, page 195]\n", + " - Easy digging and massive draught\n", + " - Rock is very loose\n", + " - Two days of digging in 2005\"\"\")\n", + "create_updates_and_images(cave_name=\"K2\", year=\"2012\", images=[], description=\"\"\"- Revisited in 2012 [HM2 draft, page 136]\n", + " - Seems to have the most potential of all the area K caves\n", + " - Much digging required before it goes\"\"\")\n", + "create_updates_and_images(cave_name=\"K2\", year=\"2015\", images=[], description=\"\"\"- Revisited in 2015 [HM3, page 140]\n", + " - Found to \"not go\" although given it was an existing dig, this may have been subjective\"\"\")\n", + "create_updates_and_images(cave_name=\"K2\", year=\"2022\", images=[\"K2-2022.jpeg\"], description=\"\"\"- Revisited in 2022\n", + " - Goes into small chamber with dig off to the side\n", + " - Possible to dig in crawl sloping up towards the surface\n", + " - No draft felt on a very warm and still day\n", + " - Not very promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K3\", year=\"2005\", images=[], description=\"\"\"A large 30m shaft on top of Zeleni Vrh, believed bottomed in the early 90s [HM1, page 195, 2005]\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K4\", year=\"2005\", images=[], description=\"\"\"Entrance on north face of Kuk, found to just be a window with light filtering in from above [HM1, page 195, 2005]\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K5\", year=\"2005\", images=[], description=\"\"\"Entrance on west end of north Kuk face [HM1, page 195, 2005]\n", + " - Abseiled down to scree floor but unclear if cave is completely dead\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K6\", year=\"2005\", images=[], description=\"\"\"- First mentioned 2005\n", + " - Sharp crawl through to mud floor opening out with small draught, could be pushed further with elbow pads [HM1, page 195, 2005]\"\"\")\n", + "create_updates_and_images(cave_name=\"K6\", year=\"2012\", images=[], description=\"\"\"- Revisited in 2012 [HM2 draft, page 136]\n", + " - Good progress was made with digging\"\"\")\n", + "create_updates_and_images(cave_name=\"K6\", year=\"2022\", images=[\"K6-2022.jpeg\"], description=\"\"\"- Revisited in 2022\n", + " - Closes down into a dig which gets narrower not bigger\n", + " - No obvious draft on a very warm and still day\n", + " - Could be dug further but not very promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K7\", year=\"2005\", images=[\"K7-2005-1.jpeg\", \"K7-2005-2.jpeg\"], description=\"\"\"- A dodgy chamber reached by a 5m clamber over boulders [HM1, page 195, 2005]\n", + " - Small draught, may be possible to dig\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K8\", year=\"2005\", images=[], description=\"\"\"- Overhang into a small choked chamber [HM1, page 195, 2005]\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K9\", year=\"2005\", images=[], description=\"\"\"- Quickly opens out into a 15m pitch [HM1, page 196, 2005]\n", + " - A twin pitch is reachable from a large window\n", + " - Dig potential in a draughting collection of rubble\"\"\")\n", + "create_updates_and_images(cave_name=\"K9\", year=\"2022\", images=[\"K9-2022.jpeg\"], description=\"\"\"- Revisited in 2022\n", + " - Located the entrance to photograph and log the GPS location, but pitch not descended\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K10, Torn Testicle\", year=\"2005\", images=[], description=\"\"\"- A very small hole currently blocked but with obvious continuation [HM1, page 196, 2005]\n", + " - Currently only descends 3m\n", + " - stoned rattle when pushed to the north\n", + " - Would need to remove sharp rock blades and lift out boulders in order to progress any further\"\"\")\n", + "create_updates_and_images(cave_name=\"K10, Torn Testicle\", year=\"2022\", images=[\"K10-2022.jpeg\"], description=\"\"\"- Revisited in 2022\n", + " - Human sized hole in pavement that's very grabby and unpleasant\n", + " - Person sized alcove at the bottom, with another person sized alcove off to the side at floor level\n", + " - No indication of any continuation or possible digs, not promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K11\", year=\"2005\", images=[], description=\"\"\"- Scree climb into a chamber at the end of a shakehole with a cold draught and good digging possibilities [HM1, page 196, 2005]\"\"\")\n", + "create_updates_and_images(cave_name=\"K11\", year=\"2012\", images=[], description=\"\"\"- Revisited in 2012, presumed to be reasonably promising but not incredible [HM2 draft, page 136]\"\"\")\n", + "create_updates_and_images(cave_name=\"K11\", year=\"2022\", images=[\"K11-2022.jpeg\"], description=\"\"\"- Revisited in 2022\n", + " - Obvious entrance in large shake hole which leads to moderately sized chamber\n", + " - Small descending hole on right side of entrance which may be possible to dig\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K12, Victoria Coach Station\", year=\"2005\", images=[], description=\"\"\"A very large entrance leading to a large snow slope [HM1, page 196, 2005]\n", + " - Enormous draught in places, but many crawls blocked with ice and rubble\"\"\")\n", + "create_updates_and_images(cave_name=\"K12, Victoria Coach Station\", year=\"2012\", images=[], description=\"\"\"Revisited in 2012, presumed to be reasonably promising but not incredible [HM2 draft, page 136]\"\"\")\n", + "create_updates_and_images(cave_name=\"K12, Victoria Coach Station\", year=\"2015\", images=[], description=\"\"\"- Revisited in 2015 [HM3, page 140]\n", + " - Two days of digging resulted in slow progress\n", + " - Crawl get's narrower\n", + " - Still a \"promising\" lead\"\"\")\n", + "create_updates_and_images(cave_name=\"K12, Victoria Coach Station\", year=\"2022\", images=[\"K12-2022.jpg\"], description=\"\"\"- Revisited in 2022\n", + " - Lead to back of main chamber is a dig continuing in a few meters but with a very loose roof which rocks fell from when crawled through\n", + " - Dig is ongoing but sketchy given looseness of surrounding rock\n", + " - Small alcove found between boulders and snow plug by entrance, no continuation but with more melting this may reveal further alcoves\n", + " - No other leads / crawls could be found, leaving only the scary dig\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K13, Pedestrian Subway / Arrivals Hall\", year=\"2005\", images=[], description=\"\"\"- Rift directly above K12 with possible dig to the South East and rift in floor connecting with the K12 main chamber [HM1, page 197, 2005]\"\"\")\n", + "create_updates_and_images(cave_name=\"K13, Pedestrian Subway / Arrivals Hall\", year=\"2022\", images=[\"K13-2022.jpeg\"], description=\"\"\"- Revisited in 2022\n", + " - An infuriatingly good entrance that is completely free of rock and gravel, but unfortunately goes straight back into the roof of K12\n", + " - No indication of any other leads, not promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K14\", year=\"2005\", images=[], description=\"\"\"- A shallow rift leading to a small chamber, likely to break onto the surface but not pushed fully [HM1, page 197, 2005]\"\"\")\n", + "create_updates_and_images(cave_name=\"K14\", year=\"2022\", images=[\"K14-2022.jpeg\"], description=\"\"\"- Revisited in 2022\n", + " - Rift drops down into boulder filled chamber\n", + " - Route going towards surface\n", + " - Another possible dig underneath the entrance but not easy\n", + " - Overall not promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K15, K15i (The Rik-Venn Imaginary Series)\", year=\"2005\", images=[\"K15-2022.jpeg\"], description=\"\"\"- A big blowing and cold cave ending in a dig [HM1, page 197, 2005]\n", + " - Goes in ten meters south and down before reaching a choke underneath a suspended boulder\n", + " - Choke has been dug for one hour but lacked crowbar\"\"\")\n", + "create_updates_and_images(cave_name=\"K15, K15i (The Rik-Venn Imaginary Series)\", year=\"2022\", images=[], description=\"\"\"- Revisited in 2022\n", + " - Good entrance which goes into medium sized chamber but quickly chokes\n", + " - Many small birds living in the cave at time of visit\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K16, The Escalator\", year=\"2005\", images=[\"K16-2022.jpeg\"], description=\"\"\"- A series of holes by the Skrbina path [HM1, page 197, 2005]\n", + " - Many alcoves, strong draught and ice plug at bottom\"\"\")\n", + "create_updates_and_images(cave_name=\"K16, The Escalator\", year=\"2022\", images=[], description=\"\"\"- Revisited in 2022\n", + " - Can be approached from any direction, but be very careful when approaching from above as the entrance is hidden beneath a small overhang making easy to fall into given the steep scree slope\n", + " - A series of large entrances to a single large chamber with steep scree slope\n", + " - At the top of the slope, a small chamber which is not hard to reach was not investigated as we ran out of time\n", + " - At the bottom of the slope there is a small entrance to another chamber, however the entrance is very small and there is a risk of it being sealed by falling scree upon entry\n", + " - Promising, should be revisited\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K17\", year=\"2005\", images=[], description=\"\"\"- Small chamber at top of shakehole on Podriagora (spelling may be incorrect in HM1?) [HM1, page 197, 2005]\n", + " - Easy digging at end but loose and scary\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K18\", year=\"2005\", images=[], description=\"\"\"- Rift near K17 disappears into a 5m pitch to the floor, not bottomed due to lack of rope and hanging death [HM1, page 197, 2005]\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K19, Coach-Crash Dig\", year=\"2005\", images=[\"K19-2005-1.jpeg\", \"K19-2005-2.jpeg\"], description=\"\"\"- Entrance rift in a pile of boulders drops down a few meters the runs down into a gravel pile and opens out [HM1, page 198, 2005]\n", + " - Infamous near death experience for Dave Wilson\n", + " - Still possible to access the cave underneath the fallen boulder\n", + " - Boulder now wedged in rift requires splitting, preferably with caps\"\"\")\n", + "create_updates_and_images(cave_name=\"K19, Coach-Crash Dig\", year=\"2012\", images=[], description=\"\"\"- Revisited in 2012 [HM2 draft, page 136]\n", + " - Digging continued but no further information\"\"\")\n", + "create_updates_and_images(cave_name=\"K19, Coach-Crash Dig\", year=\"2022\", images=[\"K19-2022.jpeg\"], description=\"\"\"- Revisited in 2022\n", + " - Dig looks to have been filled in by falling rock and scree given it's exposed location at the bottom of a large scree slope\n", + " - Gravel chamber is still visible 2 m down, but any digging would result in the surrounding rock collapsing inwards\n", + " - Any dig likely to be filled in within a year or two or scree and rock fall\n", + " - Not promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K20, K-Moss\", year=\"2005\", images=[], description=\"\"\"- Near K15, a small mossy hole with a slight draught [HM1, page 198, 2005]\n", + " - Some digging carried out, but would be easy to continue further\"\"\")\n", + "create_updates_and_images(cave_name=\"K20, K-Moss\", year=\"2022\", images=[\"K20-2022.jpeg\"], description=\"\"\"- Revisited in 2022\n", + " - Hardly an entrance, just a small mossy depression in the ground with no draught or cold air, on a very warm and still day\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K21\", year=\"2012\", images=[], description=\"\"\"- First mentioned as being revisited in 2012 [HM2 draft, page 136]\n", + " - No further information, but not included in list of \"not promising\" entrances, so presumed to be reasonably promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K22\", year=\"2012\", images=[], description=\"\"\"- First mentioned as being revisited in 2012 [HM2 draft, page 136]\n", + " - 'Not at all promising'\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K23\", year=\"2012\", images=[], description=\"\"\"- First mentioned as being revisited in 2012 [HM2 draft, page 136]\n", + " - No further information, but not included in list of \"not promising\" entrances, so presumed to be reasonably promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K24\", year=\"2012\", images=[], description=\"\"\"- First mentioned as being revisited in 2012 [HM2 draft, page 136]\n", + " - 'Not at all promising'\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K25\", year=\"2012\", images=[], description=\"\"\"- First mentioned as being revisited in 2012 [HM2 draft, page 136]\n", + " - 'Not at all promising'\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K26\", year=\"2012\", images=[], description=\"\"\"- First mentioned as being revisited in 2012 [HM2 draft, page 136]\n", + " - No further information, but not included in list of \"not promising\" entrances, so presumed to be reasonably promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K27\", year=\"2022\", images=[\"K27-2022.jpeg\"], description=\"\"\"- First logged in 2022\n", + " - Logged after thinking it was K14\n", + " - Short drop into gravel filled chamber\n", + " - No continuation or possible digs, not promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K28\", year=\"2022\", images=[\"K28-2022.jpeg\"], description=\"\"\"- First logged in 2022\n", + " - A fairly small, draughting, rubble-filled hole about a meter cubed\n", + " - Likely to have been snow covered previously given how sheltered and cold it is\n", + " - Considering draught was felt on a very warm still day, this is a promising indication of nearby cave passage\n", + " - No continuation or digging potential, not promising as a lead in itself\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"K29\", year=\"2022\", images=[\"K29-2022.jpeg\"], description=\"\"\"- Previously logged as K99 on the old GPS files, but no mention of it in any hollow mountain editions so unclear why it broke with the area K naming convention\n", + "- Logged as K29 in 2022\n", + " - A small chamber 5m underneath large boulders\n", + " - Leads to a second small alcove\n", + " - Not promising as a lead in itself, but cold\n", + " - No obvious draught on a very warm and still day\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Keyhole Cave\", year=\"2023\", images=[], description=\"\"\"- Very close to Postcard Cave, see Postcard cave entry for description of location\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"LP1\", year=\"2022\", images=[\"LP1-2022.jpeg\"], description=\"\"\"- Discovered in 2022\n", + " - LP = Limestone Pavement, as previously caves here were named TR1,2,3 etc. but this system breaks down when anyone other than Tanguy finds a cave\n", + " - Small chamber filled with rocks which can be reached from multiple entrances\n", + " - Additional entrance has obvious cave below, likely providing a better entrance but blocked by large rocks\n", + " - Initial hauling and digging of this better entrance\n", + " - Inside loose slope leads to snow plug with crawl going around corner beyond, not pushed as no oversuit available\n", + " - No breakthrough made - good potential, worth revisiting\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"LP2\", year=\"2022\", images=[\"LP2-2022.jpeg\"], description=\"\"\"- Discovered in 2022\n", + " - 2m descent to snow plug\n", + " - Draught disappears in front and to the left in a small rift not possible to dig\n", + " - Snow tasted of high quality, according to Leo\"\"\")\n", + "create_updates_and_images(cave_name=\"LP2\", year=\"2023\", images=[], description=\"\"\"- Revisited in 2023 by Julien\n", + " - Small tunnel to left which rocks bounce down for a while\n", + " - Potentially leads to pitch\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"LP3\", year=\"2022\", images=[\"LP3-2022.jpg\"], description=\"\"\"- Discovered in 2022\n", + " - Not descended, no notes taken at the time\n", + " - May be worth revisiting\"\"\")\n", + "create_updates_and_images(cave_name=\"LP3\", year=\"2023\", images=[], description=\"\"\"- Killed in 2023\n", + " - Bolted and descended about 10m down on single bolt backed up with natural\n", + " - Snow plug about 5m down with pitch continuing to the side of it\n", + " - Passage becomes choked and grabby\n", + " - Slight draft but small and too difficult to dig, effectively dead\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"LP4\", year=\"2022\", images=[\"LP4-2022.jpeg\"], description=\"\"\"- Discovered 2022\n", + " - May have been descended before\n", + " - Likely plugged by snow\n", + " - Unclear from notes whether this is worth returning to\"\"\")\n", + "create_updates_and_images(cave_name=\"LP4\", year=\"2023\", images=[], description=\"\"\"- Visited 2023\n", + " - Didn't go down but stone rattles down a long way\n", + " - Quite promising\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"LP5\", year=\"2022\", images=[\"LP5-2022.jpeg\"], description=\"\"\"- Discovered 2022\n", + " - Big hole with gravel and snow at the bottom\n", + " - Likely connects with LP4\n", + " - Unclear from notes whether this is worth returning to\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"LP6\", year=\"2022\", images=[\"LP6-2022.jpeg\"], description=\"\"\"- Discovered in 2022\n", + " - Hole in side of shake hole blocked by boulder with visible slope underneath\n", + " - Looks possible to widen the entrance\n", + " - Worth revisiting\n", + " - Also logged as TJ1\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"LP7, Gardeners of the Galaxy, The Jaws of Death\", year=\"2022\", images=[\"LP7-2022.jpeg\"], description=\"\"\"- Discovered in 2022\n", + " - A new hole had opened up in a shake hole since the previous expedition before covid\n", + " - Far too loose to descend this year, so instead we chucked a load of rocks down it (many good videos)\n", + " - These are the jaws of death that nearly ate Rory Rose\"\"\")\n", + "create_updates_and_images(cave_name=\"LP7, Gardeners of the Galaxy, The Jaws of Death\", year=\"2023\", images=[], description=\"\"\"Full with snowplug, some people walked on the snow but couldn't get down any further, and walls still looked terrifying.\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"LP8\", year=\"2022\", images=[\"LP8-2022.jpeg\"], description=\"\"\"- Discovered in 2022\n", + " - Not descended but look interesting given entrance is recently exposed above snow plug\n", + " - Worth revisiting, since new entrances may have been revealed\"\"\")\n", + "create_updates_and_images(cave_name=\"LP8\", year=\"2023\", images=[], description=\"\"\"- Revisited in 2023\n", + " - A snow crawl was found but it didn't go very far\n", + " - Rest of the cave seems dead, but high snow levels\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"LP9\", year=\"2022\", images=[\"LP9-2022.jpeg\"], description=\"\"\"- Discovered in 2022\n", + " - Only discovered this cave after leaving the mountain\n", + " - Had initially thought this was PF10 but apparently not, since actual entrance was instead logged as M24, and this entrance as PF10\n", + " - The \"M24\" entrance, which is larger and much further down the pavement has been confirmed as PF10\n", + " - Rocks fall a fair way, definitely worth a look\n", + " - Next to and just above Alex Seaton's old dig into the side of a cliff\"\"\")\n", + "create_updates_and_images(cave_name=\"LP9\", year=\"2023\", images=[], description=\"\"\"- Revisited in 2023\n", + " - Entrance is full of snow so can't hear rocks fall down this year\n", + " - Neither Arun or Astrid could fit into the cave, as entrance is much smaller than it looks\n", + " - Would need some widening for anyone to investigate further\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"LP10\", year=\"2023\", images=[\"LP10-2023-1.jpeg\", \"LP10-2023-2.jpeg\"], description=\"\"\"- Discovered 2023\n", + " - Draughting slightly outwards\n", + " - Could be dug but would require more effort than it's worth\n", + " - Very cold\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"LP11\", year=\"2023\", images=[\"LP11-2023-1.jpeg\", \"LP11-2023-2.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Draughting out slightly\n", + " - Tight rift continues down for about 4m but not investigated due to lack of over suits\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"LP12\", year=\"2023\", images=[\"LP12-2023-1.jpeg\", \"LP12-2023-2.jpeg\"], description=\"\"\"- Discovered 2023\n", + " - Opens out to a 3m x 1m chamber at the bottom\n", + " - Possibly possible to dig, but very choked\"\"\")\n", + "create_updates_and_images(cave_name=\"LP13\", year=\"2023\", images=[\"LP13-2023-1.jpeg\", \"LP13-2023-2.jpeg\"], description=\"\"\"- Logged in 2023\n", + " - Can see a continuation past the snow at the bottom of a 5m shake hole\n", + " - Not descended due to lack of gear\"\"\")\n", + "create_updates_and_images(cave_name=\"LP14\", year=\"2023\", images=[\"LP14-2023-1.jpeg\", \"LP14-2023-2.jpeg\"], description=\"\"\"- Discovered and killed in 2023\n", + " - Reasonably sized shake hole but dies quickly\n", + " - Free climbed down\n", + " - Dead, completely choked with gravel\"\"\")\n", + "create_updates_and_images(cave_name=\"LP15\", year=\"2023\", images=[\"LP15-2023-1.jpeg\", \"LP15-2023-2.jpeg\", \"LP15-2023-3.jpeg\"], description=\"\"\"- Discovered and killed in 2023\n", + " - Right next to the jaws of death\n", + " - Initially very promising but found to link to next shake hole after 10m\n", + " - Extensive digging allows for a cracking through trip\n", + " - No obvious continuation, killed\"\"\")\n", + "create_updates_and_images(cave_name=\"LP16, Icehorn\", year=\"2023\", images=[\"LP16-2023.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Squeezing past the snow plug leads to a large chamber 5m\n", + " - Many small holes leading off of the main shake hole which all seem to drop into the main chamber when throwing rocks down\n", + " - Dig at bottom of large chamber leads to an ongoing crawl but dies quickly in all directions after being dug\n", + " - Another dig up in the left wall of the chamber dies quickly\n", + " - All other leads seem to die\"\"\")\n", + "create_updates_and_images(cave_name=\"LP17\", year=\"2023\", images=[\"LP17-2023-1.jpeg\", \"LP17-2023-2.jpeg\"], description=\"\"\"- Discovered and killed in 2023\n", + " - Twin holes, climb down one and then stoop into the other\n", + " - Looked promising and descended down for about 5m but dies\n", + " - No obvious digs or drafts\"\"\")\n", + "create_updates_and_images(cave_name=\"LP18\", year=\"2023\", images=[\"LP18-2023-1.jpeg\", \"LP18-2023-2.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Not descended but possible continuation out of sight\n", + " - Not that promising but worth a look\"\"\")\n", + "create_updates_and_images(cave_name=\"LP19\", year=\"2023\", images=[\"LP19-2023-1.jpeg\", \"LP19-2023-2.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - 7m hole with possible continuation out of sight\n", + " - Not descended as looked at other holes instead\"\"\")\n", + "create_updates_and_images(cave_name=\"LP20\", year=\"2023\", images=[\"LP20-2023-1.jpeg\", \"LP20-2023-2.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Previously logged as TJRIFT\n", + " - Large 10m deep rift definitely worth a look\n", + " - Two entrances and another two holes just down the valley which may also be connected\"\"\")\n", + "create_updates_and_images(cave_name=\"LP21, Tin Can Hole\", year=\"2023\", images=[\"LP21-2023.jpeg\"], description=\"\"\"- Discovered and killed in 2023\n", + " - Dropped previously since we found a fish tin at the bottom\n", + " - No obvious digs all completely full of rubble \n", + " - Dropped on a rope but may have been descended by crazy free climb before, no spits seen\"\"\")\n", + "create_updates_and_images(cave_name=\"LP22\", year=\"2023\", images=[\"LP22-2023.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Small dark not drafting hole\n", + " - Not investigated since no over suit but worth a look\"\"\")\n", + "create_updates_and_images(cave_name=\"LP23\", year=\"2023\", images=[\"LP23-2023.jpeg\"], description=\"\"\"- Discovered and killed in 2023\n", + " - Can walk in\n", + " - Dead, completely choked with gravel\"\"\")\n", + "create_updates_and_images(cave_name=\"LP24, (Arun's) Secret Hole, How much is that Chamois in the window\", year=\"2023\", images=[\"LP24-2023-1.jpeg\", \"LP24-2023-2.jpeg\", \"LP24-2023-3.jpeg\"], description=\"\"\"- Discovered and killed in 2023\n", + " - Dropped by Astrid and Arun\n", + " - Incredibly tight and sharp, required much bashing and multiple bolts\n", + " - Dead chamois found on one ledge halfway down\n", + " - Cave chokes up with gravel, no obvious digs or drafts\n", + " - An impressive ice stal at the bottom\"\"\")\n", + "create_updates_and_images(cave_name=\"LP25\", year=\"2023\", images=[\"LP25-2023.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Not investigated since focussing on other caves\n", + " - Very close to JOD\n", + " - Worth a free climb down, quick to check\"\"\")\n", + "create_updates_and_images(cave_name=\"LP26\", year=\"2023\", images=[\"LP26-2023.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Not investigated since focussing on other caves\n", + " - Very close to JOD and next to LP25\n", + " - Worth a free climb down, quick to check\"\"\")\n", + "create_updates_and_images(cave_name=\"LP27\", year=\"2023\", images=[\"LP27-2023-1.jpeg\", \"LP27-2023-2.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Snow plugged rift not descended\n", + " - Doesn't look that promising\"\"\")\n", + "create_updates_and_images(cave_name=\"LP28, Christmas Pot\", year=\"2023\", images=[\"LP28-2023-1.jpeg\", \"LP28-2023-2.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Right next to the LP Christmas tree\n", + " - Dies in boulders at the bottom\n", + " - Possible dig but large overlying boulders mean probably not worthwhile\"\"\")\n", + "create_updates_and_images(cave_name=\"LP29\", year=\"2023\", images=[\"LP29-2023.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Not descended but looks like a possible dig at the bottom\n", + " - Likely free climbable\"\"\")\n", + "create_updates_and_images(cave_name=\"LP30\", year=\"2023\", images=[\"LP30-2023.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Not descended but looks like a possible dig at the bottom\n", + " - Likely free climbable\"\"\")\n", + "create_updates_and_images(cave_name=\"LP31\", year=\"2023\", images=[\"LP31-2023-1.jpeg\", \"LP31-2023-2.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Not descended but small chamber at the bottom with snow\n", + " - Needs bolting\"\"\")\n", + "create_updates_and_images(cave_name=\"LP32\", year=\"2023\", images=[\"LP32-2023-1.jpeg\", \"LP32-2023-2.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Not descended but small chamber beneath a boulder\"\"\")\n", + "create_updates_and_images(cave_name=\"LP33\", year=\"2023\", images=[\"LP33-2023.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Not descended possible dig at the bottom\n", + " - Needs bolting\"\"\")\n", + "create_updates_and_images(cave_name=\"LP34\", year=\"2023\", images=[\"LP34-2023.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Not descended since needs bolting\n", + " - Large hole with ice at the bottom\"\"\")\n", + "create_updates_and_images(cave_name=\"LP35\", year=\"2023\", images=[\"LP35-2023.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Screen covered floor 4m down\n", + " - Not descended\"\"\")\n", + "create_updates_and_images(cave_name=\"LP36\", year=\"2023\", images=[\"LP36-2023.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Pot with stream-way like walls\n", + " - Bottom is filled with scree, 3-4m deep\n", + " - Undescended\"\"\")\n", + "create_updates_and_images(cave_name=\"LP37, Stalagm-ice\", year=\"2023\", images=[\"LP37-2023-1.jpeg\", \"LP37-2023-2.jpeg\"], description=\"\"\"- Discovered and killed in 2023\n", + " - Obvious opening drops down to choked shaft\n", + " - Small but impressive ice formations at back of chamber\n", + " - No obvious digs or ways on\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M1\", year=\"1983\", images=[], description=\"\"\"- Depth in 1983 recorded as -61m [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M1\", year=\"2007\", images=[], description=\"\"\"- Revisited in 2007 [HM2 draft, page 13]\n", + " - Repushed and resurveyed\n", + " - One ongoing lead left in a window, which may require some chemical persuasion\"\"\")\n", + "create_updates_and_images(cave_name=\"M1\", year=\"2022\", images=[\"M1-2022.jpeg\"], description=\"\"\"\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M2\", year=\"2022\", images=[\"M2-2022.jpeg\"], description=\"\"\"- An entrance to the system. Discovered by the Slovenes back in the 70s [HM1, page 6]\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M3\", year=\"1993\", images=[], description=\"\"\"- No known coordinates, altitude or depth as of 1993 [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M3\", year=\"2023\", images=[], description=\"\"\"- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M4\", year=\"1993\", images=[], description=\"\"\"- No known depth as of 1993 [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M4\", year=\"2022\", images=[\"M4-2022.jpeg\"], description=\"\"\"- Relogged in 2022\n", + " - Not descended\n", + " - M4 painted in blue, rather than red paint for some reason\n", + " - May be worth revisiting, since close to the bivi\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M5\", year=\"1993\", images=[], description=\"\"\"- No known coordinates, altitude or depth as of 1993 [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M5\", year=\"2023\", images=[], description=\"\"\"- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M6\", year=\"1993\", images=[], description=\"\"\"- Depth indicated as -67 m as of 1993 [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M6\", year=\"2007\", images=[\"M6-2007.jpg\"], description=\"\"\"- Revisited 2007 [HM2 draft, page 13]\n", + " - small extensions - \"pretty little bit of stream formed new cave, ended in draughting bedding plane dig.\"\n", + " - images of surface shaft and Tetley putting in a rebelay\n", + " - resurveyed\"\"\")\n", + "create_updates_and_images(cave_name=\"M6\", year=\"2023\", images=[], description=\"\"\"- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M7\", year=\"1993\", images=[], description=\"\"\"- Depth indicated as -20m as of 1993 [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M7\", year=\"2022\", images=['M7-2022.jpeg'], description=\"\"\"- Relogged in 2022\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M8\", year=\"1993\", images=[], description=\"\"\"- Depth indicated as -13m as of 1993 [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M8\", year=\"2022\", images=[\"M8-2022.jpeg\"], description=\"\"\"- Relogged in 2022\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M9\", year=\"1993\", images=[], description=\"\"\"- Depth indicated as -19m as of 1993 [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M9\", year=\"2022\", images=[\"M9-2022.jpeg\"], description=\"\"\"- Relogged in 2022\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M10\", year=\"1993\", images=[], description=\"\"\"- Depth indicated as -33m as of 1993 [HM1, page 13]\n", + "- Visited frequently to collect snow for water\"\"\")\n", + "create_updates_and_images(cave_name=\"M10\", year=\"2015\", images=[], description=\"\"\"- Explored more thoroughly in 2015 [HM3, page 111]\n", + " - One way on dies in a too-tight rift\n", + " - Another route dies in an icy section\"\"\")\n", + "create_updates_and_images(cave_name=\"M10\", year=\"2022\", images=[\"M10-2022.jpeg\"], description=\"\"\"\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M11\", year=\"1993\", images=[], description=\"\"\"- Depth indicated as -6m as of 1993.\n", + " - \"It is difficult to understand why holes such as M11 (6m deep!) were noted, as the plateau has many similar or deeper surface holes which were not then formally recognised.\" [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M11\", year=\"2023\", images=[], description=\"\"\"- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M12 maybe?\", year=\"1993\", images=[], description=\"\"\"- Depth indicated as -15m as of 1993 [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M12 maybe?\", year=\"2022\", images=[\"M12 maybe-2022.jpeg\"], description=\"\"\"- Possibly relocated 2022\n", + " - Not descended but found a cave which looks dug out, and is in the vicinity of M12 on the GPS\n", + " - At the exact location of M12 on the GPS, there are no obvious entrances\n", + " - M12 could be off the cliff, since some old coordinates are dozens of meters away from their actual location\n", + " - Should definitely be investigated, can hear a small chamber when rocks thrown\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M13\", year=\"1993\", images=[], description=\"\"\"- Depth indicated as -15m as of 1993 [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M13\", year=\"2023\", images=[], description=\"\"\"- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M14\", year=\"1993\", images=[], description=\"\"\"- Depth indicated as -22m as of 1993 [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M14\", year=\"2023\", images=[], description=\"\"\"- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M15\", year=\"1993\", images=[], description=\"\"\"- Depth indicated as -58m as of 1993 [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M15\", year=\"2022\", images=[\"M15-2022.jpeg\"], description=\"\"\"- Relogged 2022\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M16\", year=\"1982\", images=[], description=\"\"\"- An entrance to the main system discovered by the Slovenes in 1982. [HM1, page 8]\"\"\")\n", + "create_updates_and_images(cave_name=\"M16\", year=\"2022\", images=[\"M16-2022.jpeg\"], description=\"\"\"\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M17\", year=\"1993\", images=[], description=\"\"\"- Depth indicated as -58m as of 1993 [HM1, page 13]\"\"\")\n", + "create_updates_and_images(cave_name=\"M17\", year=\"1994\", images=[], description=\"\"\"- Further explored in 1994, HM1 page 25 with survey\n", + " - Pushed until it got too cold, going lead at bottom of cave\"\"\")\n", + "create_updates_and_images(cave_name=\"M17\", year=\"2018\", images=[\"M17-2018.jpg\"], description=\"\"\"- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M18, Torn T-Shirt Pot, Jama Strgane Srajce\", year=\"1994\", images=[], description=\"\"\"- Large entry about discovery in HM1 page 19 from 1994\n", + "- An entrance into the main system\"\"\")\n", + "create_updates_and_images(cave_name=\"M18, Torn T-Shirt Pot, Jama Strgane Srajce\", year=\"2022\", images=[\"M18-2022.jpeg\"], description=\"\"\"\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M19, BS Pot\", year=\"1994\", images=[], description=\"\"\"- Entry about discovery in HM1 page 25 from 1994\n", + " - Extremely tight and loose\n", + " - Next to M17\n", + " - Incredibly strong draft\n", + " - Pushing stopped due to incredibly loose walls requiring shoring\"\"\")\n", + "create_updates_and_images(cave_name=\"M19, BS Pot\", year=\"2023\", images=[], description=\"\"\"- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M20, White Shiver Pot\", year=\"1994\", images=[], description=\"\"\"- Large entry about discovery and survey in HM1, page 17, 1994\n", + " - Large 15m pothole with 20m drop to a snow plug\n", + " - Squeezing past the snow plug led to a large chamber\n", + " - No indication of continuation of digging potential\"\"\")\n", + "create_updates_and_images(cave_name=\"M20, White Shiver Pot\", year=\"2023\", images=[], description=\"\"\"- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M21, B9, Jackie's Blower\", year=\"1995\", images=[], description=\"\"\"- Entry about discovery and survey in HM1, page 33, 1995\n", + " - Two entrances near the top of the cliff\n", + " - Very loose\"\"\")\n", + "create_updates_and_images(cave_name=\"M21, B9, Jackie's Blower\", year=\"2016\", images=[], description=\"\"\"- Revisited in 2016 [HM3, page 219]\n", + " - Has apparently been visited a number of times since initial discovery\n", + " - The bottom pitch was pushed but no mention of whether this lead is ongoing or not\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M22, Venus Cave\", year=\"1995\", images=[], description=\"\"\"- Entrance about discovery and survey in HM1, page 34, 1995\n", + " - Named as it sucked flies in like a venus fly trap, strong draft!\"\"\")\n", + "create_updates_and_images(cave_name=\"M22, Venus Cave\", year=\"2018\", images=[], description=\"\"\"- Explored in 2018 as seen in 2018 documentary video, no encouraging ways on after digging\"\"\")\n", + "create_updates_and_images(cave_name=\"M22, Venus Cave\", year=\"2022\", images=[\"M22-2022.jpeg\"], description=\"\"\"\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M23, Julie's Pantry Cave\", year=\"1995\", images=[], description=\"\"\"- Entry on discovery and survey in HM1, page 32 from 1995\n", + " - Very strong draft\n", + " - Terminates at a small passage\"\"\")\n", + "create_updates_and_images(cave_name=\"M23, Julie's Pantry Cave\", year=\"2023\", images=[], description=\"\"\"- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M24, PF10\", year=\"1995\", images=[\"PF10Survey.jpeg\"], description=\"\"\"- Entry about discovery and survey in HM1, page 36, 1995\n", + " - Crawl at bottom deemed too unstable to continue exploration\n", + " - Abandoned for other leads in 1995\n", + " - By the looks of EE, still a window on P4 and a bolt climb at bottom of P4 left unexplored. Worth a look. Could break into southern extensions.\"\"\")\n", + "create_updates_and_images(cave_name=\"M24, PF10\", year=\"2022\", images=[\"M24-2022.jpeg\"], description=\"\"\"- Relocated in 2022\n", + " - Previously M24 and PF10 were logged as being over 100m apart\n", + " - Upon throwing rocks down, sounds of ice smashing could be heard\"\"\")\n", + "create_updates_and_images(cave_name=\"M24, PF10\", year=\"2023\", images=[], description=\"\"\"Began rebolting but the storms prevented us reaching th bottom of the first pitch. Lots of scary ice.\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"M25, Gulliver's Kipper Cave\", year=\"1995\", images=[], description=\"\"\"- Entry about discovery in HM1, page 33, 1995\n", + " - On the face of Mig, visible from the shepherd's huts\n", + " - Initially opens up but all proceeding chambers closed down\n", + " - Little effort put into the cave, no survey taken. Could be worth a revisit for the katasterjam.\"\"\")\n", + "create_updates_and_images(cave_name=\"M25, Gulliver's Kipper Cave\", year=\"2019\", images=[], description=\"\"\"- Rediscovered by Ben R and Ben H in 2019. It is located up the coincidence valley and is a very big entrance with a P10 to a pile of wood. Was bolted in 1996 and is more or less dead (see HM1)\n", + "- Coordinates converted from GK5 to Lat/Long: 46.245408, 13.765006\n", + "- May have digging potential\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Monatip\", year=\"2007\", images=[], description=\"\"\"An entrance to the main system discovered in 2007 [HM2 draft, page 18]\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Moth Cave\", year=\"2006\", images=[], description=\"\"\"- Discovered in 2006 [HM1, page 207]\n", + " - Located close to Hare cave\n", + " - Left at a pile of draughting boulders which are easy and quick to dig\n", + " - About an hour of digging was carried out in 2006\"\"\")\n", + "create_updates_and_images(cave_name=\"Moth Cave\", year=\"2007\", images=[\"Moth Cave-2007.jpg\"], description=\"\"\"- Revisited in 2007 [HM2 draft, page 15, page 25]\n", + " - Large volumes of gravel removed\n", + " - All leads seem to have been killed\n", + " - Only way on is another squeeze which would require rock removal to pass\"\"\")\n", + "create_updates_and_images(cave_name=\"Moth Cave\", year=\"2022\", images=[\"Moth-2022.jpeg\"], description=\"\"\"\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Mugo\", year=\"2020\", images=[\"Mugo Upper Entrance-2020.jpg\", \"Mugo Lower Entrance-2020.jpg\"], description=\"\"\"- Discovered in 2020 [Slovenia subsite, 2020 Summer Action]\n", + " - accessed from the contour path linking Kal to the head of the Tolminka valley\n", + " - found while looking at overhangs and possible cave entrances that had been identified from below before ascending scree slopes below Gondolin\n", + " - short descent unveiled a chamber which continued with a small climb into a dead end\n", + " - two entrances\n", + " - surveyed; final length 38m, depth 7m\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"N01\", year=\"2014\", images=[], description=\"\"\"- Not the same as the N1 in area N\n", + "- Rediscovered in 2014 [HM3, page 104]\n", + " - Found to be 3m deep and leading into a small chamber but no sign of downward progression\"\"\")\n", + "create_updates_and_images(cave_name=\"N01\", year=\"2023\", images=[\"N01-2023-1.jpeg\", \"N01-2023-2.jpeg\", \"N01-2023-3.jpeg\"], description=\"\"\"- Relogged in 2023\n", + " - Not dropped, red spray paint and gravel floor visible\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"N1\", year=\"2023\", images=[], description=\"\"\"- No known information\n", + "- Note that this is different to the N01 found to the south of Kuk\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"N2\", year=\"2023\", images=[], description=\"\"\"No known information\"\"\")\n", + "create_updates_and_images(cave_name=\"N3\", year=\"2023\", images=[], description=\"\"\"No known information\"\"\")\n", + "create_updates_and_images(cave_name=\"N4\", year=\"2023\", images=[], description=\"\"\"No known information\"\"\")\n", + "create_updates_and_images(cave_name=\"N5\", year=\"2023\", images=[], description=\"\"\"No known information\"\"\")\n", + "create_updates_and_images(cave_name=\"N6\", year=\"2023\", images=[], description=\"\"\"No known information\"\"\")\n", + "create_updates_and_images(cave_name=\"N7\", year=\"2023\", images=[], description=\"\"\"No known information\"\"\")\n", + "create_updates_and_images(cave_name=\"N8\", year=\"2023\", images=[], description=\"\"\"No known information\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"N9, Kuk Pot\", year=\"2012\", images=[\"N9, Kuk Pot-2012.jpg\"], description=\"\"\"- First mentioned in 2012 [HM2 draft, page 136]\n", + " - First two pitches dropped\n", + " - Continuation visible but left due to lack of time\"\"\")\n", + "create_updates_and_images(cave_name=\"N9, Kuk Pot\", year=\"2019\", images=[], description=\"\"\"- Returned to and killed in 2019. Writeup on UKCaving [here](https://ukcaving.com/board/index.php?threads/maraton-iccc-jspdt-slovenia-expedition-july-2019.25199/).\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"N10\", year=\"2023\", images=[], description=\"\"\"No known information\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"N11\", year=\"2023\", images=[], description=\"\"\"- Someone (unknown) recently logged this on one of the club GPS's. Coords are: 46°16'02\"N 13°45'38\"E\n", + "- Worth having a look\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"N12\", year=\"2023\", images=[], description=\"\"\"Someone (unknown) recently logged this on one of the club GPS's. Coords are: 46°15'47\"N 13°45'33\"E\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"N13\", year=\"2023\", images=[], description=\"\"\"Also logged as \"BOLTCAVE\" and \"WB1\". A vertical shaft with spits. No information on who originally descended this, no mentions in hollow mountains. Definitely worth checking out. Coords are: 46°15'47\"N 13°45'37\"E\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"N14\", year=\"2023\", images=[], description=\"\"\"- Also logged as \"WB2\". An approximately 5m deep vertical rift with possible cave at the bottom. Remains undescended because of lack of resources. Definitely worth checking out. Coords are: 46°15'44\"N 13°45'38\"E\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"0131\", year=\"2023\", images=[], description=\"\"\"Possibly an accidental GPS marker, so might not be a cave. Between N11 and N12. Coords are: 46°15'54\"N 13°45'38\"E\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"P01 (North of Kuk)\", year=\"2023\", images=[], description=\"\"\"- Included on the area N map, HM3 page 264\n", + "- No information regarding this cave was found\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"P1\", year=\"2023\", images=[\"P1-2023-1.jpeg\", \"P1-2023-2.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Although very likely to have been discovered earlier, but no records of it\n", + " - Very close to M17, M19, JCC\n", + " - P series for Plateau as all the other caves in this area are either M series, which we don't continue any more, or have random names\n", + " - Short 5m drop to a small chamber, can’t see the bottom with bright sunlight, don’t look easily climbable\n", + " - Not descended due to lack of gear and time\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"P2\", year=\"2023\", images=[\"P2-2023.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Again, likely looked in before\n", + " - Can walk in but I’d tear my clothes, small chamber can’t see the back. Many fake caves around\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"P3\", year=\"2023\", images=[\"P3-2023.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Again, likely looked in before\n", + " - A bunch of holes above M17 which you’d need to be clipped in to investigate, but look as though they go back a fair way\n", + " - Potentially one of these is Mouse cave but poorly logged? The GPS for it was a fair way off but didn't correspond to any obvious entrance\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"P4\", year=\"2023\", images=[\"P4-2023-1.jpeg\", \"P4-2023-2.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Didn't drop in since no kit\n", + " - Looks like it probably dies but worth a proper look\n", + " - Small chamber may continue round to the left\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"P5\", year=\"2023\", images=[\"P5-2023-1.jpeg\", \"P5-2023-2.jpeg\"], description=\"\"\"- Discovered in 2023\n", + " - Didn't look inside since no kit but so close to cliff abseil that it should be looked at\n", + " - Might be a good dig if nothing else\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Planika\", year=\"2007\", images=[\"Planika-2007(1).jpg\"], description=\"\"\"- Discovered in 2007 [HM2 draft, page 18]\n", + " - Large snow and ice filled cave with holes driven through it by water and air\n", + " - Ends in an un-pushed ice tube after a scary boulder funnel\"\"\")\n", + "create_updates_and_images(cave_name=\"Planika\", year=\"2008\", images=[\"Planika-2007(2).jpg\"], description=\"\"\"- Revisited in 2008 [HM2 draft, page 31]\n", + " - No further progress on the route from the previous year made due to high snow levels\n", + " - A new rift (implied name Echo Rift) found from a water drilled hole through the snow plug which was pushed down a pitch\n", + " - Another chamber was found from a window\n", + " - Upper rift 'Diggers of the UG'\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Postcard Cave\", year=\"2004\", images=[], description=\"\"\"- Briefly mentioned in HM1, page 183, 2004\n", + " - In an adjacent shakehole to the east of Hare Cave\n", + " - No further information\"\"\")\n", + "create_updates_and_images(cave_name=\"Postcard Cave\", year=\"2007\", images=[], description=\"\"\"- Description from 2007 on club wiki along with keyhole cave:\n", + " - 'Keyhole cave and postcard cave are very near the bivvy. The easiest way to describe them is to start from the edge of the shakehole with hare cave in. Facing towards primadoni direction hare cave is on the left side of the shake hole. Basically you are standing above postcard cave. It is in a smaller shakhole behind you. The entrance is a very low thin bedding plane that immediately breaks into an 'impressive' entrance phreatic tube with a choked draughting rift in the floor. This looks like many other entrances, so the way to confirm is that keyhole cave should also be present in the shakehole. Still facing the same way (i.e. away from the shakehole towards the hare cave shakehole), keyhole cave is on the left side and is almost completely invisible unless you are standing in exactly the right place. Entrance is a lovely phreatic keyhole about 1m high and really very hidden. The cave follows this shape for a couple of metres before ending in a choked small chamber. Not that interesting but a great entrance - would make a superb start to a trip'\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Primadona\", year=\"2000\", images=[], description=\"\"\"- A main entrance to the main system known about for a long time by the Slovenes\n", + "- First mentioned in HM1, page 118, 2000\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Pueblo\", year=\"2022\", images=[\"Pueblo-2022.jpeg\"], description=\"\"\"- Not a cave\n", + " - Fratnik's old bivi spot from many decades ago\n", + " - Still filled with metal tent poles\n", + "- Relogged in 2022\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Razor Cave\", year=\"2006\", images=[], description=\"\"\"- A cave near the Razor hut, extensively explored by the JSPDT [HM1, page 208, 2006]\"\"\")\n", + "create_updates_and_images(cave_name=\"Razor Cave\", year=\"2007\", images=[], description=\"\"\"- Surveyed in 2007 [HM2 draft, page 14]\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Royston Vasey\", year=\"2001\", images=[], description=\"\"\"- Entry about discovery and a survey in HM1, page 147, 2001\n", + " - Very close to the bivi, in an 8m deep shake hole\n", + " - Good digging potential given it's proximity to the bivi\"\"\")\n", + "create_updates_and_images(cave_name=\"Royston Vasey\", year=\"2008\", images=[], description=\"\"\"- Rediscovered in 2008 [HM2 draft, page 44]\n", + " - Not pushed any further, only rediscovered\"\"\")\n", + "create_updates_and_images(cave_name=\"Royston Vasey\", year=\"2022\", images=[\"Royston_Vasey-2022.jpg\"], description=\"\"\"- Re-bolted and dug in 2022\n", + " - All possible leads investigated\n", + " - Can hear cave continues onto another chamber at bottom of final pitch but not worth blasting since walls close in\n", + " - Conclusively dead this time\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"S1, East Pole\", year=\"1998\", images=[], description=\"\"\"- Mentioned in HM1, page 99, 1998\n", + " - Multiple chambers and small pitches, but very unstable\n", + " - Multiple digging trips have since returned to the cave with no major breakthroughs\n", + " - '[a] promising lead'\"\"\")\n", + "create_updates_and_images(cave_name=\"S1, East Pole\", year=\"2007\", images=[\"S1-2007.jpg\"], description=\"\"\"- Revisisted in 2007, 2008 and 2009\n", + " - No write ups of the trips; only references to progress from tweet [Votla Gora tweets, 2:32 PM Aug 10th, 2008] given below\n", + " - \"S1: way to right hand pitch found by hammering rift above big pitch.Strong draft from tight meander, several hrs hard hammer.4th system?\"\n", + " - entrance photos and walk labelled under Eastpole\"\"\")\n", + "create_updates_and_images(cave_name=\"S1, East Pole\", year=\"2009\", images=[\"S1-2009.jpg\"], description=\"\"\"\"\"\")\n", + "create_updates_and_images(cave_name=\"S1, East Pole\", year=\"2017\", images=[], description=\"\"\"- Revisited in 2017 [HM3, page 271] [2017 logbook]\n", + " - Did not manage to make progress on the upwards dig\n", + " - Marginal progress was made over a tight rift, despite the loss of the lump hammer\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"S2\", year=\"2007\", images=[\"S2-2007.jpg\"], description=\"\"\"- Photo of entrance by Jarvist\n", + "- No known information\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"S3\", year=\"2007\", images=[\"S3-2007.jpg\"], description=\"\"\"- Photo of entrance by Jarvist\n", + "- No known information\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"S4\", year=\"2023\", images=[], description=\"\"\"- No known information\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"S5\", year=\"2007\", images=[\"S5-2007.jpg\"], description=\"\"\"\"\"\")\n", + "create_updates_and_images(cave_name=\"S5\", year=\"2013\", images=[], description=\"\"\"- Discovered in 2013 [HM3, page 37]\n", + " - Initially a free-climbable p6, followed by a p20 that requires a rope\n", + " - Appears that this hasn't been descended\n", + " - Confused whether the 2007 image is the same cave as Gergely's description from 2013 HM3\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"S6\", year=\"2013\", images=[], description=\"\"\"- Discovered in 2013 [HM3, page 37]\n", + " - Strongly drafting, just as much as S1\n", + " - Requires work but is the most promising lead in the area\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"S7\", year=\"2007\", images=[\"S7-2007.jpg\", \"S7-2007(pitch).jpg\"], description=\"\"\"\"\"\")\n", + "create_updates_and_images(cave_name=\"S7\", year=\"2013\", images=[], description=\"\"\"- Discovered in 2013 [HM3, page 37]\n", + " - Cold air drafting from between two boulders\n", + " - Not an actual entrance, but could be dug into one\n", + " - Photo of entrance by Jarvist\n", + " - Confused whether the lablled 2007 images are the same cave as Gergely's description from 2013 HM3 given that the 2007 photos show a pitch. It's not even that clear whether they relate to the same cave as each other, they look a little different\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"S8\", year=\"2007\", images=[\"S8-2007.jpg\"], description=\"\"\"- Photo of entrance by Jarvist\n", + "- No known information\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"S12\", year=\"2022\", images=[\"S12-2022.jpeg\"], description=\"\"\"- Relogged in 2022\n", + " - No known information\n", + " - If this is S12, where are S8-11?\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"S-A\", year=\"2022\", images=[\"S-A-2022.jpeg\"], description=\"\"\"- Relogged in 2022\n", + " - No idea what this is, but there's a large shake hole there\n", + " - Likely a nearby cave, but no obvious what the GPS point was referring to\n", + " - Should ask some old(er) lags\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Samo1\", year=\"2022\", images=[\"SAMO1-2022.jpeg\"], description=\"\"\"- Unclear when Samo first logged this\n", + "- Revisited in 2022\n", + " - Crawl goes down at least 5m to capped entrance to small chamber\n", + " - Large draft and nearby to new Gardeners of the Galaxy hole, and clearly in the same line of shake holes as it, but cave heads in different direction\n", + " - Not worth revisiting\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Samo2\", year=\"2022\", images=[\"SAMO2-2022.jpeg\"], description=\"\"\"- Unlcear when Samo first logged this\n", + "- Revisited in 2022\n", + " - 10m deep shaft, gravel floor with ice plug 2 by 10 m diameter at bottom\n", + " - Big draught and adjacent holes connects back in\n", + " - Cave conclusively killed\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Stag Cave\", year=\"2007\", images=[], description=\"\"\"- Discovered in 2007 [HM2 draft page 15]\n", + " - Within 20m of the tents\n", + " - An initial pitch leads to a dead chamber\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Storm cave\", year=\"2004\", images=[], description=\"\"\"- Description in HM1, page 184, 2004\n", + " - Main way on blocked by snow\n", + " - Other entrances in the area which were blocked by snow\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Sunset Hole\", year=\"2014\", images=[], description=\"\"\"- Discovered in 2014 [HM3, page 104] by Fiona H\n", + " - A small hole, below Sunset Spot, not far off the main path (left when looking uphill) up to the Plateau\n", + " - Short tube sloping downwards into small chamber (room to turn around kneeling), tube continued sloping downwards and got too tight (leg sized)\n", + " - Not a good lead\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"T2\", year=\"1998\", images=[], description=\"\"\"- Mentioned in HM1, page 99, 1998\n", + " - A tight strongly drafting rift passage that requires hammering\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"The Freezer\", year=\"2001\", images=[], description=\"\"\"- Mentioned in HM1, page 148, 2001\n", + " - Further up the Gardener's World valley\n", + " - One un-pushed lead at the end in a dodgy boulder choke\n", + " - Contained a nice ice stalactite\"\"\")\n", + "create_updates_and_images(cave_name=\"The Freezer\", year=\"2023\", images=[], description=\"\"\"- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"The Hairdryer\", year=\"1998\", images=[], description=\"\"\"- Mentioned in HM1, page 99, 1998\n", + " - \"A slow shuffle into the bedding leads to a small, 8” hole. Beyond this restriction was black space, and the source of the very strong draft\"\n", + " - Noted in Jarv's requests for stories in HM2 Doesn't seem to have been investigated further\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"TR1\", year=\"2014\", images=[], description=\"\"\"- Discovered in 2014 [HM3, page 62]\n", + " - A 1 x 1.5 m hole plugged with snow\n", + " - Multiple entrances, some of which free climbable and reaches floor of ice and rubble\n", + " - Left undescended\"\"\")\n", + "create_updates_and_images(cave_name=\"TR1\", year=\"2016\", images=[], description=\"\"\"- Returned to in 2016 [HM3, page 188]\n", + " - All leads were found to die quickly in rubble and ice\"\"\")\n", + "create_updates_and_images(cave_name=\"TR1\", year=\"2022\", images=[\"TR1-2022.jpeg\"], description=\"\"\"\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"TR2\", year=\"2014\", images=[], description=\"\"\"- Discovered in 2014 [HM3, page 62]\n", + " - Snow and rubble slope leads down to a low chamber with several blind avens\n", + " - Terminal chamber reached after a short dug out crawl\"\"\")\n", + "create_updates_and_images(cave_name=\"TR2\", year=\"2022\", images=[\"TR2-2022.jpeg\"], description=\"\"\"- Revisited in 2022 by David and Rory\n", + " - Near entrance just prior to crawl, on left space noticed under boulder, dug out, leading to chamber\n", + " - Chamber terminates in too tight rift, Aven above chamber leads to undug light from surface\n", + " - Draft disappears underneath climb down into chamber into rock floor\n", + " - Thin person should investigate rift, might be possible to blast\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"TR3\", year=\"2014\", images=[], description=\"\"\"- Discovered in 2014 [HM3, page 62]\n", + " - Entrance choke can be down-climbed to a small chamber with continuation requiring rock removal with tape, crowbar and chisel\"\"\")\n", + "create_updates_and_images(cave_name=\"TR3\", year=\"2022\", images=[\"TR3-2022.jpeg\"], description=\"\"\"\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"TR4\", year=\"2014\", images=[], description=\"\"\"- Discovered in 2014 [HM3, page 63]\n", + " - Obvious dig with upturned boulders near entrance\"\"\")\n", + "create_updates_and_images(cave_name=\"TR4\", year=\"2022\", images=[\"TR4-2022.jpeg\"], description=\"\"\"\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"TR5\", year=\"2014\", images=[], description=\"\"\"- Discovered in 2014 [HM3, page 63]\n", + " - Small free climb down\n", + " - Draughting with easy digging\"\"\")\n", + "create_updates_and_images(cave_name=\"TR5\", year=\"2022\", images=[\"TR5-2022.jpeg\"], description=\"\"\"\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"TR6\", year=\"2014\", images=[], description=\"\"\"- Discovered in 2014 [HM3, page 63]\n", + " - Dig in vegetated shakehole\n", + " - Closes down as boulders meet ceiling\n", + " - Harder digging\"\"\")\n", + "create_updates_and_images(cave_name=\"TR6\", year=\"2022\", images=[\"TR6-2022.jpeg\"], description=\"\"\"\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"TR7\", year=\"2014\", images=[], description=\"\"\"- Discovered in 2014 [HM3, page 63]\n", + " - No obvious digging, both branches quickly become impassable\"\"\")\n", + "create_updates_and_images(cave_name=\"TR7\", year=\"2022\", images=[\"TR7-2022.jpeg\"], description=\"\"\"\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"TR8\", year=\"2014\", images=[], description=\"\"\"- Discovered in 2014 [HM3, page 63]\n", + " - Ends in rift blocked by ice and cobbles\n", + " - Would need serious digging if ice still present\"\"\")\n", + "create_updates_and_images(cave_name=\"TR8\", year=\"2022\", images=[\"TR8-2022.jpeg\"], description=\"\"\"\"\"\")\n", + "create_updates_and_images(cave_name=\"TR8\", year=\"2023\", images=[\"TR8-2023-1.jpeg\", \"TR8-2023-2.jpeg\"], description=\"\"\"- Revisited in 2023\n", + " - New hole likely uncovered from ice plug melt revealed 10m continuation\n", + " - Squeezing through leads to small chamber, second squeeze and then larger 5m wide, 10m long and 5m tall chamber\n", + " - End chamber called Kevin's Wine Cellar, “I’d genuinely put stuff in there, like wine and cheese” -Kevin\n", + " - Drafting quite a lot, and possible dig in the gravel with the draft coming from it. Mostly gravel so would need a lot of work\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"TR9\", year=\"2014\", images=[], description=\"\"\"- Discovered in 2014 [HM3, page 63]\n", + " - Obvious way on is choked, no indication of how easy digging / rock removal might be\"\"\")\n", + "create_updates_and_images(cave_name=\"TR9\", year=\"2022\", images=[\"TR9-2022.jpeg\"], description=\"\"\"- Revisited in 2023\n", + " - Howling draft coming out of the cave\n", + " - Vocal connection to a shake hole behind the main entrance\n", + " - A dig was found at the back in a tight crawl and pushed for 5m and continues on for about another 5m\n", + " - Very strong draft coming from the crawl, which turns to the right into the mountain\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"TR10\", year=\"2023\", images=[\"TR10-2023-1.jpeg\", \"TR10-2023-2.jpeg\"], description=\"\"\"- Logged as TR10 (no idea when)\n", + "- Relogged 2023\n", + " - Unclear whether this was ever descended but a 5m hole which looks enticing\n", + " - Not descended due to lack of gear\n", + " - A TR11 GPS point was also logged but couldn't find any cave there within a 15m radius\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"U-Bend 571\", year=\"2000\", images=[], description=\"\"\"- Another entrance to the main system that quickly connects with Primadona\n", + "- First mentioned in HM1, page 120, 2000\"\"\")\n", + "create_updates_and_images(cave_name=\"U-Bend 571\", year=\"2007\", images=[], description=\"\"\"- Connected to Primadona in 2007 [HM2 draft, page 14]\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Vilinksa Jama\", year=\"2008\", images=[], description=\"\"\"- Discovered in 2008 [HM2 draft, page 43]\n", + " - Connects to Vrtnarija\"\"\")\n", + "\n", + "create_updates_and_images(cave_name=\"Vrtnarija, Gardener's World\", year=\"1998\", images=[], description=\"\"\"Entrance into the main system that began as a dig by Ben Ogborne [HM1, page 99, 1998]\"\"\")\n", + "create_updates_and_images(cave_name=\"Vrtnarija, Gardener's World\", year=\"2000\", images=[], description=\"\"\"The entrance dig broke into the passage in 2000 [HM1, page 128]\"\"\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Image sizing tests" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "quality: 40\n", + "width, height: (1512, 2016)\n", + "New image inserted with ID: 10\n" + ] + }, + { + "data": { + "text/plain": [ + "10" + ] + }, + "execution_count": 80, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "insert_image_if_not_exists(db_path, \"./images/A1-2022.jpeg\")" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Image saved successfully.\n" + ] + } + ], + "source": [ + "import base64\n", + "\n", + "base64_string = \"\"\"...\"\"\"\n", + "\n", + "# Removing any non-base64 characters (newline, etc.)\n", + "base64_string = base64_string.replace(\"\\n\", \"\")\n", + "\n", + "# Decoding the base64 string\n", + "try:\n", + " image_data = base64.b64decode(base64_string)\n", + " with open(\"output_image.jpg\", \"wb\") as f:\n", + " f.write(image_data)\n", + " print(\"Image saved successfully.\")\n", + "except Exception as e:\n", + " print(\"An error occurred while decoding the base64 string:\", e)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "atlas_text = '''\n", + "### A1\n", + "\n", + "2022:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Discovered in 2008 [HM2 draft, page 44]\n", + " - No information other than that they were logged and they are \"worth a go down and look\"\n", + "- Relogged in 2022\n", + " - Rhys remembers going down one of them once upon a time so likely dead?\n", + " - A1 Has two stainless bolts in it\n", + "\n", + "### A2\n", + "\n", + "2022:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Discovered in 2008 [HM2 draft, page 44]\n", + " - No information other than that they were logged and they are \"worth a go down and look\"\n", + "- Relogged in 2022\n", + " - Rhys remembers going down one of them once upon a time so likely dead?\n", + "\n", + "### A3\n", + "\n", + "2022:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Discovered in 2008 [HM2 draft, page 44]\n", + " - No information other than that they were logged and they are \"worth a go down and look\"\n", + "- Relogged in 2022\n", + " - Rhys remembers going down one of them once upon a time so likely dead?\n", + "\n", + "### A4\n", + "\n", + "2022:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Discovered in 2008 [HM2 draft, page 44]\n", + " - No information other than that they were logged and they are \"worth a go down and look\"\n", + "- Relogged in 2022\n", + " - Rhys remembers going down one of them once upon a time so likely dead?\n", + "\n", + "### ABBA 4\n", + "\n", + "- Possible cave entrance found by BenR on the east face of planje during N9 trip in 2019\n", + "- ABBA 4 is likely to be 46.2676, 13.75168\n", + "- Should revisit to confirm\n", + "\n", + "### ABBA 5\n", + "\n", + "- Possible cave entrance found by BenR on the east face of planje during N9 trip in 2019\n", + "- ABBA 5 is likely to be 46.26749, 13.75123\n", + "- Should revisit to confirm\n", + "\n", + "### Andy's Secret Dig\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- No longer a secret as of 2022\n", + " - Relogged on the GPS\n", + " - Still diggable but pretty sketchy, with tent poles holding up boulders\n", + " - Reached by going along the old Mig path before turning down a gulley\n", + " - Can also be reached from below, walking up the gulley\n", + " - From the path down the Gulley, climb up towards an obvious alcove\n", + " - Dig is in the back left of the alcove, and down a 5m free climb\n", + "\n", + "### B5\n", + "\n", + "2022:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Spotted in 2022 from red paint marking\n", + " - No known information\n", + " - Gravel filled and would require a lot of work\n", + " - Very mossy, not promising\n", + "\n", + "### B10\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "2010:\n", + "\n", + "\n", + "\n", + "First discovered during the blowing holes recce of 1995 [HM3, page 61, page 104]\n", + "- Photos show some surface bashing in 2010\n", + "- Dug in 2014\n", + " - Contains a narrow tube suitable for digging\n", + " - More digging required\n", + "- Relogged in 2023\n", + " - Didn't go in, but looks interesting from the outside\n", + "\n", + "### B12\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Spotted in 2022 from red paint marking\n", + " - No known historical information\n", + " - Red paint can just be seen in bottom of image\n", + " - Appears to be a 10m drop blocked by boulders\n", + " - Digging attempted without tools but little progress made\n", + " - Requires long chisel for entrance widening and oversuit to protect (squeeze not passed due to this)\n", + " - Entrance may need traverse line for protection through squeeze\n", + " - Definitely worth returning with tools\n", + "\n", + "### B20\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Re-logged in 2022\n", + " - Good digging potential but hasn't been investigated to the end\n", + " - If it connected with M2, it would give extra height to the system\n", + "\n", + "### B91\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Relogged in 2023\n", + " - Small hole 2m deep looks diggable, can’t see if completely dead. No obvious draft\n", + " - Should rename this as B91 means nothing\n", + "\n", + "### B93\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Relogged in 2023\n", + " - Should be renamed as B93 doesn't mean anything\n", + " - Small hole going sideways 2m, no obvious draft but easy digging\n", + " - \n", + "### B94\n", + "\n", + "- No known information, near JJ2. Location 46°15'16\"N 13°45'30\"E. In archive \"2019_Migoveccavelocations\" GPX file.\n", + "\n", + "### B95\n", + "\n", + "- No known information, near bone cave. Location 46°15'15\"N 13°45'33\"E. In archive \"2019_Migoveccavelocations\" GPX file.\n", + "\n", + "### B96\n", + "\n", + "- No known information, near JB and JJ2, a bit down the cliff face. Location 46°15'16\"N 13°45'28\"E. In the archive \"2019_Migoveccavelocations\" GPX file.\n", + "\n", + "### B97\n", + "\n", + "- No known information. Might be the same as \"JB\" as it's logged very close. Just south of JJ2. Location 46°15'15\"N 13°45'29\"E. In archive \"2019_Migoveccavelocations\" GPX file.\n", + "\n", + "### B98\n", + "\n", + "- No known information. About 60m due west from B93. Location 46°15'13\"N 13°45'31\"E. In archive \"2019_Migoveccavelocations\" GPX file.\n", + "\n", + "### B99\n", + "\n", + "- No known information. About 60m WSW from B98, down the cliff face. Location 46°15'12\"N 13°45'28\"E. In archive \"2019_Migoveccavelocations\" GPX file.\n", + "\n", + "### B100\n", + "\n", + "- No known information. Was in one of the yellow club GPSs, but not in the archive \"2019_Migoveccavelocations\" file. Located in the cliff face NW of V10. Added to archive file as of 25/06/2024. Location 46.25597 N, 13.75801 E.\n", + "\n", + "### Bone Cave\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Mentioned in passing in HM1, page 215, but no information provided other than it being near the V10 valley\n", + "- 2022\n", + " - Note that Bone on the old GPS coordinates seems to correspond to a random shake hole by the tents, likely a different cave since V10 valley infers it being on the cliff\n", + " - No cave there, only a 1 foot deep hole\n", + " - Image is of the shake hole by the tents\n", + "\n", + "### C1\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Area C being the area around the container\n", + "- Spotted and logged in 2022\n", + " - No previous entrance marked on the GPS in the area\n", + " - Goes around 10m until a small boulder filled chamber\n", + "\n", + "### C2, Bonsai Pot, Teeny Tiny Rhododendron Pot\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- (Re)discovered in 2023\n", + " - Named as there are loads of small Rhododendrons around the entrance\n", + " - Large initial pit with various side chambers\n", + " - Low crawl leads to various small chambers which all die, some after squeezes and short down climbs\n", + " - Short climb up leads to a pitch found to have spits\n", + " - This pitch descends quite a way, splitting into three routes all of which are blocked and die\n", + "\n", + "### C3\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Spotted in 2023\n", + " - Not yet descended\n", + " - No signs of spits, but could have been dropped using naturals\n", + "\n", + "### Coincidence Cave\n", + "\n", + "- Discovered in 2015 [HM3, page 113]\n", + " - Initially dug but requires more work\n", + "- Revisited in 2018 (not written up)\n", + " - Breakthrough made to series of chambers\n", + "- Further explored by the Slovenians after 2018\n", + " - All leads seem to have died, from word of mouth\n", + "- Revisited in 2022\n", + " - End of cave terminates in boulder floor at base of pitch, this would be difficult to dig\n", + " - According to Matti, draft disappears into hole above final pitch, may be diggable\n", + " - Perry has started bolt climbing avens from entrance, first one dead\n", + "\n", + "### D1, Desperation 1\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered by David Wilson Jnr\n", + " - Named desperation due to convenient use as an emergency toilet\n", + "- Revisited in 2023\n", + " - Doesn't seem to go anywhere, not promising\n", + "\n", + "### DW's 1996 Dig\n", + "\n", + "- Nearby to Royston Vasey, mentioned in HM2 draft page 44, 2008\n", + " - Worth going back down again\n", + "- Relocation was attempted in 2022\n", + " - No obvious dig could be found, may be the small filled in hole 5m towards Kuk from Royston Vasey\n", + " - Not promising\n", + "\n", + "### E1\n", + "\n", + "2022:\n", + "\n", + "
\n", + "\n", + "
\n", + "\n", + "2008:\n", + "\n", + "
\n", + "\n", + "
\n", + "\n", + "2007:\n", + "\n", + "
\n", + "\n", + " \n", + "
\n", + "\n", + "- Discovered in 2007 [HM2 draft, page 14]\n", + " - A 25m pitch leading to small windows which require widening to pass\n", + "- Revisited in 2008 [HM2 draft, page 41]\n", + " - \"small crawl\" ongoing, but abandoned. Still a lead?\n", + " - \"deep deep\" crawl not dead, dug out to very tight pitch-head. Surface survey, tied centerline to M2 entrance\n", + "- Revisited in 2009 [HM2 2019 draft, page 64]\n", + " - cave approx 30m deep\n", + " - dropped second pitch (capping and chiselling) into chamber, dug in floor to bedrock. Quote: \"No better nor worst than capped pitch, but not the stunning lead\n", + "we were hoping for.\" Photos in Slov 2009 folder\n", + "\n", + "### E2\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Relogged in 2022\n", + "- Visited either 2018 or 2019\n", + " - Ben R remembers poking around it with Janet at some point\n", + " - No obvious leads that he can remember\n", + " - Could be revisited\n", + "\n", + " \n", + "### E6\n", + "\n", + "2007:\n", + "\n", + "\" \n", + "\n", + "- Photo from 2007, information from filename. Red paint marking \"E7\" noted. No other info\n", + "- Unclear if a cave\n", + "- could be revisited\n", + "\n", + "\n", + "### E7\n", + "\n", + "\" \n", + "\n", + "- Photo from 2007, information from filename. No other info\n", + "- Unclear if a cave\n", + "- could be revisited\n", + "\n", + "\n", + "### E8\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Not a cave\n", + " - Logged as \"obvcave\" on historical GPS files\n", + " - Just an alcove, like K1\n", + " - Small free climb through to the roof\n", + "\n", + "\n", + "### Gelateria, B92\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Logged as B92 on old GPS data (not sure when)\n", + "- Uncovered in 2019 due to low snow levels\n", + " - Dug a little but not very promising\n", + " - It is a real cave but get's very tight very quickly and the digging could continue for a long time\n", + "- Poked again in 2023\n", + " - Christened Gelateria since it's next to where we get snow for the bivi\n", + " - Still doesn't look promising, but recovered some digging things left from 2019\n", + "\n", + "### Gondolin\n", + "\n", + "- Discovered in 2017 [HM3, page 232]\n", + " - Pushed for three pitches before the cave dies\n", + "\n", + "### Hare Cave\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Description in HM1, page 183, 2004\n", + " - Was guarded by a large hare in 2003, so left until 2004\n", + " - Draughting strongly from the floor\n", + " - Seems to be a false floor at the top of a rift, could be dug\n", + " - Small phreatic \"torpedo\" tubes found in upper levels\n", + "- Revisited in 2005 [HM1, page 191]\n", + " - Torpedo tubes all found to close down, no leads left\n", + "- Revisited in 2006 [HM1, page 206]\n", + " - Investigated a phreatic tube but it didn't seem to go anywhere\n", + " - A strongly draughting dig in the centre of the chamber but more digging is required to see if this goes or not\n", + "- Revisited in 2017 [HM3, page 231]\n", + " - As previously reported, the \"torpedo tubes\" do not go and no more leads were found\n", + "\n", + "### Jailbreak\n", + "\n", + "- Discovered in 2013 [HM3, page 34]\n", + " - Although it leads to a chamber with many ways on, all of them seem to die\n", + " - Perhaps possible to dig, but no easy places\n", + "- Revisited and killed in 2014 [HM3, page 58, page 104]\n", + " - Survey and description in HM3 reference\n", + " - Main lead was killed after hauling a boulder out of the way, other lead was also killed\n", + "\n", + "### Janet's Little Cave, MLC, My Little Cave\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "2009:\n", + "\n", + "
\n", + "\n", + "\n", + "
\n", + "\n", + "\n", + "- Description in HM1, page 184, 2004\n", + " - Small airy passage in the side of a shakehole near the Kuk path\n", + " - Tube from first chamber into second chamber that hasn't been pushed\n", + " - Ongoing lead as of 2004\n", + "- Explored and surveyed in 2019 by Tanguy Racine\n", + " - This was when the Disto data was added to the GitHub repo\n", + " - Presumably found to be dead? No indication of any leads\n", + "- Revisited by DPW and Leo Antwis 2022\n", + " - Dug further but slow progress and not promising\n", + " - Also found cave to be dead, after checking thoroughly for leads (including through tight hole)\n", + "\n", + "### JCC\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Unsure if this is a cave or not, a GPS waypoint of this name is mentioned in HM2 draft, page 44, 2008\n", + " - East of M19 there is large entrance with a draughting dig that looks promising\n", + "- Relogged in 2023\n", + " - This description does indeed hold true, but dig wasn't investigated\n", + "\n", + "### JJ1\n", + "\n", + "- Discovered in 2006, HM1 page 214\n", + " - Multiple caves in the V8 valley, unclear which is JJ1 from HM1 description alone\n", + " - Seems to be a small chamber, a blowing aven and an unpushed wet crawl\n", + "\n", + "### JJ2, Pella's Feathers\n", + "\n", + "- Discovered in 2006, HM1 page 214\n", + " - Many caves in the V9 valley, but this one is an obvious triangular hole\n", + " - A crawl continues for 10m before splitting\n", + " - The left branch dies, whilst the right branch ends with a rock that requires clearing to progress further\n", + "\n", + "### JJ3, Hawk Cave\n", + "\n", + "- Discovered in 2006, HM1 page 216\n", + " - Initially discovered by Andrej Fratnik and \"the other Andrej\" back in the 70s\n", + " - Rough survey and description given in HM1 (see above page)\n", + " - Many drafting leads left due to lack of digging equipment and over suits\n", + "- Revisited in 2007 [HM2 draft, page 15]\n", + " - Left ongoing due to lack of rope and time\n", + "\n", + "### JJ4\n", + "\n", + "- Discovered in 2006, HM1 page 215\n", + " - A winder on the side of Kuk\n", + " - No indication of any leads\n", + "\n", + "### JJ5\n", + "\n", + "- Discovered in 2006, HM1 page 215\n", + " - Crawls and chambers end in a desperate dig beneath hanging death\n", + "\n", + "### JJ6\n", + "\n", + "- Not a cave, but a waypoint set in 2006, HM1 page 215\n", + " - Many caves are visible from this point\n", + "\n", + "### K1, The Goat Shelter\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- An obvious entrance on the flank of Kuk that only goes to a higher entrance with no leads [HM1, page 195, 2005]\n", + "\n", + "### K2\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2005 [HM1, page 195]\n", + " - Easy digging and massive draught\n", + " - Rock is very loose\n", + " - Two days of digging in 2005\n", + "- Revisited in 2012 [HM2 draft, page 136]\n", + " - Seems to have the most potential of all the area K caves\n", + " - Much digging required before it goes\n", + "- Revisited in 2015 [HM3, page 140]\n", + " - Found to \"not go\" although given it was an existing dig, this may have been subjective\n", + "- Revisited in 2022\n", + " - Goes into small chamber with dig off to the side\n", + " - Possible to dig in crawl sloping up towards the surface\n", + " - No draft felt on a very warm and still day\n", + " - Not very promising\n", + "\n", + "### K3\n", + "\n", + "- A large 30m shaft on top of Zeleni Vrh, believed bottomed in the early 90s [HM1, page 195, 2005]\n", + "\n", + "### K4\n", + "\n", + "- Entrance on north face of Kuk, found to just be a window with light filtering in from above [HM1, page 195, 2005]\n", + "\n", + "### K5\n", + "\n", + "- Entrance on west end of north Kuk face [HM1, page 195, 2005]\n", + " - Abseiled down to scree floor but unclear if cave is completely dead\n", + "\n", + "### K6\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- First mentioned 2005\n", + " - Sharp crawl through to mud floor opening out with small draught, could be pushed further with elbow pads [HM1, page 195, 2005]\n", + "- Revisited in 2012 [HM2 draft, page 136]\n", + " - Good progress was made with digging\n", + "- Revisited in 2022\n", + " - Closes down into a dig which gets narrower not bigger\n", + " - No obvious draft on a very warm and still day\n", + " - Could be dug further but not very promising\n", + "\n", + "### K7\n", + "\n", + "2005:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- A dodgy chamber reached by a 5m clamber over boulders [HM1, page 195, 2005]\n", + " - Small draught, may be possible to dig\n", + "\n", + "### K8\n", + "\n", + "- Overhang into a small choked chamber [HM1, page 195, 2005]\n", + "\n", + "### K9\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Quickly opens out into a 15m pitch [HM1, page 196, 2005]\n", + " - A twin pitch is reachable from a large window\n", + " - Dig potential in a draughting collection of rubble\n", + "- Revisited in 2022\n", + " - Located the entrance to photograph and log the GPS location, but pitch not descended\n", + "\n", + "### K10, Torn Testicle\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- A very small hole currently blocked but with obvious continuation [HM1, page 196, 2005]\n", + " - Currently only descends 3m\n", + " - stoned rattle when pushed to the north\n", + " - Would need to remove sharp rock blades and lift out boulders in order to progress any further\n", + "- Revisited in 2022\n", + " - Human sized hole in pavement that's very grabby and unpleasant\n", + " - Person sized alcove at the bottom, with another person sized alcove off to the side at floor level\n", + " - No indication of any continuation or possible digs, not promising\n", + "\n", + "### K11\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Scree climb into a chamber at the end of a shakehole with a cold draught and good digging possibilities [HM1, page 196, 2005]\n", + "- Revisited in 2012, presumed to be reasonably promising but not incredible [HM2 draft, page 136]\n", + "- Revisited in 2022\n", + " - Obvious entrance in large shake hole which leads to moderately sized chamber\n", + " - Small descending hole on right side of entrance which may be possible to dig\n", + "\n", + "### K12, Victoria Coach Station\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- A very large entrance leading to a large snow slope [HM1, page 196, 2005]\n", + " - Enormous draught in places, but many crawls blocked with ice and rubble\n", + "- Revisited in 2012, presumed to be reasonably promising but not incredible [HM2 draft, page 136]\n", + "- Revisited in 2015 [HM3, page 140]\n", + " - Two days of digging resulted in slow progress\n", + " - Crawl get's narrower\n", + " - Still a \"promising\" lead\n", + "- Revisited in 2022\n", + " - Lead to back of main chamber is a dig continuing in a few meters but with a very loose roof which rocks fell from when crawled through\n", + " - Dig is ongoing but sketchy given looseness of surrounding rock\n", + " - Small alcove found between boulders and snow plug by entrance, no continuation but with more melting this may reveal further alcoves\n", + " - No other leads / crawls could be found, leaving only the scary dig\n", + "\n", + "### K13, Pedestrian Subway / Arrivals Hall\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Rift directly above K12 with possible dig to the South East and rift in floor connecting with the K12 main chamber [HM1, page 197, 2005]\n", + "- Revisited in 2022\n", + " - An infuriatingly good entrance that is completely free of rock and gravel, but unfortunately goes straight back into the roof of K12\n", + " - No indication of any other leads, not promising\n", + "\n", + "### K14\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- A shallow rift leading to a small chamber, likely to break onto the surface but not pushed fully [HM1, page 197, 2005]\n", + "- Revisited in 2022\n", + " - Rift drops down into boulder filled chamber\n", + " - Route going towards surface\n", + " - Another possible dig underneath the entrance but not easy\n", + " - Overall not promising\n", + "\n", + "### K15, K15i (The Rik-Venn Imaginary Series)\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- A big blowing and cold cave ending in a dig [HM1, page 197, 2005]\n", + " - Goes in ten meters south and down before reaching a choke underneath a suspended boulder\n", + " - Choke has been dug for one hour but lacked crowbar\n", + "- Revisited in 2022\n", + " - Good entrance which goes into medium sized chamber but quickly chokes\n", + " - Many small birds living in the cave at time of visit\n", + "\n", + "### K16, The Escalator\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- A series of holes by the Skrbina path [HM1, page 197, 2005]\n", + " - Many alcoves, strong draught and ice plug at bottom\n", + "- Revisited in 2022\n", + " - Can be approached from any direction, but be very careful when approaching from above as the entrance is hidden beneath a small overhang making easy to fall into given the steep scree slope\n", + " - A series of large entrances to a single large chamber with steep scree slope\n", + " - At the top of the slope, a small chamber which is not hard to reach was not investigated as we ran out of time\n", + " - At the bottom of the slope there is a small entrance to another chamber, however the entrance is very small and there is a risk of it being sealed by falling scree upon entry\n", + " - Promising, should be revisited\n", + "\n", + "### K17\n", + "\n", + "- Small chamber at top of shakehole on Podriagora (spelling may be incorrect in HM1?) [HM1, page 197, 2005]\n", + " - Easy digging at end but loose and scary\n", + "\n", + "### K18\n", + "\n", + "- Rift near K17 disappears into a 5m pitch to the floor, not bottomed due to lack of rope and hanging death [HM1, page 197, 2005]\n", + "\n", + "### K19, Coach-Crash Dig\n", + "\n", + "2005:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Entrance rift in a pile of boulders drops down a few meters the runs down into a gravel pile and opens out [HM1, page 198, 2005]\n", + " - Infamous near death experience for Dave Wilson\n", + " - Still possible to access the cave underneath the fallen boulder\n", + " - Boulder now wedged in rift requires splitting, preferably with caps\n", + "- Revisited in 2012 [HM2 draft, page 136]\n", + " - Digging continued but no further information\n", + "- Revisited in 2022\n", + " - Dig looks to have been filled in by falling rock and scree given it's exposed location at the bottom of a large scree slope\n", + " - Gravel chamber is still visible 2 m down, but any digging would result in the surrounding rock collapsing inwards\n", + " - Any dig likely to be filled in within a year or two or scree and rock fall\n", + " - Not promising\n", + "\n", + "### K20, K-Moss\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Near K15, a small mossy hole with a slight draught [HM1, page 198, 2005]\n", + " - Some digging carried out, but would be easy to continue further\n", + "- Revisited in 2022\n", + " - Hardly an entrance, just a small mossy depression in the ground with no draught or cold air, on a very warm and still day\n", + "\n", + "### K21\n", + "\n", + "- First mentioned as being revisited in 2012 [HM2 draft, page 136]\n", + " - No further information, but not included in list of \"not promising\" entrances, so presumed to be reasonably promising\n", + "\n", + "### K22\n", + "\n", + "- First mentioned as being revisited in 2012 [HM2 draft, page 136]\n", + " - \"Not at all promising\"\n", + "\n", + "### K23\n", + "\n", + "- First mentioned as being revisited in 2012 [HM2 draft, page 136]\n", + " - No further information, but not included in list of \"not promising\" entrances, so presumed to be reasonably promising\n", + "\n", + "### K24\n", + "\n", + "- First mentioned as being revisited in 2012 [HM2 draft, page 136]\n", + " - \"Not at all promising\"\n", + "\n", + "### K25\n", + "\n", + "- First mentioned as being revisited in 2012 [HM2 draft, page 136]\n", + " - \"Not at all promising\"\n", + "\n", + "### K26\n", + "\n", + "- First mentioned as being revisited in 2012 [HM2 draft, page 136]\n", + " - No further information, but not included in list of \"not promising\" entrances, so presumed to be reasonably promising\n", + "\n", + "### K27\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- First logged in 2022\n", + " - Logged after thinking it was K14\n", + " - Short drop into gravel filled chamber\n", + " - No continuation or possible digs, not promising\n", + "\n", + "### K28\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- First logged in 2022\n", + " - A fairly small, draughting, rubble-filled hole about a meter cubed\n", + " - Likely to have been snow covered previously given how sheltered and cold it is\n", + " - Considering draught was felt on a very warm still day, this is a promising indication of nearby cave passage\n", + " - No continuation or digging potential, not promising as a lead in itself\n", + "\n", + "### K29\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Previously logged as K99 on the old GPS files, but no mention of it in any hollow mountain editions so unclear why it broke with the area K naming convention\n", + "- Logged as K29 in 2022\n", + " - A small chamber 5m underneath large boulders\n", + " - Leads to a second small alcove\n", + " - Not promising as a lead in itself, but cold\n", + " - No obvious draught on a very warm and still day\n", + "\n", + "### Keyhole Cave\n", + "\n", + "- Very close to Postcard Cave, see Postcard cave entry for description of location\n", + "\n", + "### LP1\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2022\n", + " - LP = Limestone Pavement, as previously caves here were named TR1,2,3 etc. but this system breaks down when anyone other than Tanguy finds a cave\n", + " - Small chamber filled with rocks which can be reached from multiple entrances\n", + " - Additional entrance has obvious cave below, likely providing a better entrance but blocked by large rocks\n", + " - Initial hauling and digging of this better entrance\n", + " - Inside loose slope leads to snow plug with crawl going around corner beyond, not pushed as no oversuit available\n", + " - No breakthrough made - good potential, worth revisiting\n", + "\n", + "### LP2\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2022\n", + " - 2m descent to snow plug\n", + " - Draught disappears in front and to the left in a small rift not possible to dig\n", + " - Snow tasted of high quality, according to Leo\n", + "- Revisited in 2023 by Julien\n", + " - Small tunnel to left which rocks bounce down for a while\n", + " - Potentially leads to pitch\n", + "\n", + "### LP3\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2022\n", + " - Not descended, no notes taken at the time\n", + " - May be worth revisiting\n", + "- Killed in 2023\n", + " - Bolted and descended about 10m down on single bolt backed up with natural\n", + " - Snow plug about 5m down with pitch continuing to the side of it\n", + " - Passage becomes choked and grabby\n", + " - Slight draft but small and too difficult to dig, effectively dead\n", + "\n", + "### LP4\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered 2022\n", + " - May have been descended before\n", + " - Likely plugged by snow\n", + " - Unclear from notes whether this is worth returning to\n", + "- Visited 2023\n", + " - Didn't go down but stone rattles down a long way\n", + " - Quite promising\n", + "\n", + "### LP5\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered 2022\n", + " - Big hole with gravel and snow at the bottom\n", + " - Likely connects with LP4\n", + " - Unclear from notes whether this is worth returning to\n", + "\n", + "### LP6\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2022\n", + " - Hole in side of shake hole blocked by boulder with visible slope underneath\n", + " - Looks possible to widen the entrance\n", + " - Worth revisiting\n", + " - Also logged as TJ1\n", + "\n", + "### LP7, Gardeners of the Galaxy, The Jaws of Death\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2022\n", + " - A new hole had opened up in a shake hole since the previous expedition before covid\n", + " - Far too loose to descend this year, so instead we chucked a load of rocks down it (many good videos)\n", + " - These are the jaws of death that nearly ate Rory Rose\n", + "\n", + "### LP8\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2022\n", + " - Not descended but look interesting given entrance is recently exposed above snow plug\n", + " - Worth revisiting, since new entrances may have been revealed\n", + "- Revisited in 2023\n", + " - A snow crawl was found but it didn't go very far\n", + " - Rest of the cave seems dead, but high snow levels\n", + "\n", + "### LP9\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2022\n", + " - Only discovered this cave after leaving the mountain\n", + " - Had initially thought this was PF10 but apparently not, since actual entrance was instead logged as M24, and this entrance as PF10\n", + " - The \"M24\" entrance, which is larger and much further down the pavement has been confirmed as PF10\n", + " - Rocks fall a fair way, definitely worth a look\n", + " - Next to and just above Alex Seaton's old dig into the side of a cliff\n", + "- Revisited in 2023\n", + " - Entrance is full of snow so can't hear rocks fall down this year\n", + " - Neither Arun or Astrid could fit into the cave, as entrance is much smaller than it looks\n", + " - Would need some widening for anyone to investigate further\n", + "\n", + "### LP10\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered 2023\n", + " - Draughting slightly outwards\n", + " - Could be dug but would require more effort than it's worth\n", + " - Very cold\n", + "\n", + "### LP11\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Draughting out slightly\n", + " - Tight rift continues down for about 4m but not investigated due to lack of over suits\n", + "\n", + "### LP12\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered 2023\n", + " - Opens out to a 3m x 1m chamber at the bottom\n", + " - Possibly possible to dig, but very choked\n", + "\n", + "### LP13\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Logged in 2023\n", + " - Can see a continuation past the snow at the bottom of a 5m shake hole\n", + " - Not descended due to lack of gear\n", + "\n", + "### LP14\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered and killed in 2023\n", + " - Reasonably sized shake hole but dies quickly\n", + " - Free climbed down\n", + " - Dead, completely choked with gravel\n", + "\n", + "### LP15\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered and killed in 2023\n", + " - Right next to the jaws of death\n", + " - Initially very promising but found to link to next shake hole after 10m\n", + " - Extensive digging allows for a cracking through trip\n", + " - No obvious continuation, killed\n", + "\n", + "### LP16, Icehorn\n", + "\n", + "2023:\n", + "\n", + "\n", + "\n", + "- Discovered in 2023\n", + " - Squeezing past the snow plug leads to a large chamber 5m\n", + " - Many small holes leading off of the main shake hole which all seem to drop into the main chamber when throwing rocks down\n", + " - Dig at bottom of large chamber leads to an ongoing crawl but dies quickly in all directions after being dug\n", + " - Another dig up in the left wall of the chamber dies quickly\n", + " - All other leads seem to die\n", + "\n", + "### LP17\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered and killed in 2023\n", + " - Twin holes, climb down one and then stoop into the other\n", + " - Looked promising and descended down for about 5m but dies\n", + " - No obvious digs or drafts\n", + "\n", + "### LP18\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Not descended but possible continuation out of sight\n", + " - Not that promising but worth a look\n", + "\n", + "### LP19\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - 7m hole with possible continuation out of sight\n", + " - Not descended as looked at other holes instead\n", + "\n", + "### LP20\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Previously logged as TJRIFT\n", + " - Large 10m deep rift definitely worth a look\n", + " - Two entrances and another two holes just down the valley which may also be connected\n", + "\n", + "### LP21, Tin Can Hole\n", + "\n", + "2023:\n", + "\n", + "\n", + " \n", + "- Discovered and killed in 2023\n", + " - Dropped previously since we found a fish tin at the bottom\n", + " - No obvious digs all completely full of rubble \n", + " - Dropped on a rope but may have been descended by crazy free climb before, no spits seen\n", + "\n", + "### LP22\n", + "\n", + "2023:\n", + "\n", + "\n", + " \n", + "- Discovered in 2023\n", + " - Small dark not drafting hole\n", + " - Not investigated since no over suit but worth a look\n", + "\n", + "### LP23\n", + "\n", + "2023:\n", + "\n", + "\n", + " \n", + "- Discovered and killed in 2023\n", + " - Can walk in\n", + " - Dead, completely choked with gravel\n", + "\n", + "### LP24, (Arun's) Secret Hole, How much is that Chamois in the window\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered and killed in 2023\n", + " - Dropped by Astrid and Arun\n", + " - Incredibly tight and sharp, required much bashing and multiple bolts\n", + " - Dead chamois found on one ledge halfway down\n", + " - Cave chokes up with gravel, no obvious digs or drafts\n", + " - An impressive ice stal at the bottom\n", + "\n", + "### LP25\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Not investigated since focussing on other caves\n", + " - Very close to JOD\n", + " - Worth a free climb down, quick to check\n", + "\n", + "### LP26\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Not investigated since focussing on other caves\n", + " - Very close to JOD and next to LP25\n", + " - Worth a free climb down, quick to check\n", + "\n", + "### LP27\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Snow plugged rift not descended\n", + " - Doesn't look that promising\n", + "\n", + "### LP28, Christmas Pot\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Right next to the LP Christmas tree\n", + " - Dies in boulders at the bottom\n", + " - Possible dig but large overlying boulders mean probably not worthwhile\n", + "\n", + "### LP29\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Not descended but looks like a possible dig at the bottom\n", + " - Likely free climbable\n", + "\n", + "### LP30\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Not descended but looks like a possible dig at the bottom\n", + " - Likely free climbable\n", + "\n", + "### LP31\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Not descended but small chamber at the bottom with snow\n", + " - Needs bolting\n", + "\n", + "### LP32\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Not descended but small chamber beneath a boulder\n", + "\n", + "### LP33\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Not descended possible dig at the bottom\n", + " - Needs bolting\n", + "\n", + "### LP34\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Not descended since needs bolting\n", + " - Large hole with ice at the bottom\n", + "\n", + "### LP35\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Screen covered floor 4m down\n", + " - Not descended\n", + "\n", + "### LP36\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Pot with stream-way like walls\n", + " - Bottom is filled with scree, 3-4m deep\n", + " - Undescended\n", + "\n", + "### LP37, Stalagm-ice\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered and killed in 2023\n", + " - Obvious opening drops down to choked shaft\n", + " - Small but impressive ice formations at back of chamber\n", + " - No obvious digs or ways on\n", + "\n", + "### M1\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Depth in 1983 recorded as -61m [HM1, page 13]\n", + "- Revisited in 2007 [HM2 draft, page 13]\n", + " - Repushed and resurveyed\n", + " - One ongoing lead left in a window, which may require some chemical persuasion\n", + "\n", + "### M2\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- An entrance to the system. Discovered by the Slovenes back in the 70s [HM1, page 6]\n", + "\n", + "### M3\n", + "\n", + "- No known coordinates, altitude or depth as of 1993 [HM1, page 13]\n", + "- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\n", + "\n", + "### M4\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- No known depth as of 1993 [HM1, page 13]\n", + "- Relogged in 2022\n", + " - Not descended\n", + " - M4 painted in blue, rather than red paint for some reason\n", + " - May be worth revisiting, since close to the bivi\n", + "\n", + "### M5\n", + "\n", + "- No known coordinates, altitude or depth as of 1993 [HM1, page 13]\n", + "- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\n", + "\n", + "### M6\n", + "\n", + "2007:\n", + "\n", + "\n", + "\n", + "\n", + "- Depth indicated as -67 m as of 1993 [HM1, page 13]\n", + "- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\n", + "- Revisited 2007 [HM2 draft, page 13]\n", + " - small extensions - \"pretty little bit of stream formed new cave, ended in draughting bedding plane dig.\"\n", + " - images of surface shaft and Tetley putting in a rebelay\n", + " - resurveyed\n", + "\n", + "### M7\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Depth indicated as -20m as of 1993 [HM1, page 13]\n", + "- Relogged in 2022\n", + "\n", + "### M8\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Depth indicated as -13m as of 1993 [HM1, page 13]\n", + "- Relogged in 2022\n", + "\n", + "### M9\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Depth indicated as -19m as of 1993 [HM1, page 13]\n", + "- Relogged in 2022\n", + "\n", + "### M10\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Depth indicated as -33m as of 1993 [HM1, page 13]\n", + "- Visited frequently to collect snow for water\n", + "- Explored more thoroughly in 2015 [HM3, page 111]\n", + " - One way on dies in a too-tight rift\n", + " - Another route dies in an icy section\n", + "\n", + "### M11\n", + "\n", + "- Depth indicated as -6m as of 1993.\n", + "- \"It is difficult to understand why holes such as M11 (6m deep!) were noted, as the plateau has many similar or deeper surface holes which were not then formally recognised.\" [HM1, page 13]\n", + "- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\n", + "\n", + "### M12 maybe?\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Depth indicated as -15m as of 1993 [HM1, page 13]\n", + "- Possibly relocated 2022\n", + " - Not descended but found a cave which looks dug out, and is in the vicinity of M12 on the GPS\n", + " - At the exact location of M12 on the GPS, there are no obvious entrances\n", + " - M12 could be off the cliff, since some old coordinates are dozens of meters away from their actual location\n", + " - Should definitely be investigated, can hear a small chamber when rocks thrown\n", + "\n", + "### M13\n", + "\n", + "- Depth indicated as -15m as of 1993 [HM1, page 13]\n", + "- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\n", + "\n", + "### M14\n", + "\n", + "- Depth indicated as -22m as of 1993 [HM1, page 13]\n", + "- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\n", + "\n", + "### M15\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Depth indicated as -58m as of 1993 [HM1, page 13]\n", + "- Relogged 2022\n", + "\n", + "### M16\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- An entrance to the main system discovered by the Slovenes in 1982. [HM1, page 8]\n", + "\n", + "### M17\n", + "\n", + "2018:\n", + "\n", + "\n", + "\n", + "\n", + "- Depth indicated as -58m as of 1993 [HM1, page 13]\n", + "- Further explored in 1994, HM1 page 25 with survey\n", + " - Pushed until it got too cold, going lead at bottom of cave\n", + "- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\n", + "\n", + "### M18, Torn T-Shirt Pot, Jama Strgane Srajce\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Large entry about discovery in HM1 page 19 from 1994\n", + "- An entrance into the main system\n", + "\n", + "### M19, BS Pot\n", + "\n", + "- Entry about discovery in HM1 page 25 from 1994\n", + " - Extremely tight and loose\n", + " - Next to M17\n", + " - Incredibly strong draft\n", + " - Pushing stopped due to incredibly loose walls requiring shoring\n", + "- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\n", + "\n", + "### M20, White Shiver Pot\n", + "\n", + "- Large entry about discovery and survey in HM1, page 17, 1994\n", + " - Large 15m pothole with 20m drop to a snow plug\n", + " - Squeezing past the snow plug led to a large chamber\n", + " - No indication of continuation of digging potential\n", + "- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\n", + "\n", + "### M21, B9, Jackie's Blower\n", + "\n", + "- Entry about discovery and survey in HM1, page 33, 1995\n", + " - Two entrances near the top of the cliff\n", + " - Very loose\n", + "- Revisited in 2016 [HM3, page 219]\n", + " - Has apparently been visited a number of times since initial discovery\n", + " - The bottom pitch was pushed but no mention of whether this lead is ongoing or not\n", + "\n", + "### M22, Venus Cave\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Entrance about discovery and survey in HM1, page 34, 1995\n", + " - Named as it sucked flies in like a venus fly trap, strong draft!\n", + "- Explored in 2018 as seen in 2018 documentary video, no encouraging ways on after digging\n", + "\n", + "### M23, Julie's Pantry Cave\n", + "\n", + "- Entry on discovery and survey in HM1, page 32 from 1995\n", + " - Very strong draft\n", + " - Terminates at a small passage\n", + "- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\n", + "\n", + "### M24, PF10\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Entry about discovery and survey in HM1, page 36, 1995\n", + " - Crawl at bottom deemed too unstable to continue exploration\n", + " - Abandoned for other leads in 1995\n", + " - By the looks of EE, still a window on P4 and a bolt climb at bottom of P4 left unexplored. Worth a look. Could break into southern extensions.\n", + "- Relocated in 2022\n", + " - Previously M24 and PF10 were logged as being over 100m apart\n", + " - Upon throwing rocks down, sounds of ice smashing could be heard\n", + " \n", + "\n", + "\n", + "### M25, Gulliver's Kipper Cave\n", + "\n", + "- Entry about discovery in HM1, page 33, 1995\n", + " - On the face of Mig, visible from the shepherd's huts\n", + " - Initially opens up but all proceeding chambers closed down\n", + " - Little effort put into the cave, no survey taken. Could be worth a revisit for the katasterjam.\n", + "- Rediscovered by Ben R and Ben H in 2019. It is located up the coincidence valley and is a very big entrance with a P10 to a pile of wood. Was bolted in 1996 and is more or less dead (see HM1)\n", + "- Coordinates converted from GK5 to Lat/Long: 46.245408, 13.765006\n", + "- May have digging potential\n", + "\n", + "### Monatip\n", + "\n", + "- An entrance to the main system discovered in 2007 [HM2 draft, page 18]\n", + "\n", + "### Moth Cave\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "2007\n", + "\n", + "\n", + "\n", + "- Discovered in 2006 [HM1, page 207]\n", + " - Located close to Hare cave\n", + " - Left at a pile of draughting boulders which are easy and quick to dig\n", + " - About an hour of digging was carried out in 2006\n", + "- Revisited in 2007 [HM2 draft, page 15, page 25]\n", + " - Large volumes of gravel removed\n", + " - All leads seem to have been killed\n", + " - Only way on is another squeeze which would require rock removal to pass\n", + "\n", + "### Mugo\n", + "\n", + "2020:\n", + "\n", + "
\n", + "\n", + "\n", + "
\n", + "\n", + "- Discovered in 2020 [Slovenia subsite, 2020 Summer Action]\n", + " - accessed from the contour path linking Kal to the head of the Tolminka valley\n", + " - found while looking at overhangs and possible cave entrances that had been identified from below before ascending scree slopes below Gondolin\n", + " - short descent unveiled a chamber which continued with a small climb into a dead end\n", + " - two entrances\n", + " - surveyed; final length 38m, depth 7m\n", + "\n", + "### N01\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + " \n", + "
\n", + "\n", + "- Not the same as the N1 in area N\n", + "- Rediscovered in 2014 [HM3, page 104]\n", + " - Found to be 3m deep and leading into a small chamber but no sign of downward progression\n", + "- Relogged in 2023\n", + " - Not dropped, red spray paint and gravel floor visible\n", + "\n", + "### N1\n", + "\n", + "- No known information\n", + "- Note that this is different to the N01 found to the south of Kuk\n", + "\n", + "### N2\n", + "\n", + "- No known information\n", + "\n", + "### N3\n", + "\n", + "- No known information\n", + "\n", + "### N4\n", + "\n", + "- No known information\n", + "\n", + "### N5\n", + "\n", + "- No known information\n", + "\n", + "### N6\n", + "\n", + "- No known information\n", + "\n", + "### N7\n", + "\n", + "- No known information\n", + "\n", + "### N7\n", + "\n", + "- No known information\n", + "\n", + "### N8\n", + "\n", + "- No known information\n", + "\n", + "### N9, Kuk Pot\n", + "\n", + "2012:\n", + "\n", + "\n", + "\n", + "\n", + "- First mentioned in 2012 [HM2 draft, page 136]\n", + " - First two pitches dropped\n", + " - Continuation visible but left due to lack of time\n", + "- Returned to and killed in 2019. Writeup on UKCaving [here](https://ukcaving.com/board/index.php?threads/maraton-iccc-jspdt-slovenia-expedition-july-2019.25199/).\n", + "\n", + "### N10\n", + "\n", + "- No known information\n", + "\n", + "### N11\n", + "\n", + "- Someone (unknown) recently logged this on one of the club GPS's. Coords are: 46°16'02\"N 13°45'38\"E\n", + "- Worth having a look\n", + "\n", + "### N12\n", + "\n", + "- Someone (unknown) recently logged this on one of the club GPS's. Coords are: 46°15'47\"N 13°45'33\"E\n", + "\n", + "### N13\n", + "\n", + "- Also logged as \"BOLTCAVE\" and \"WB1\". A vertical shaft with spits. No information on who originally descended this, no mentions in hollow mountains. Definitely worth checking out. Coords are: 46°15'47\"N 13°45'37\"E\n", + "\n", + "### N14\n", + "\n", + "- Also logged as \"WB2\". An approximately 5m deep vertical rift with possible cave at the bottom. Remains undescended because of lack of resources. Definitely worth checking out. Coords are: 46°15'44\"N 13°45'38\"E\n", + "\n", + "### 0131\n", + "\n", + "- Possibly an accidental GPS marker, so might not be a cave. Between N11 and N12. Coords are: 46°15'54\"N 13°45'38\"E\n", + "\n", + "### P01 (North of Kuk)\n", + "\n", + "- Included on the area N map, HM3 page 264\n", + "- No information regarding this cave was found\n", + "\n", + "### P1\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Although very likely to have been discovered earlier, but no records of it\n", + " - Very close to M17, M19, JCC\n", + " - P series for Plateau as all the other caves in this area are either M series, which we don't continue any more, or have random names\n", + " - Short 5m drop to a small chamber, can’t see the bottom with bright sunlight, don’t look easily climbable\n", + " - Not descended due to lack of gear and time\n", + "\n", + "### P2\n", + "\n", + "2023:\n", + "\n", + "\n", + "\n", + "- Discovered in 2023\n", + " - Again, likely looked in before\n", + " - Can walk in but I’d tear my clothes, small chamber can’t see the back. Many fake caves around\n", + "\n", + "### P3\n", + "\n", + "2023:\n", + "\n", + "\n", + "\n", + "- Discovered in 2023\n", + " - Again, likely looked in before\n", + " - A bunch of holes above M17 which you’d need to be clipped in to investigate, but look as though they go back a fair way\n", + " - Potentially one of these is Mouse cave but poorly logged? The GPS for it was a fair way off but didn't correspond to any obvious entrance\n", + "\n", + "### P4\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Didn't drop in since no kit\n", + " - Looks like it probably dies but worth a proper look\n", + " - Small chamber may continue round to the left\n", + "\n", + "### P5\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2023\n", + " - Didn't look inside since no kit but so close to cliff abseil that it should be looked at\n", + " - Might be a good dig if nothing else\n", + "\n", + "### Planika\n", + "\n", + "2007:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2007 [HM2 draft, page 18]\n", + " - Large snow and ice filled cave with holes driven through it by water and air\n", + " - Ends in an un-pushed ice tube after a scary boulder funnel\n", + "- Revisited in 2008 [HM2 draft, page 31]\n", + " - No further progress on the route from the previous year made due to high snow levels\n", + " - A new rift (implied name Echo Rift) found from a water drilled hole through the snow plug which was pushed down a pitch\n", + " - Another chamber was found from a window\n", + " - Upper rift \"Diggers of the UG\"\n", + "\n", + "### Postcard Cave\n", + "\n", + "- Briefly mentioned in HM1, page 183, 2004\n", + " - In an adjacent shakehole to the east of Hare Cave\n", + " - No further information\n", + "- Description from 2007 on club wiki along with keyhole cave:\n", + " - \"Keyhole cave and postcard cave are very near the bivvy. The easiest way to describe them is to start from the edge of the shakehole with hare cave in. Facing towards primadoni direction hare cave is on the left side of the shake hole. Basically you are standing above postcard cave. It is in a smaller shakhole behind you. The entrance is a very low thin bedding plane that immediately breaks into an 'impressive' entrance phreatic tube with a choked draughting rift in the floor. This looks like many other entrances, so the way to confirm is that keyhole cave should also be present in the shakehole. Still facing the same way (i.e. away from the shakehole towards the hare cave shakehole), keyhole cave is on the left side and is almost completely invisible unless you are standing in exactly the right place. Entrance is a lovely phreatic keyhole about 1m high and really very hidden. The cave follows this shape for a couple of metres before ending in a choked small chamber. Not that interesting but a great entrance - would make a superb start to a trip\"\n", + "\n", + "### Primadona\n", + "\n", + "- A main entrance to the main system known about for a long time by the Slovenes\n", + "- First mentioned in HM1, page 118, 2000\n", + "\n", + "### Pueblo\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Not a cave\n", + " - Fratnik's old bivi spot from many decades ago\n", + " - Still filled with metal tent poles\n", + "- Relogged in 2022\n", + "\n", + "### Razor Cave\n", + "\n", + "- A cave near the Razor hut, extensively explored by the JSPDT [HM1, page 208, 2006]\n", + "- Surveyed in 2007 [HM2 draft, page 14]\n", + "\n", + "### Royston Vasey\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Entry about discovery and a survey in HM1, page 147, 2001\n", + " - Very close to the bivi, in an 8m deep shake hole\n", + " - Good digging potential given it's proximity to the bivi\n", + "- Rediscovered in 2008 [HM2 draft, page 44]\n", + " - Not pushed any further, only rediscovered\n", + "- Re-bolted and dug in 2022\n", + " - All possible leads investigated\n", + " - Can hear cave continues onto another chamber at bottom of final pitch but not worth blasting since walls close in\n", + " - Conclusively dead this time\n", + "\n", + "### S1, East Pole\n", + "\n", + "2009:\n", + "\n", + "\n", + "\n", + "\n", + "2007:\n", + "\n", + "\n", + "\n", + "\n", + "- Mentioned in HM1, page 99, 1998\n", + " - Multiple chambers and small pitches, but very unstable\n", + " - Multiple digging trips have since returned to the cave with no major breakthroughs\n", + " - \"[a] promising lead\"\n", + "- Revisisted in 2007, 2008 and 2009\n", + " - No write ups of the trips; only references to progress from tweet [Votla Gora tweets, 2:32 PM Aug 10th, 2008] given below\n", + " - \"S1: way to right hand pitch found by hammering rift above big pitch.Strong draft from tight meander, several hrs hard hammer.4th system?\"\n", + " - entrance photos and walk labelled under Eastpole\n", + "- Revisited in 2017 [HM3, page 271] [2017 logbook]\n", + " - Did not manage to make progress on the upwards dig\n", + " - Marginal progress was made over a tight rift, despite the loss of the lump hammer\n", + "\n", + "\n", + "### S2\n", + "\n", + "2007:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "- Photo of entrance by Jarvist\n", + "- No known information\n", + "\n", + "### S3\n", + "\n", + "2007:\n", + "\n", + "\n", + "\n", + "- Photo of entrance by Jarvist\n", + "- No known information\n", + "\n", + "### S4\n", + "\n", + "- No known information\n", + "\n", + "### S5\n", + "\n", + "2007:\n", + "\n", + "\n", + "\n", + "- Discovered in 2013 [HM3, page 37]\n", + " - Initially a free-climbable p6, followed by a p20 that requires a rope\n", + " - Appears that this hasn't been descended\n", + " - Confused whether the 2007 image is the same cave as Gergely's description from 2013 HM3\n", + "\n", + "### S6\n", + "\n", + "- Discovered in 2013 [HM3, page 37]\n", + " - Strongly drafting, just as much as S1\n", + " - Requires work but is the most promising lead in the area\n", + "\n", + "### S7\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2013 [HM3, page 37]\n", + " - Cold air drafting from between two boulders\n", + " - Not an actual entrance, but could be dug into one\n", + " - Photo of entrance by Jarvist\n", + " - Confused whether the lablled 2007 images are the same cave as Gergely's description from 2013 HM3 given that the 2007 photos show a pitch. It's not even that clear whether they relate to the same cave as each other, they look a little different\n", + " \n", + "### S8\n", + "\n", + "2007:\n", + "\n", + "\n", + "\n", + "- Photo of entrance by Jarvist\n", + "- No known information\n", + "\n", + "\n", + "### S12\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Relogged in 2022\n", + " - No known information\n", + " - If this is S12, where are S8-11?\n", + "\n", + "### S-A\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Relogged in 2022\n", + " - No idea what this is, but there's a large shake hole there\n", + " - Likely a nearby cave, but no obvious what the GPS point was referring to\n", + " - Should ask some old(er) lags\n", + "\n", + "### Samo1\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Unclear when Samo first logged this\n", + "- Revisited in 2022\n", + " - Crawl goes down at least 5m to capped entrance to small chamber\n", + " - Large draft and nearby to new Gardeners of the Galaxy hole, and clearly in the same line of shake holes as it, but cave heads in different direction\n", + " - Not worth revisiting\n", + "\n", + "### Samo2\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Unlcear when Samo first logged this\n", + "- Revisited in 2022\n", + " - 10m deep shaft, gravel floor with ice plug 2 by 10 m diameter at bottom\n", + " - Big draught and adjacent holes connects back in\n", + " - Cave conclusively killed\n", + "\n", + "### Stag Cave\n", + "\n", + "- Discovered in 2007 [HM2 draft page 15]\n", + " - Within 20m of the tents\n", + " - An initial pitch leads to a dead chamber\n", + "\n", + "### Storm cave\n", + "\n", + "- Description in HM1, page 184, 2004\n", + " - Main way on blocked by snow\n", + " - Other entrances in the area which were blocked by snow\n", + "\n", + "### Sunset Hole\n", + "\n", + "- Discovered in 2014 [HM3, page 104] by Fiona H\n", + " - A small hole, below Sunset Spot, not far off the main path (left when looking uphill) up to the Plateau\n", + " - Short tube sloping downwards into small chamber (room to turn around kneeling), tube continued sloping downwards and got too tight (leg sized)\n", + " - Not a good lead\n", + "\n", + "### T2\n", + "\n", + "- Mentioned in HM1, page 99, 1998\n", + " - A tight strongly drafting rift passage that requires hammering\n", + "\n", + "### The Freezer\n", + "\n", + "- Mentioned in HM1, page 148, 2001\n", + " - Further up the Gardener's World valley\n", + " - One un-pushed lead at the end in a dodgy boulder choke\n", + " - Contained a nice ice stalactite\n", + "- Spotted some coordinates on the [old Slovenia expo website](https://www.union.ic.ac.uk/rcc/caving/old/slovenia/report/cavedata)\n", + "\n", + "### The Hairdryer\n", + "\n", + "- Mentioned in HM1, page 99, 1998\n", + " - \"A slow shuffle into the bedding leads to a small, 8” hole. Beyond this restriction was black space, and the source of the very strong draft\"\n", + " - Noted in Jarv's requests for stories in HM2 Doesn't seem to have been investigated further\n", + "\n", + "### TR1\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2014 [HM3, page 62]\n", + " - A 1 x 1.5 m hole plugged with snow\n", + " - Multiple entrances, some of which free climbable and reaches floor of ice and rubble\n", + " - Left undescended\n", + "- Returned to in 2016 [HM3, page 188]\n", + " - All leads were found to die quickly in rubble and ice\n", + "\n", + "### TR2\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2014 [HM3, page 62]\n", + " - Snow and rubble slope leads down to a low chamber with several blind avens\n", + " - Terminal chamber reached after a short dug out crawl\n", + "- Revisited in 2022 by David and Rory\n", + " - Near entrance just prior to crawl, on left space noticed under boulder, dug out, leading to chamber\n", + " - Chamber terminates in too tight rift, Aven above chamber leads to undug light from surface\n", + " - Draft disappears underneath climb down into chamber into rock floor\n", + " - Thin person should investigate rift, might be possible to blast\n", + "\n", + "### TR3\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2014 [HM3, page 62]\n", + " - Entrance choke can be down-climbed to a small chamber with continuation requiring rock removal with tape, crowbar and chisel\n", + "\n", + "### TR4\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2014 [HM3, page 63]\n", + " - Obvious dig with upturned boulders near entrance\n", + "\n", + "### TR5\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2014 [HM3, page 63]\n", + " - Small free climb down\n", + " - Draughting with easy digging\n", + "\n", + "### TR6\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2014 [HM3, page 63]\n", + " - Dig in vegetated shakehole\n", + " - Closes down as boulders meet ceiling\n", + " - Harder digging\n", + "\n", + "### TR7\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2014 [HM3, page 63]\n", + " - No obvious digging, both branches quickly become impassable\n", + "\n", + "### TR8\n", + "\n", + "2022:\n", + "\n", + "
\n", + " \n", + "
\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Discovered in 2014 [HM3, page 63]\n", + " - Ends in rift blocked by ice and cobbles\n", + " - Would need serious digging if ice still present\n", + "- Revisited in 2023\n", + " - New hole likely uncovered from ice plug melt revealed 10m continuation\n", + " - Squeezing through leads to small chamber, second squeeze and then larger 5m wide, 10m long and 5m tall chamber\n", + " - End chamber called Kevin's Wine Cellar, “I’d genuinely put stuff in there, like wine and cheese” -Kevin\n", + " - Drafting quite a lot, and possible dig in the gravel with the draft coming from it. Mostly gravel so would need a lot of work\n", + "\n", + "### TR9\n", + "\n", + "2022:\n", + "\n", + "\n", + "\n", + "- Discovered in 2014 [HM3, page 63]\n", + " - Obvious way on is choked, no indication of how easy digging / rock removal might be\n", + "- Revisited in 2023\n", + " - Howling draft coming out of the cave\n", + " - Vocal connection to a shake hole behind the main entrance\n", + " - A dig was found at the back in a tight crawl and pushed for 5m and continues on for about another 5m\n", + " - Very strong draft coming from the crawl, which turns to the right into the mountain\n", + "\n", + "### TR10\n", + "\n", + "2023:\n", + "\n", + "
\n", + " \n", + " \n", + "
\n", + "\n", + "- Logged as TR10 (no idea when)\n", + "- Relogged 2023\n", + " - Unclear whether this was ever descended but a 5m hole which looks enticing\n", + " - Not descended due to lack of gear\n", + " - A TR11 GPS point was also logged but couldn't find any cave there within a 15m radius\n", + "\n", + "### U-Bend 571\n", + "\n", + "- Another entrance to the main system that quickly connects with Primadona\n", + "- First mentioned in HM1, page 120, 2000\n", + "- Connected to Primadona in 2007 [HM2 draft, page 14]\n", + "\n", + "### Vilinksa Jama\n", + "\n", + "- Discovered in 2008 [HM2 draft, page 43]\n", + " - Connects to Vrtnarija\n", + "\n", + "### Vrtnarija, Gardener's World\n", + "\n", + "- Entrance into the main system that began as a dig by Ben Ogborne [HM1, page 99, 1998]\n", + "- The entrance dig broke into the passage in 2000 [HM1, page 128]\n", + "\n", + "'''" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}