About 2,920,000 results
Open links in new tab
  1. Using astropy to generate solar eclipse conditions based on my location

    Jan 28, 2023 · This is a question for the astronomy-minded folks on here. I am an amateur astrophotographer looking to develop a personal script to aid my photography of next year's total …

  2. python - Cannot import name 'update_default_config' from 'astropy ...

    Feb 10, 2024 · Cannot import name 'update_default_config' from 'astropy.config.configuration' Asked 1 year, 11 months ago Modified 1 year, 10 months ago Viewed 3k times

  3. 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 pixel …

  4. 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) print(c.transform_to(ICRS(equinox='J2016'))) I …

  5. 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 elements () and …

  6. python - How do I use Astropy to transform coordinates from J2000 to ...

    Mar 3, 2024 · How do I use Astropy to transform coordinates from J2000 to Lat, Lon, and Altitude Asked 1 year, 10 months ago Modified 1 year, 10 months ago Viewed 834 times

  7. astropy - Opening fits files with no SIMPLE keyword in python - Stack ...

    Sep 27, 2021 · 1 Which version of astropy are you using? The problem occurs on 4.3, but it works just fine in 4.2. This GitHub issue reports the problem in the astropy repository. I propose you downgrade …

  8. 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

  9. 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, while …

  10. 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 have …