Skip to content

Commit eb22edf

Browse files
committed
change my_sites.txt and me.txt file locations
1 parent 36ae867 commit eb22edf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

methods/secular/Secular_Requirement_Validation.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,19 +158,19 @@
158158
"version = '1'\n",
159159
"\n",
160160
"# Provide the file where you keep your customized list of sites.\n",
161-
"custom_sites = '/home/jovyan/solid_earth_atbd_dev/ATBD_main/my_sites.txt'\n",
161+
"custom_sites = '/home/jovyan/my_sites.txt'\n",
162162
"\n",
163163
"# Enter a username for storing your outputs\n",
164-
"if os.path.exists('/home/jovyan/solid_earth_atbd_dev/ATBD_main/me.txt'):\n",
165-
" with open('/home/jovyan/solid_earth_atbd_dev/ATBD_main/me.txt') as m:\n",
164+
"if os.path.exists('/home/jovyan/me.txt'):\n",
165+
" with open('/home/jovyan/me.txt') as m:\n",
166166
" you = m.readline().strip()\n",
167167
"else:\n",
168168
" you = input('Please type a username for your calval outputs:')\n",
169169
" with open ('/home/jovyan/me.txt', 'w') as m: \n",
170170
" m.write(you)\n",
171171
"\n",
172172
"# Load metadata for calval locations\n",
173-
"with open('/home/jovyan/solid_earth_atbd_dev/ATBD_main/my_sites.txt','r') as fid:\n",
173+
"with open('/home/jovyan/my_sites.txt','r') as fid:\n",
174174
" sitedata = json.load(fid)\n",
175175
"\n",
176176
"# Plot parameters\n",

0 commit comments

Comments
 (0)