About 422,000 results
Open links in new tab
  1. Import python packages astropy occur issues, how can i handle it?

    Aug 28, 2024 · Name: astropy Version: 6.1.2 Name: fil-finder Version: 1.7.2 python version is:3.10 I want to handle the script bug and make the crack branches are displayed in different colors; looks like …

  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, 9 months ago Modified 1 year, 9 months ago Viewed 3k times

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

  4. How to convert Earth Centered Inertial (ECI) coordinates to Earth ...

    Sep 27, 2017 · There are a number of different Earth Centered Inertial frames, and the answer depends on which one you have your coordinates in. The most common is so-called J2000; which is defined …

  5. 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 …

  6. 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 matplotlib artists. Firs...

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

  8. How to save a QTable to a file (.txt, .csv, etc.) - Stack Overflow

    Apr 18, 2021 · 1 Astropy already has numerous built-in formats for saving Tables with Table.write. For QTable in particular, if you want a round-trippable text-based format the ECSV format is highly …

  9. How can I make my 2D Gaussian fit to my image - Stack Overflow

    May 28, 2018 · I am trying to fit a 2D Gaussian to an image to find the location of the brightest point in it. My code looks like this: import numpy as np import astropy.io.fits as fits import os from astropy.s...

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