File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -248,6 +248,15 @@ def nldn(filenames):
248248 'num_stations' - the number of stations contributing to the event
249249 'type' - 'IC' or 'CG' for intracloud or cloud-to-ground
250250 'datetime' - the time of the event
251+
252+
253+ Notes
254+ -----
255+ This function is designed to read NLDN files in the format that matches the format of the file located
256+ in examples/network_samples/gld360enldnns_20231224_daily_v1_lit.raw (This is not real NLDN data, but provides a correct sample of the format)
257+
258+ Other file formats may exist and may not be read in correctly. If you have a file that is not read in correctly,
259+ please open an issue on the pyxlma GitHub page.
251260 """
252261 if type (filenames ) is str :
253262 filenames = [filenames ]
@@ -296,6 +305,14 @@ def entln(filenames):
296305 'ellipseangle' - the angle of the 50% confidence ellipse
297306 'semimajor' - the semimajor axis length in km of the 50% confidence ellipse
298307 'semiminor' - the semiminor axis length in km of the 50% confidence ellipse
308+
309+ Notes
310+ -----
311+ This function is designed to read ENTLN files in the format that matches the format of the file located
312+ in examples/network_samples/lxarchive_pulse20231224.csv (This is not real ENTLN data, but provides a correct sample of the format)
313+
314+ Other file formats may exist and may not be read in correctly. If you have a file that is not read in correctly,
315+ please open an issue on the pyxlma GitHub page.
299316 """
300317 if type (filenames ) is str :
301318 filenames = [filenames ]
You can’t perform that action at this time.
0 commit comments