Python Source Extractor
Project description
Python Source Extractor
This is the Python Source Extractor (PySE) for extraction and measurement of sources in radio astronomical images, or, more generally, images from aperture synthesis. This means that PySE has been tested thoroughly on images with correlated noise. PySE was primarily designed for the LOFAR Transients Key Project (TKP), i.e. targeting the detection of transient sources, which will be mostly unresolved.
Recent development - 2020 - 2023 - has been funded by grant 27019G06 from the Netherlands eScience Center for PADRE.
Current development is internally funded by The Netherlands eScience Center through the Software Sustainability Project “PySE”.
The code in this repo was formerly part of the LOFAR Transients Pipeline (TraP) repo. Compatibility with TraP is maintained, i.e. the output of PySE is suitable for futher processing in TraP. Also, PySE is still included and regularly updated in Trap. A reason for starting this repo is to offer PySE as a standalone application.
Documentation
Currently only offered as part of the TraP documentation.
Installation
PySE has an entry on PyPI:
$ pip install radio-pyse
PySE is compatible with Python 3.10 or up.
License
PySE was released under the BSD-2 license. This is still the case for the master branch.
However, some of the fast branches of PySE make use of SEP. Please have a look at the SEP license info. This means that the license for PySE as a whole, for some of the fast branches, is LGPLv3. Only sourcefinder/image.py makes use of SEP, so the other Python modules have a BSD-2 license.
We will be including C source code for least squares fitting into one or more of the fast branches. This fitting code was written decades ago as part of the Groningen Image Processing System (GIPSY). GIPSY has an ASCL record and a LGPL2+ license.
Developer information
PySE uses hatch to manage the different environments during development. So make sure you have hatch installed globally. You could either use your system’s package manager to install hatch, or use pipx to install as a regular user. Please ensure that you are using a version hatch>=1.10, otherwise you might encounter this bug.
In general, to run command in a specific environment managed by hatch, you can do this:
$ hatch run <environment>:<command> [--options]
You can see a summary of all the evironments managed by hatch like this:
$ hatch env show
Standalone
┏━━━━━━━━━┳━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Name ┃ Type ┃ Dependencies ┃
┡━━━━━━━━━╇━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ default │ virtual │ │
├─────────┼─────────┼──────────────┤
│ test │ virtual │ pytest │
│ │ │ pytest-cov │
├─────────┼─────────┼──────────────┤
│ lint │ virtual │ black │
│ │ │ flake8 │
│ │ │ mypy │
│ │ │ ruff │
└─────────┴─────────┴──────────────┘
Some common tasks using hatch are summarised below.
Package builds
hatch does package builds in an isolated environment. The package build setup also uses a dynamic hook (also known as build hooks) to generate the package version from Git repository release tags. So to do a local package build, you need to ensure all Git tags are present.
Fetch all Git release tags locally.
$ git fetch --tags
You can now build a distribution (a wheel file and a source tarball) locally using:
$ hatch build
This creates the distribution files in the dist/ directory in the project root.
$ tree dist/ dist/ ├── radio_pyse-0.3.2.dev9+gfb04dc7.d20240729-py3-none-any.whl └── radio_pyse-0.3.2.dev9+gfb04dc7.d20240729.tar.gz
If you want to trigger only the build hooks (like generating the package version), you can do:
$ hatch build --hooks-only
This is necessary to refresh the version information if you update any of the build configuration in pyproject.toml, or if you are implementing something that depends on the version, e.g. making a new capability available only for a newer version.
Running the test suite
$ hatch run test:pytest [tests/test_iwanttorun.py] [-k match_string] [--options]
$ hatch run test:pytest --no-cov # to disable coverage
Running formatters and static analysis tools
You can run supported linters/formatters (see the environment definition for lint) like this.
$ hatch run lint:mypy [--options]
$ hatch run lint:flake8 [--options]
$ hatch run lint:ruff check sourcefinder
$ hatch run lint:black --check sourcefinder
Note that on first run, mypy might need to install type-stubs. You can do that with:
$ hatch run lint:mypy --install-type --non-interactive
Running scripts that use PySE
Normally a regular user would install a released version from PyPI, but to use a development version you may run such scripts like this:
$ hatch run scripts/pyse [--options]
Since the development environment is the default, you don’t need to specify the <envrironment>: prefix in the run command.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file radio_pyse-0.3.2.tar.gz
.
File metadata
- Download URL: radio_pyse-0.3.2.tar.gz
- Upload date:
- Size: 77.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 115988960668a37259a3494875ca21c35ed3405b552a8838ab99e0738c03b3be |
|
MD5 | 938c2cd3a7dbd937e59328fb81f98aaa |
|
BLAKE2b-256 | 86f87c0105d70875f0a6f61e0ef962b7046d7da19bf20bfb05ef3c6831e41879 |
File details
Details for the file radio_pyse-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: radio_pyse-0.3.2-py3-none-any.whl
- Upload date:
- Size: 90.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed7998a0f6079582ad2804b4d1857eaa7f866f2021ffc28d54ebcd6569fa5888 |
|
MD5 | 644ba9f66eb5ac9704b52130a49d7ab1 |
|
BLAKE2b-256 | 71555b04db74f3ba80aa44d9ed25137d647cbb8a974b0a803f4556c40031eaff |