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?
853 Views Asked by D_K At
1
There are 1 best solutions below
Related Questions in COORDINATES
- Finding if lat/long point is inside a polygon defined by coordinates
- Scatter 2D coordinates from distance matrix
- Get SVG-Object_s at given coordinates?
- Hiding markers in googlemaps v3 in an object
- How to remove individual markers in Google maps api3
- extracting coordinates from polygon r
- Overlapping Rectangles Javascript
- Programmatically move MKMapView - iOS
- Discontinuity in RaycastHit.textureCoord values (getting coordinates on texture right)
- Split "map" into gps coordinate grid by certain kilometer number
- Coordinates of a JTextPane to make a Screenshot in Java
- Map 2d rectangular image to 4 coordinate points in Java
- get geographical coordinates from address
- How to find places near by given lat/lng location
- Google Map With Multiple Markers
Related Questions in PYEPHEM
- Pyephem: 'Titan' object has no attribute 'mag'
- Pyephem iss example observer.compute() error or datatype error?
- Precession, Proper Motion, and Epochs for Ancient or Future Observers
- Installing pyephem or astropy on Pyzo
- Pyephem - Time difference between datetime.datetime and ephem.Date
- Longitude of lunar nodes using Skyfield
- Angle between two pairs of azimuth and altitude?
- Wrong Range Rate with Pyephem
- Trying to install ephem-3.7.5.1 on Mac OS X 10.8.4
- Cannot import ephem
- Convert topocentric coordinates (Azimuth, Elevation) to equatorial coordinates (RA, Dec) with PyEphem
- Batch conversion of elevation/azimuth to equatorial coordinates
- How do I specify the Royal Observatory at Greenwich as a PyEphem observer?
- Pyephem: how to calculate time of entering into next constellation
- Pyephem: time of a planet will be closest to the horizon
Related Questions in SUN
- really weird ghosty shadows using three.js
- official web-site to download ldapjdk.jar and netscape.jar
- What has sun.plugin.javascript become in JDK 7?
- How to add new rendering hint in RenderingHints.java
- java CORBA Server limiting the number of connection
- The following artifacts could not be resolved: javax.jms:jms:jar:1.1
- com.sun.awt package usage
- Has Sun's Unified Logging Format ever been published anywhere?
- Java plugin JVM parameters
- It is possible to simulate inside of a sun netra T5220?
- Trouble Deploying App From Tomcat to Sun Java Web Server 7...and I'm a .NET guy :(
- Getting error with sun.net.ftp.FtpClient by using JDK 1.7
- Sun Java HttpServer - Either slow in serving requests or wasting resources (TIME_WAIT/CLOSE_WAIT)
- Import sun class in Java-Eclipse
- How to delete/renew expired certificates from Root certificate module in Sun Java System Web Server 6.1
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)
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?
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