From 75ed690a2d35e51988ab3c05d7f642e7363a4a12 Mon Sep 17 00:00:00 2001 From: Frits Sweijen Date: Tue, 16 Jun 2026 10:27:38 +0100 Subject: [PATCH 1/5] Version bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ff6067a..ad7fe11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ authors = [ {name = "Frits Sweijen"}, {name = "Leah Morabito"} ] -version = "2026.01.2" +version = "2026.05.12" description = "Repository containing the cli tool for LOFAR-VLBI plot_field" readme = "README.md" requires-python = ">=3.11" From 93e09f5ade993fb30e9079e4f374850659da0024 Mon Sep 17 00:00:00 2001 From: Frits Sweijen Date: Tue, 11 Aug 2026 15:40:45 +0100 Subject: [PATCH 2/5] Make LoTSS and extreme catalogues consistent --- src/plot_field/plot_field.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plot_field/plot_field.py b/src/plot_field/plot_field.py index b1073d3..bb1416e 100644 --- a/src/plot_field/plot_field.py +++ b/src/plot_field/plot_field.py @@ -1239,7 +1239,7 @@ def generate_catalogues( DECTar, Radius=5.0, bright_limit_Jy=1000.0, - faint_limit_Jy=10.0, + faint_limit_Jy=bright_limit_Jy, outfile=os.path.join(outdir, "extreme_catalogue.csv"), use_vo=True ) From 698d544198f5416bd97ee34a3e3cfa81418a37c6 Mon Sep 17 00:00:00 2001 From: Frits Sweijen Date: Tue, 11 Aug 2026 15:43:04 +0100 Subject: [PATCH 3/5] Fix version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ad7fe11..ff6067a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ authors = [ {name = "Frits Sweijen"}, {name = "Leah Morabito"} ] -version = "2026.05.12" +version = "2026.01.2" description = "Repository containing the cli tool for LOFAR-VLBI plot_field" readme = "README.md" requires-python = ">=3.11" From aa7ff5a1cb88547350ceb3c5de666503406e5651 Mon Sep 17 00:00:00 2001 From: Frits Sweijen Date: Tue, 11 Aug 2026 15:49:06 +0100 Subject: [PATCH 4/5] Increase lotss limit --- src/plot_field/plot_field.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plot_field/plot_field.py b/src/plot_field/plot_field.py index bb1416e..a958ab7 100644 --- a/src/plot_field/plot_field.py +++ b/src/plot_field/plot_field.py @@ -1227,7 +1227,7 @@ def generate_catalogues( RATar, DECTar, Radius=lotss_radius, - bright_limit_Jy=bright_limit_Jy, + bright_limit_Jy=10000, faint_limit_Jy=0.0, outfile=lotss_catalogue, use_vo=True, From c506eba0da6b187922c7a266d4b384eee24ca178 Mon Sep 17 00:00:00 2001 From: Frits Sweijen Date: Tue, 11 Aug 2026 16:04:38 +0100 Subject: [PATCH 5/5] Update upper limits --- src/plot_field/plot_field.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plot_field/plot_field.py b/src/plot_field/plot_field.py index a958ab7..934b480 100644 --- a/src/plot_field/plot_field.py +++ b/src/plot_field/plot_field.py @@ -1227,7 +1227,7 @@ def generate_catalogues( RATar, DECTar, Radius=lotss_radius, - bright_limit_Jy=10000, + bright_limit_Jy=100000.0, faint_limit_Jy=0.0, outfile=lotss_catalogue, use_vo=True, @@ -1238,7 +1238,7 @@ def generate_catalogues( RATar, DECTar, Radius=5.0, - bright_limit_Jy=1000.0, + bright_limit_Jy=100000.0, faint_limit_Jy=bright_limit_Jy, outfile=os.path.join(outdir, "extreme_catalogue.csv"), use_vo=True