Timothy Duly

Results 9 comments of Timothy Duly

@sigvaldm Any guides on how to do this?

Is there any documentation describing the ASCII files at GFZ Potsdam?

We can look into revamping the geophysical indice data structures in lieu of using arrays: https://github.com/timduly4/pyglow/blob/master/src/pyglow/generate_kpap.py#L25

I like the idea of using pandas, too-- it would be trivial to add at: https://github.com/timduly4/pyglow/blob/master/requirements.txt I created a ticket for revisiting parsing, storing, and accessing geophysical indices and can...

It is almost trivial to put this back in (e.g.): ``` class Profile: def __init__(self, dn, lat, lon, start_height, end_height, spacing=1): altitudes = range(start_height, end_height, spacing) self.points = [Point(dn, lat,...

We'll keep this as an outstanding issue, then. For better or worse, I'm behind on several pyglow issues at the moment-- these are the perils of an open-source project...

This is related to the Kp indices missing, which in turn is related to the Kp indices not updating (https://github.com/timduly4/pyglow/issues/105). See also https://github.com/timduly4/pyglow/issues/60#issuecomment-442991167 for more info

Good point-- are you aware of any documentation generation software? One possibility is [doxygen](https://en.wikipedia.org/wiki/Doxygen), but there are others.

> Disabling Go modules also makes sense because Bazel doesn't use it anyway. I'm settling with that. I had this option disabled but am still running into this issue --...