python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
In astropy.coordinates.SkyCoord, how can I use it with data which compose cartesian "2D" coordinates
I am using the astropy.coordinates.SkyCoord.
the SkyCoord is only allowed 'deg' data, but my data's unit is just 'pix'
So I cannot use 'SkyCoord'.
I try to change the unit of my data from pix to deg, ...
BAO
Votes: 0
Answers: 0
store values and continue running function
I am using astropy to detect sources in an image. I am trying to write a function that will detect my sources, with an option of storing their coordinates in an array, and another option to plot the s...
niallygee
Votes: 0
Answers: 1
ERROR: failed building wheel when installing spectral-cube (astropy)
I'm trying to install the package spectral-cube from the astropy project using pip (22.0.4). I get a long error which ends with this:
note: This error originates from a subprocess, and is likely not ...
Alex P
Votes: 0
Answers: 1
How to vstack multiple astropy tables using a loop
I have a list of astropy tables and I want to vstack them all using a loop.
This is what I have:
tables = []
for i in range(len(sortedfiles)):
tables.append(openfits(sortedfiles[i]))
which creates a l...
ETsiak
Votes: 0
Answers: 1