Michael Wood-Vasey
Michael Wood-Vasey
@bechtol This is the easy way. A full RA, Dec interface would take a little more work.
Thanks, @johannct . It looks perfect and simple as it is. My suspicious is that anything more sophisticated should come from DM Science Pipelines Gen 3 Butler. Even if that...
Possibilities: 1. Use the VistInfo object. PRO: This is what we want. CON: I think this requires reading all of the VistInfo objects for all files and recording in a...
The VisitInfo remains the thing to do. But it's possible that 2+3 (registry+OpSim run) covers most use cases and will be very quick to set up.
It's also possible that the Image Simulation group already has this product trivially available.
I'm working on one.
Hmmm, I think the code within `astrophot` is fine. But tracing down ABI compatibility is going to be the frustration for the user. E.g., right now I'm failing to get...
pytorch says it's compatible with numpy 2.0. The problem is that numpy 2.0 is an ABI-breaking changing, so modules can be compiled for numpy=2, but not both at the same...
I actually think the pytorch issue is MacOS specific. Updated pytorch 2.3 wheels aren't built yet, and pytorch 2.3 is the first to be numpy 2.0 compatible. So I think...
`astrophot` will already fail on import when it in turns imports `pytorch`: ``` >>> import astrophot A module that was compiled using NumPy 1.x cannot be run in NumPy 2.0.0...