-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
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
Further LOFAR development #656
base: develop
Are you sure you want to change the base?
Conversation
Included various sky models, moved sky noise generation out of run and into begin procedure
Including LBA inner and removed reference channels
So far, only LBA_inner and LBA_outer were implemented as antenna sets. This can be extended further in the future.
…them-all remove per-station RadioShowers and use one RadioShower per event instead
It looks like this has gotten out of sync with the general branch. I suggest to really not keep PRs open for so long -- the further it gets the more annoying it is to merge later. |
add function to calculate average plane wave direction for an event
# Conflicts: # NuRadioReco/utilities/trace_utilities.py
All of the conflicts should be artificial, in the sense that it probably results from this branch behind on The idea was to have this PR be a draft until we had a pipeline. Seeing we recently got to a state where we can run our pipeline, I guess we can convert it to a real PR and merge :) |
@cg-laser @anelles @sjoerd-bouma To help you with the review process, the only non-LOFAR files that were touched are:
|
I decided to make a new section called version 3.1.0-dev in the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is not super trivial to review such a huge PR. A couple of (I hope) smaller points to be fixed.
|
||
out = beamformer(fft_traces, freq, delays) | ||
timeseries = fft.freq2time(out, 200 * units.MHz) # TODO: is this really necessary? | ||
my_direction_cartesian = hp.spherical_to_cartesian(theta, phi) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure, I like variables with my_ ... this sounds like a hack (without having tested this).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure what you mean? This variable should be local to the negative_beamed_signal()
function, and my standard way of not interfering with variables from the outer scope is to append "my_" in front.
NuRadioReco/utilities/data/galactic_calibration/LOFAR_LBA_galactic_30_80.txt
Outdated
Show resolved
Hide resolved
Thanks for all the comments Anna! The intent was indeed not for you to go over all the individual LOFAR modules, as these should have been reviewed internally already. The most important thing is that we don't break existing NRR functionality. But I very much appreciate the comments you left :) |
As an aside, my goal was to also document the LOFAR modules and files more clearly in the LOFAR documentation, that @sjoerd-bouma started in #767 |
This is a draft PR to follow up on the newest additions from the LOFAR side. These should mainly concern LOFAR specific modules, except for some framework changes that might happen do accommodate LOFAR specific requirements.