Hello, I am trying to calibrate a camera we set up to study the aurora!
We just need one good calibrated image, then we can use that to calculate the lat/lon of each pixel of the camera, to map the images onto the Earth
At best the center and a couple corners of the image will calibrate, but never the entire image. Perhaps the camera's field of view warps at the edges?
I looked through the parameters, but didn't see anything helpful for this
Here are the
input images, the
output images, and the command I ran:
```
for FILES in static_images_for_fov_calibration_2/*rescale.tif
do echo $FILES
/usr/local/astrometry/bin/solve-field --overwrite --scale-low 45 --scale-high 160 --downsample 2 ${FILES}
done
```
Perhaps we could calibrate each quadrant of the image separately, then splice the results together?
Any insights or suggestions are appreciated, thanks!