lofar-vlbi-plot 2025.12.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lofar_vlbi_plot-2025.12.3/MANIFEST.in +1 -0
- lofar_vlbi_plot-2025.12.3/PKG-INFO +30 -0
- lofar_vlbi_plot-2025.12.3/README.md +11 -0
- lofar_vlbi_plot-2025.12.3/pyproject.toml +44 -0
- lofar_vlbi_plot-2025.12.3/setup.cfg +4 -0
- lofar_vlbi_plot-2025.12.3/src/lofar_vlbi_plot.egg-info/PKG-INFO +30 -0
- lofar_vlbi_plot-2025.12.3/src/lofar_vlbi_plot.egg-info/SOURCES.txt +14 -0
- lofar_vlbi_plot-2025.12.3/src/lofar_vlbi_plot.egg-info/dependency_links.txt +1 -0
- lofar_vlbi_plot-2025.12.3/src/lofar_vlbi_plot.egg-info/entry_points.txt +3 -0
- lofar_vlbi_plot-2025.12.3/src/lofar_vlbi_plot.egg-info/requires.txt +8 -0
- lofar_vlbi_plot-2025.12.3/src/lofar_vlbi_plot.egg-info/top_level.txt +1 -0
- lofar_vlbi_plot-2025.12.3/src/plot_field/VLASS_dyn_summary.php +902 -0
- lofar_vlbi_plot-2025.12.3/src/plot_field/__init__.py +13 -0
- lofar_vlbi_plot-2025.12.3/src/plot_field/fit_synchrotron_spectrum.py +399 -0
- lofar_vlbi_plot-2025.12.3/src/plot_field/plot_field.py +1808 -0
- lofar_vlbi_plot-2025.12.3/src/plot_field/vlass_search.py +288 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
graft src
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lofar-vlbi-plot
|
|
3
|
+
Version: 2025.12.3
|
|
4
|
+
Summary: Repository containing the cli tool for LOFAR-VLBI plot_field
|
|
5
|
+
Author: James Petley, Frits Sweijen, Leah Morabito
|
|
6
|
+
License-Expression: GPL-3.0-or-later
|
|
7
|
+
Project-URL: Repository, https://github.com/LOFAR-VLBI/plot_field
|
|
8
|
+
Keywords: radio,astronomy,VLBI,LOFAR
|
|
9
|
+
Requires-Python: >=3.11
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: astropy>=7.0.0
|
|
12
|
+
Requires-Dist: astroquery>=0.4.11
|
|
13
|
+
Requires-Dist: matplotlib>=3.9.3
|
|
14
|
+
Requires-Dist: numpy>=2.3.5
|
|
15
|
+
Requires-Dist: pyvo>=1.6
|
|
16
|
+
Requires-Dist: requests>=2.32.3
|
|
17
|
+
Requires-Dist: scipy>=1.14.1
|
|
18
|
+
Requires-Dist: setuptools>=80.9.0
|
|
19
|
+
|
|
20
|
+
# LOFAR-VLBI/plot_field
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
This repository now contains only the preparatory script for generating the required catalogues for running PILOT (https://github.com/LOFAR-VLBI/pilot)
|
|
24
|
+
|
|
25
|
+
The script can be installed by:
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "lofar-vlbi-plot"
|
|
3
|
+
authors = [
|
|
4
|
+
{name = "James Petley"},
|
|
5
|
+
{name = "Frits Sweijen"},
|
|
6
|
+
{name = "Leah Morabito"}
|
|
7
|
+
]
|
|
8
|
+
version = "2025.12.3"
|
|
9
|
+
description = "Repository containing the cli tool for LOFAR-VLBI plot_field"
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
dependencies = [
|
|
13
|
+
"astropy>=7.0.0",
|
|
14
|
+
"astroquery>=0.4.11",
|
|
15
|
+
"matplotlib>=3.9.3",
|
|
16
|
+
"numpy>=2.3.5",
|
|
17
|
+
"pyvo>=1.6",
|
|
18
|
+
"requests>=2.32.3",
|
|
19
|
+
"scipy>=1.14.1",
|
|
20
|
+
"setuptools>=80.9.0",
|
|
21
|
+
]
|
|
22
|
+
license = "GPL-3.0-or-later"
|
|
23
|
+
keywords = ["radio", "astronomy", "VLBI", "LOFAR"]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Repository="https://github.com/LOFAR-VLBI/plot_field"
|
|
27
|
+
|
|
28
|
+
[tool.setuptools]
|
|
29
|
+
include-package-data = true
|
|
30
|
+
|
|
31
|
+
[tool.setuptools.packages.find]
|
|
32
|
+
where = ["src"]
|
|
33
|
+
|
|
34
|
+
[build-system]
|
|
35
|
+
requires = ["setuptools"]
|
|
36
|
+
build-backend = "setuptools.build_meta"
|
|
37
|
+
|
|
38
|
+
[project.scripts]
|
|
39
|
+
plot-field = "plot_field.plot_field:main"
|
|
40
|
+
lofar-vlbi-pipeline = "plot_field:main"
|
|
41
|
+
|
|
42
|
+
[tool.uv]
|
|
43
|
+
package = true
|
|
44
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lofar-vlbi-plot
|
|
3
|
+
Version: 2025.12.3
|
|
4
|
+
Summary: Repository containing the cli tool for LOFAR-VLBI plot_field
|
|
5
|
+
Author: James Petley, Frits Sweijen, Leah Morabito
|
|
6
|
+
License-Expression: GPL-3.0-or-later
|
|
7
|
+
Project-URL: Repository, https://github.com/LOFAR-VLBI/plot_field
|
|
8
|
+
Keywords: radio,astronomy,VLBI,LOFAR
|
|
9
|
+
Requires-Python: >=3.11
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: astropy>=7.0.0
|
|
12
|
+
Requires-Dist: astroquery>=0.4.11
|
|
13
|
+
Requires-Dist: matplotlib>=3.9.3
|
|
14
|
+
Requires-Dist: numpy>=2.3.5
|
|
15
|
+
Requires-Dist: pyvo>=1.6
|
|
16
|
+
Requires-Dist: requests>=2.32.3
|
|
17
|
+
Requires-Dist: scipy>=1.14.1
|
|
18
|
+
Requires-Dist: setuptools>=80.9.0
|
|
19
|
+
|
|
20
|
+
# LOFAR-VLBI/plot_field
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
This repository now contains only the preparatory script for generating the required catalogues for running PILOT (https://github.com/LOFAR-VLBI/pilot)
|
|
24
|
+
|
|
25
|
+
The script can be installed by:
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
MANIFEST.in
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/lofar_vlbi_plot.egg-info/PKG-INFO
|
|
5
|
+
src/lofar_vlbi_plot.egg-info/SOURCES.txt
|
|
6
|
+
src/lofar_vlbi_plot.egg-info/dependency_links.txt
|
|
7
|
+
src/lofar_vlbi_plot.egg-info/entry_points.txt
|
|
8
|
+
src/lofar_vlbi_plot.egg-info/requires.txt
|
|
9
|
+
src/lofar_vlbi_plot.egg-info/top_level.txt
|
|
10
|
+
src/plot_field/VLASS_dyn_summary.php
|
|
11
|
+
src/plot_field/__init__.py
|
|
12
|
+
src/plot_field/fit_synchrotron_spectrum.py
|
|
13
|
+
src/plot_field/plot_field.py
|
|
14
|
+
src/plot_field/vlass_search.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
plot_field
|