Skip to content
Snippets Groups Projects
Commit ad254c3c authored by Jan David Mol's avatar Jan David Mol
Browse files

Use git repo instead of deprecated subversion repo for LOFAR1 calibration tables

parent 6d35649d
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ class LOFAR1CalTables(dict):
def download_all(self):
for filename in self.files:
with open(f"{self.tmpdir}/{filename}", "wb") as f:
url = f"https://svn.astron.nl/Station/trunk/CalTables/{self.station.upper()}/{filename}"
url = f"https://git.astron.nl/ro/lofar1-caltables/-/raw/main/{self.station.upper()}/{filename}"
data = urllib.request.urlopen(url).read()
f.write(data)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment