-
Notifications
You must be signed in to change notification settings - Fork 33
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
parallax correction and high resolution winds #32
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a new file for reading NWCSAF data is submitted it can read CTTH, CMa, CT, CCR, CRPh, PC, SPhR added a small option to scene.py in order to specify which level specifies the desired format of the input file
geo-hdf is a possible data format that you can order from the EUMETSAT data archive It enables to specify smaller regions.
TRT is an MeteoSwiss tool to detect thunderstorm cells. The data can be processed with this file.
Updated initialization of the _Calibrator function in mpop/satin/msg_seviri_hdf.py msg_seviri_hdf.py uses the _Calibrator function in mipp/xrit/MSG.py that was updated by Martin and now takes another number of input arguments: before Martin s change class _Calibrator(object): def __init__(self, hdr, channel_name): after Martin s change class _Calibrator(object): def __init__(self, hdr, channel_name, bits_per_pixel): so now the argument bits_per_pixel is set to 10.
add 8 and 9 entry for meteosat 8 and 9 before only 08 and 09 were possible
... when reprojecting
added new functions: mpop/tools.py -> estimate_cth mpop/scene.py -> get_orbital parallax_corr mpop/channel.py -> get_viewing_geometry parallax_corr vinc_vect estimate_cth simple estimation of cloud top height comparing 10.8 micron temperature with temperature profile get_orbital small wrapper to get the satellite orbital from pyorbital parallax_corr (scene.py) performs parallax correction for all loaded channels get_viewing_geometry small function returning viewing azimuth and elevation angle for current channel parallax_corr (channel.py) performs parallax correction for a single channel vinc_vect parallized version of the vinc function
introduced a optional argument if cth should be estimated or not. Additionally introduced a small function to extract the satellite number.
meteoswiss-mdr
pushed a commit
to meteoswiss-mdr/mpop
that referenced
this pull request
Nov 29, 2016
[tests] Skip deprecation warnings in test_gauss_multi_uncert
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi Martin et al,
I pushed the updates for the parallax correction to the pre-master branch.
I hope this is fine.
There are also two files:
mpop/satin/nwcsaf_hrw_hdf.py
mpop/imageo/HRWimage.py
that can read the NWC-SAF high resolution winds (converted to hdf with the tool provided by NWC-SAF) and plot them.
Please let me know, if I need to change something.
Cheers, Uli