Skip to content

Instantly share code, notes, and snippets.

@afcotroneo
Created May 19, 2021 18:25
Show Gist options
  • Save afcotroneo/72e170bba275292bbdec567a9f00f0d0 to your computer and use it in GitHub Desktop.
Save afcotroneo/72e170bba275292bbdec567a9f00f0d0 to your computer and use it in GitHub Desktop.
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