forked from ARM-DOE/pyart
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
161 changed files
with
423 additions
and
400 deletions.
There are no files selected for viewing
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/023767e9a98f895b96f37ef3bdd0b559/plot_rhi_cfradial.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/113656d11b78abf152bbfd5d68a9e2e6/plot_cloud_mask.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/1408fef76e21bdfaab1f27d6100ca0e2/plot_read_cfradial2.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/141be1b30509b41f6f0e2893989a2d22/plot_convective_stratiform.zip
Binary file not shown.
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
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/186aee502f3fe8da716eddb0555d1711/plot_rhi_mdv.zip
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
}, | ||
"outputs": [], | ||
"source": [ | ||
"print(__doc__)\n\n# Author: Jonathan J. Helmus ([email protected])\n# License: BSD 3 clause\n\nimport matplotlib.pyplot as plt\n\nimport pyart\n\nfile = pyart.testing.get_test_data(\"sgpcsaprsurcmacI7.c0.20110520.095101.nc\")\n\n# read in the data\nradar = pyart.io.read_cfradial(file)\n\n# remove existing corrections\nradar.fields.pop(\"specific_attenuation\")\nradar.fields.pop(\"corrected_reflectivity_horizontal\")\n\n# perform attenuation correction\nspec_at, cor_z = pyart.correct.calculate_attenuation(\n radar,\n 0,\n refl_field=\"reflectivity_horizontal\",\n ncp_field=\"norm_coherent_power\",\n rhv_field=\"copol_coeff\",\n phidp_field=\"proc_dp_phase_shift\",\n)\nradar.add_field(\"specific_attenuation\", spec_at)\nradar.add_field(\"corrected_reflectivity_horizontal\", cor_z)\n\n# create the plot\nfig = plt.figure(figsize=(15, 5))\nax1 = fig.add_subplot(131)\ndisplay = pyart.graph.RadarDisplay(radar)\ndisplay.plot(\n \"reflectivity_horizontal\",\n 0,\n ax=ax1,\n vmin=0,\n vmax=60.0,\n colorbar_label=\"\",\n title=\"Raw Reflectivity\",\n)\n\nax2 = fig.add_subplot(132)\ndisplay.plot(\n \"specific_attenuation\",\n 0,\n vmin=0,\n vmax=1.0,\n colorbar_label=\"\",\n ax=ax2,\n title=\"Specific Attenuation\",\n)\n\nax3 = fig.add_subplot(133)\ndisplay = pyart.graph.RadarDisplay(radar)\ndisplay.plot(\n \"corrected_reflectivity_horizontal\",\n 0,\n vmin=0,\n vmax=60.0,\n colorbar_label=\"\",\n ax=ax3,\n title=\"Corrected Reflectivity\",\n)\n\nplt.suptitle(\"Attenuation correction using Py-ART\", fontsize=16)\nplt.show()" | ||
"print(__doc__)\n\n# Author: Jonathan J. Helmus ([email protected])\n# License: BSD 3 clause\n\nimport matplotlib.pyplot as plt\nimport xradar as xd\n\nimport pyart\n\nfile = pyart.testing.get_test_data(\"sgpcsaprsurcmacI7.c0.20110520.095101.nc\")\n\n# read in the data\ntree = xd.io.open_cfradial1_datatree(file)\nradar = tree.pyart.to_radar()\n\n# remove existing corrections\nradar.fields.pop(\"specific_attenuation\")\nradar.fields.pop(\"corrected_reflectivity_horizontal\")\n\n# perform attenuation correction\nspec_at, cor_z = pyart.correct.calculate_attenuation(\n radar,\n 0,\n refl_field=\"reflectivity_horizontal\",\n ncp_field=\"norm_coherent_power\",\n rhv_field=\"copol_coeff\",\n phidp_field=\"proc_dp_phase_shift\",\n)\nradar.add_field(\"specific_attenuation\", spec_at)\nradar.add_field(\"corrected_reflectivity_horizontal\", cor_z)\n\n# create the plot\nfig = plt.figure(figsize=(15, 5))\nax1 = fig.add_subplot(131)\ndisplay = pyart.graph.RadarDisplay(radar)\ndisplay.plot(\n \"reflectivity_horizontal\",\n 0,\n ax=ax1,\n vmin=0,\n vmax=60.0,\n colorbar_label=\"\",\n title=\"Raw Reflectivity\",\n)\n\nax2 = fig.add_subplot(132)\ndisplay.plot(\n \"specific_attenuation\",\n 0,\n vmin=0,\n vmax=1.0,\n colorbar_label=\"\",\n ax=ax2,\n title=\"Specific Attenuation\",\n)\n\nax3 = fig.add_subplot(133)\ndisplay = pyart.graph.RadarDisplay(radar)\ndisplay.plot(\n \"corrected_reflectivity_horizontal\",\n 0,\n vmin=0,\n vmax=60.0,\n colorbar_label=\"\",\n ax=ax3,\n title=\"Corrected Reflectivity\",\n)\n\nplt.suptitle(\"Attenuation correction using Py-ART\", fontsize=16)\nplt.show()" | ||
] | ||
} | ||
], | ||
|
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/1c09047e492c2d0e92111f0865c74e47/plot_feature_detection.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/215077bfd9708e2acf1fb59cb789c743/plot_grid_single_sweep_ppi.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/23bd85a5b713018e66c4c093ca137678/plot_nexrad_data_aws.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/2423382f77a49592b3c807cc29f058f9/plot_dealias_xradar.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/24ca58c28ab7b9027ec0b3c0d59ba94b/plot_ppi_with_rings.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/3d9a790c335b161c1cd717cff023f996/plot_hydrometeor_class_x_band.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/3e4e352c88f759a6a25973ce5452d39c/plot_max_cappi.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/3f5c1cee3a69527eff990f0ea5648943/plot_corner_reflector.zip
Binary file not shown.
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
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/4689bb2540b3ff219a562f2271a21415/plot_map_two_radars_to_grid.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/4c163f9c524ea7f3f69d0be8edde0139/plot_hydrometeor.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/5127dcd9ccbf91c6d83d2225640c4f53/plot_rhi_contours_differential_reflectivity.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/518555feb558ed1324ebefeebd9a02b4/plot_composite_reflectivity.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/51d282e4b686b82578300459c770ae93/plot_xradar.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/5929e6031866d5126600c627740360cf/plot_rhi_two_panel.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/5cf0faabe5ec18661325da2f683e0e80/plot_modify_colorbar.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/6991b3bdc0b3954388ede67eab3fbc60/plot_rhi_cfradial_singlescan.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/6c3ba476aee885971ff79561f8c13f99/plot_column_subset.zip
Binary file not shown.
Binary file not shown.
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
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/964bf233d4ae9125de452f56cf6a7e9c/plot_nexrad_reflectivity.zip
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+114 Bytes
(100%)
_downloads/a5d5ec1b7037dbde171e1e4d5cff0fc0/plot_attenuation.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/ac02bf53c8a37d4117cb5ad6d9dbe6bd/plot_map_one_radar_to_grid.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/ac4288e4990aabba891b3265f51cb5d0/plot_nexrad_multiple_moments.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/b26799b06b17fa6d7709065b673ae55e/plot_rhi_data_overlay.zip
Binary file not shown.
Binary file modified
BIN
+149 Bytes
(100%)
_downloads/bc82bea3a5dd7bdba60b65220891d9e5/examples_python.zip
Binary file not shown.
Binary file modified
BIN
+190 Bytes
(100%)
_downloads/c7988a06f7aec2f48108bdf5d5fc3f22/plot_zdr_check.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/d0514770b9e92f45836a6c18a4aa71cd/plot_ppi_mdv.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/d5501074893e5d83167c803c3a5ba7b1/plot_dealias.zip
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/e32824c3275081f0341f53eaef7cd20e/plot_choose_a_colormap.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/e3f168b4fe115073e588c0990542f402/plot_cross_section.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/e77b71366e0f7d41c9880a842ac1b65c/plot_grid_xradar.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/edf86a28b509f3556204e7cc675b031a/plot_older_nexrad_data_aws.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/f0fc8285a5c2126c46a44511234996d6/plot_compare_two_radars_gatemapper.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/f5d4400874dc8ca4e9e68b4caffe4200/plot_ppi_cfradial.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/f7fd65b3b92066fefb2dbb738f80ec40/plot_nexrad_image_muted_reflectivity.zip
Binary file not shown.
Binary file modified
BIN
+155 Bytes
(100%)
_downloads/fb625db3c50d423b1b7881136ffdeec8/examples_jupyter.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
_downloads/fcbe9b2ac9709aa42af54a3733f7b9eb/plot_three_panel_gridmapdisplay.zip
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-835 Bytes
(100%)
_images/sphx_glr_plot_rhi_contours_differential_reflectivity_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+33 Bytes
(100%)
_images/sphx_glr_plot_rhi_contours_differential_reflectivity_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.