Skip to content

Commit

Permalink
update paths for jupyterhub
Browse files Browse the repository at this point in the history
  • Loading branch information
kkappler committed Oct 18, 2024
1 parent 0ef5eb2 commit e290409
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions notebooks/mtpy/12_aurora_processing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@
"metadata": {},
"outputs": [],
"source": [
"survey_dir = Path(r\"c:\\\\Users\\\\jpeacock\\\\OneDrive - DOI\\\\mt\\\\mt_short_course\\\\data\\\\phx\")\n",
"# survey_dir = Path(r\"c:\\\\Users\\\\jpeacock\\\\OneDrive - DOI\\\\mt\\\\mt_short_course\\\\data\\\\phx\")\n",
"survey_dir = Path().cwd().parent.parent.joinpath(\"data\", \"timeseries\", \"phoenix\")\n",
"edi_path = survey_dir.joinpath(\"EDI_Files_aurora\")\n",
"band_file = r\"c:\\\\Users\\\\jpeacock\\\\OneDrive - DOI\\\\MTData\\\\bandset.cfg\"\n",
"# band_file = r\"c:\\\\Users\\\\jpeacock\\\\OneDrive - DOI\\\\MTData\\\\bandset.cfg\"\n",
"band_file = Path().cwd().parent.joinpath(\"aurora\", \"bs_256_29.cfg\")\n",
"\n",
"edi_path.mkdir(exist_ok=True)\n",
"\n",
Expand Down Expand Up @@ -62,8 +64,10 @@
"source": [
"ap = AuroraProcessing(merge_dictionary=merge_dict)\n",
"\n",
"ap.local_mth5_path = Path(r\"c:\\Users\\jpeacock\\OneDrive - DOI\\mt\\mt_short_course\\data\\phx\\9043\\phx_9043.h5\")\n",
"ap.remote_mth5_path = Path(r\"c:\\Users\\jpeacock\\OneDrive - DOI\\mt\\mt_short_course\\data\\phx\\remote\\remote_02.h5\")\n",
"# ap.local_mth5_path = Path(r\"c:\\Users\\jpeacock\\OneDrive - DOI\\mt\\mt_short_course\\data\\phx\\9043\\phx_9043.h5\")\n",
"# ap.remote_mth5_path = Path(r\"c:\\Users\\jpeacock\\OneDrive - DOI\\mt\\mt_short_course\\data\\phx\\remote\\remote_02.h5\")\n",
"ap.local_mth5_path = survey_dir.joinpath(\"from_phoenix_9043.h5\")\n",
"ap.remote_mth5_path = survey_dir.joinpath(\"from_phoenix_remote.h5\")\n",
"\n",
"ap.local_station_id = \"9043\"\n",
"ap.remote_station_id = \"1003\"\n",
Expand Down Expand Up @@ -1407,7 +1411,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "py39",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -1421,9 +1425,9 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.18"
"version": "3.10.15"
}
},
"nbformat": 4,
"nbformat_minor": 2
"nbformat_minor": 4
}

0 comments on commit e290409

Please sign in to comment.