I want to find the python library in which I may obtain the SUN coordinates in ECEF (Eart-Centered, Earth-Fixed) frame - geocenter coordinates. I try using jplephem, pyephem etc. but none of them availalbe to give these coordinates. Please give me library, algorithm or etc. in which I may obtained these coordinates. With greetings.
How to calculate SUN coordinates in ECEF (geocenter) frame?
854 views Asked by D_K At
1
There are 1 answers
Related Questions in COORDINATES
- MAUI ItemsControl+DataTemplates (like WPF)?
- BGS Groundhog software coordinate system input
- Could you please provide instructions or Code on exporting point coordinates from a CATIA product to Excel using VB?
- How to create a hexagonal grid system with each grid mapped in an array and plot it?
- Calculating borders of a rectangle
- Splitting a CSV file of coordinates into longitude and latitude ArrayLists
- GeoJSON MultiPolygon Inversion Works for All Federal Districts of Russia Except Siberia in D3.js Map
- valhalla map matching with a kafka source
- Orienting a camera that orbits spheres in JOGL2
- Made a plot in R containing two separate datasets with coordinates, but need to find the overlapping ones
- Pyhton get lat and lon data of a cartopy orthographic projection by a MouseClick event
- i need to turn an integer of coordinates in a list that need to be in a certain order into a iterable so the turtle can goto those coordinates
- QGIS export coords on mouse click in file
- Bresenham distance for shifted rows
- How to accurately translate image coordinates from Python/OpenCV to Android ImageView?
Related Questions in PYEPHEM
- Using pyEphem to calculate moon phase for a certain location: cannot get it to work correctly
- Finding the time of the Sun's elevation (Ephem, Astral, PvLib?)
- Can I calculate sun, moon and planet's azimuth and elevation using Pyephem?
- How do I access ephem.body fields using python and pyephem and getattr() method?
- Is there a way to extend PyEphem's satellite creation beyond 364 days?
- Pycharm is not finding the functions in well known and working packages
- Why is the sunrise and sunset time returned by pyephem incorrect for a given location?
- Difference between stellarium and pyephem entering the sun a constellation
- while loop slows down over time
- pyephem : mismatch position of planets with other sources
- Discrepancy between PyEphem and Skyfield HA/dec results
- PyEphem: Can't get correct answers (noob)
- What's the fastest way of calculating if satellite is in camera FOV
- When the Moon is higher in Naples Sky
- pyephem and sundial time
Related Questions in SUN
- package sun.awt.shell is not visible in java 17
- Cannot Import sun.net.*
- How to solve java import com.sun.nio.zipfs.ZipFileSystem?
- Which Proguard version do I need for the Sun Java Wireless Toolkit 2.5
- How to calculate SUN coordinates in ECEF (geocenter) frame?
- How to update and avoid "sun.net.www.protocol.https.Handler is internal proprietary API and may be removed in a future release"
- Bug in Java when printing factorial recursive method? Output printed before 'printing command'
- Installing Anaconda or Python on Sun Solaris 11.4 with Sparc architecture
- Java built-in Adjacency List
- Random Walk in a 3D spherical coordinates system-Python
- com sun tools jar not found even if it exists in openjdk 11 lib folder
- Where does the tmpname function write temporary files in a Sun Solaris environment?
- is there a replacement for Sun's package in android studio
- Java WTK cannot use StringTokenizer
- unsafe.compareAndSwapObject replacing an array that is being iterated in another thread
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
You are correct that neither of those libraries has quick support for an ECEF reference frame, though it can be faked in PyEphem by creating an
Observerat latitude 0° and longitude 0° and whose elevation is negative enough to put them at the center of the Earth.If you are interested in a more modern library, the new 1.34 version of Skyfield directly supports the standard ITRS reference frame, which is ECEF:
The result:
The operations you can perform with reference frames are explained in more detail here:
https://rhodesmill.org/skyfield/positions.html#coordinates-in-other-reference-frames