
python - Plotting space regions and points - Stack Overflow
Sep 4, 2023 · I'm trying to plot regions using astropy, but at the same time plot points as scatter plot. But I'm not managing to understand what is happening with the coordinates or the …
How do I align SDSS sky images in Python using Astropy?
May 30, 2023 · I have a problem with aligning SDSS sky images. I have downloaded numerous image bands from SDDS. The problem is I don't know how to align them. They are stored in …
python - Astropy: using SkyCoord object to calculate the AltAz ...
Apr 13, 2024 · Astropy: using SkyCoord object to calculate the AltAz coordinates for an object in a time range, want to get the date of max altitude Asked 1 year, 8 months ago Modified 1 year, 6 …
python - Cannot import name 'update_default_config' from …
Feb 10, 2024 · Cannot import name 'update_default_config' from 'astropy.config.configuration' Asked 1 year, 10 months ago Modified 1 year, 10 months ago Viewed 3k times
Construct pandas dataframe from a .fits file - Stack Overflow
Oct 18, 2016 · from astropy.io import fits import pandas with fits.open('datafile') as data: df = pandas.DataFrame(data[0].data) Edit: I don't have much experience we astropy, but other …
How to match extracted spots from star image to star catalog
That particular method is finding the minimum distance from the extracted source (which already has RADEC coordinates) to a star from the catalog. I don't have RA DEC of my sources, only …
python - AstroPy to transform coordinates - Stack Overflow
Feb 21, 2024 · from astropy.coordinates import SkyCoord, ICRS ar = 243.90472242 dr = -8.36823651 c = SkyCoord(ar, dr, frame='icrs', unit='deg') print(c) …
Querying data from Simbad using astroquery - Stack Overflow
python astropy astroquery simbad edited Nov 9, 2024 at 11:03 marc_s 760k 186 1.4k 1.5k
Plotting star maps with equatorial coordinates system
Jul 22, 2024 · I'm trying to generate star maps with the equatorial coordinates system (RAJ2000 and DEJ2000). However, I only get a grid system where meridians and parallels are in parallel, …
astropy - How can I get solar system body mass/radius in Python ...
Nov 18, 2023 · 1 Can I use Astroquery/Astropy to get the radius and mass of solar system objects? Or another common library? I've been trying to use astroquery.horizons I've tried …