Skip to content

Commit

Permalink
Merge pull request #100 from destination-earth/patch_update_path
Browse files Browse the repository at this point in the history
Update pannel_plot_s3.ipynb
  • Loading branch information
annefou authored Oct 29, 2024
2 parents 84e6f4e + 9754223 commit 4d571bb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/pannel_plot_s3.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -116,16 +116,16 @@
" - This variable defines the folder name where the results are stored. You can update this to change the dataset being accessed.\n",
"\n",
"3. **`remote_path`**:\n",
" - The base path to the folder where the tags are stored in the S3 bucket. It points to the \"bargip\" subdirectory under the \"gfts-ifremer/tags\" folder.\n",
" - The base path to the folder where the tags are stored in the S3 bucket. It points to the \"bargip\" subdirectory under the \"gfts-ifremer\" folder.\n",
"\n",
"4. **`tag_list_` and `tag_list`**:\n",
" - These variables list all available tags within the specified folder (determined by `generation_name`). The tags are cleaned to only contain the relevant part of the path.\n",
" - These variables list all available tags within the specified folder (determined by `generation_name`). The tags are formatted to only contain the relevant part of the path.\n",
"\n",
"5. **`cloud_root`**:\n",
" - Specifies the root URL for tag data stored in the cloud (S3). This is the base location where all files for the analysis are stored.\n",
"\n",
"6. **`tag_root`**:\n",
" - Defines the root URL where the cleaned tag data, used for computation, is located. This is derived from `cloud_root` and the \"cleaned\" folder.\n",
" - Defines the root URL where the formatted tag data, used for computation, is located. This is derived from `cloud_root` and the \"formatted\" folder.\n",
"\n",
"7. **`scratch_root`**:\n",
" - Specifies the directory where the GFTS computation data is stored. It combines the `cloud_root` with the folder for the current generation of tracks.\n",
Expand All @@ -152,7 +152,7 @@
"## Update following with each expeirment you will examine\n",
"\n",
"# The name of experiment\n",
"remote_path = \"gfts-ifremer/tags/bargip\"\n",
"remote_path = \"gfts-ifremer/bargip\"\n",
"\n",
"# The name of the folder where the results are stored\n",
"generation_name = \"tracks_4\"\n",
Expand All @@ -169,7 +169,7 @@
"cloud_root = f\"s3://{remote_path}\"\n",
"\n",
"# tag_root specifies the root URL for tag data used for this computation.\n",
"tag_root = f\"{cloud_root}/cleaned\"\n",
"tag_root = f\"{cloud_root}/formatted\"\n",
"\n",
"\n",
"pn.extension()\n",
Expand Down

0 comments on commit 4d571bb

Please sign in to comment.