Marcus Hughes
Marcus Hughes
I'd be interested in seeing this resolved and would be willing to help write the source as it would make one of my current projects easier. **Who would be good...
I believe `extract` is a vestigial function that lingers after the more helpful `find_stars_and_average` was developed. Originally, I was extracting patches based on a stellar catalog instead of SEP. It...
I've waffled back and forth between whether to use a `namedTuple` with the `CoordinateIdentifier` versus just a regular `tuple` without named fields. Did you have a preference or an alternative...
In addition, they make `ruff` fail in our internal CI linting step.
Can't accept until we require Python 3.10
Can't accept until we require Python 3.10
I recently encountered this same bug with `reproject_adaptive`. Here's a minimal example: ```python from reproject import reproject_adaptive from astropy import wcs import numpy as np example_wcs = wcs.WCS(naxis=2) constant_distortion =...
~At the moment, we are just reading the definitions from a CSV file and were going to distribute that, but it might be nice to have them presented nicely in...
I think the `PacketFactory` strategy will work. A couple quick thoughts: - I prefer the first solution over the second. The first allows you to define a completely different packet...