Created
May 19, 2021 18:25
-
-
Save afcotroneo/72e170bba275292bbdec567a9f00f0d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
outputdf = pd.DataFrame() | |
outputdf['satid'] = satname['satid'] | |
outputdf['satname'] = satname['satname'] | |
outputdf['satlat'] = satpos['satlatitude'] | |
outputdf['satlon'] = satpos['satlongitude'] | |
outputdf['azimuth'] = satpos['azimuth'] | |
outputdf['elevation'] = satpos['elevation'] | |
outputdf['ra'] = satpos['ra'] | |
outputdf['decval'] = satpos['dec'] | |
outputdf['postimestamp'] = satpos['timestamp'] | |
outputdf.dtypes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment