We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related to #2, here's a NLDN reader:
def read_nldn(format='stroke_ICCG'): """ Draft function for reading NLDN data with Pandas""" import pandas as pd if format='stroke_ICCG': col_names = ['datepart', 'timepart', 'lat', 'lon', 'peak_current', 'ICCG'] nldn = pd.read_csv('../NLDN_stroke_and_cloud_dN4KG.txt', sep='\s+', header=None, parse_dates={'time':[0,1]}, names=col_names) return nldn
The text was updated successfully, but these errors were encountered:
And here's one for the combined/merged NLDN+GLD360 data available to select members of the GLM validation team.
import pandas as pd nldn_file = '/archive/GLM/gld360/gld360enldnns_20181113_13Z.raw' nldn = pd.read_csv(nldn_file, sep='\s+', header=None, parse_dates={'time':[0,1]}, names=['datepart', 'timepart', 'lat', 'lon', 'peak_current', 'current_unit', 'multiplicity', 'majorax', 'minorax', 'axratio', 'angle', 'chi2', 'number', 'ICCG'])
Sorry, something went wrong.
No branches or pull requests
Related to #2, here's a NLDN reader:
The text was updated successfully, but these errors were encountered: