Skip to content

Commit 1ec7791

Browse files
committed
grab php file on lofar-vlbi repo
1 parent 88272a7 commit 1ec7791

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/vlass_search.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def get_tiles():
5656

5757
summary_file_location = "VLASS_dyn_summary.php"
5858
if not os.path.exists(summary_file_location):
59-
os.system('wget https://archive-new.nrao.edu/vlass/VLASS_dyn_summary.php')
59+
os.system('wget https://raw.githubusercontent.com/lmorabit/lofar-vlbi/master/VLASS_dyn_summary.php')
6060

6161
names, dec_min, dec_max, ra_min, ra_max, epoch, obsdate = np.loadtxt(summary_file_location, skiprows=3, unpack=True, dtype='str', usecols=(0,1,2,3,4,5,6))
6262

@@ -241,7 +241,7 @@ def search_vlass(c, crop=False, crop_scale=256, consider_QA_rejected=False):
241241
c = SkyCoord(ra, dec, unit='deg')
242242

243243
if not glob.glob(summary_file_location):
244-
os.system('wget https://archive-new.nrao.edu/vlass/VLASS_dyn_summary.php')
244+
os.system('wget https://raw.githubusercontent.com/lmorabit/lofar-vlbi/master/VLASS_dyn_summary.php')
245245
#raise FileNotFoundError(errno.ENOENT, os.strerror(errno.ENOENT), summary_file_location)
246246

247247
search_vlass(c, crop=crop, crop_scale=crop_scale, consider_QA_rejected=consider_QA_rejected)

0 commit comments

Comments
 (0)