-
Notifications
You must be signed in to change notification settings - Fork 418
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
465 changed files
with
6,104 additions
and
1,312 deletions.
There are no files selected for viewing
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/04091983300c9d76934920483fb09dd4/Sounding_Calculations.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/082a0fab3fe1251c35a5c076fbfdaaaf/Bulk_Shear.zip
Binary file not shown.
62 changes: 62 additions & 0 deletions
62
dev/_downloads/0b6818769d40534115552a3c9056e9ee/High_Low_Analysis.py
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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Copyright (c) 2025 MetPy Developers. | ||
# Distributed under the terms of the BSD 3-Clause License. | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
""" | ||
================= | ||
High/Low Analysis | ||
================= | ||
This uses MetPy's `find_peaks` function to automatically identify locations of high and low | ||
centers, and then plots them on a map. | ||
""" | ||
|
||
import cartopy.crs as ccrs | ||
import cartopy.feature as cfeature | ||
import matplotlib.pyplot as plt | ||
import xarray as xr | ||
|
||
from metpy.calc import find_peaks | ||
from metpy.cbook import get_test_data | ||
from metpy.plots import add_metpy_logo, scattertext | ||
from metpy.units import units | ||
|
||
########################################### | ||
# Start by loading some data from our sample GFS model dataset. Pull out the geopotential | ||
# heights field for the 850 hPa layer, as well as grab the projection metadata. | ||
data = xr.open_dataset(get_test_data('GFS_test.nc', as_file_obj=False)).metpy.parse_cf() | ||
mslp = data.Geopotential_height_isobaric.metpy.sel(vertical=850 * units.hPa).squeeze() | ||
dataproj = mslp.metpy.cartopy_crs | ||
|
||
|
||
########################################### | ||
# Here we use `find_peaks` to find the locations of the highs and then the lows | ||
h_y, h_x = find_peaks(mslp.values) | ||
l_y, l_x = find_peaks(mslp.values, maxima=False) | ||
|
||
########################################### | ||
# Plot the analyzed locations on top of the contours of height on a map | ||
fig = plt.figure(figsize=(11., 8.)) | ||
ax = fig.add_subplot(1, 1, 1, projection=ccrs.LambertConformal(central_longitude=-95)) | ||
ax.contour(mslp.metpy.x, mslp.metpy.y, mslp, range(0, 2000, 30), | ||
colors='k', linewidths=1.25, linestyles='solid', transform=dataproj) | ||
|
||
# Using scattertext() plot the high centers using a red 'H' and put the height value | ||
# below the 'H' using a smaller font. | ||
scattertext(ax, mslp.metpy.x[h_x], mslp.metpy.y[h_y], 'H', size=20, color='red', | ||
fontweight='bold', transform=dataproj) | ||
scattertext(ax, mslp.metpy.x[h_x], mslp.metpy.y[h_y], mslp.values[h_y, h_x], formatter='.0f', | ||
size=12, color='red', loc=(0, -15), fontweight='bold', transform=dataproj) | ||
|
||
# Now do the same for the lows using a blue 'L' | ||
scattertext(ax, mslp.metpy.x[l_x], mslp.metpy.y[l_y], 'L', size=20, color='blue', | ||
fontweight='bold', transform=dataproj) | ||
scattertext(ax, mslp.metpy.x[l_x], mslp.metpy.y[l_y], mslp.values[l_y, l_x], formatter='.0f', | ||
size=12, color='blue', loc=(0, -15), fontweight='bold', transform=dataproj) | ||
|
||
ax.add_feature(cfeature.OCEAN) | ||
ax.add_feature(cfeature.LAND) | ||
ax.add_feature(cfeature.COASTLINE) | ||
|
||
ax.set_title('Automated 850hPa High and Low Locations') | ||
add_metpy_logo(fig, 275, 295, size='large') | ||
plt.show() |
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/1523f155da5959646e27c2eaca8007cb/Station_Plot.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/186f76b65eb386871fc9c26bdc9f01a8/Shearing_Deformation.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/1aa267885c4b6699e5357f95474588e6/Divergence.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/223464c6999313f83e02eb5c019ff9b9/Mean_Pressure_Weighted.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/2808cb1a9037924da492d35f733a3d30/NEXRAD_Level_2_File.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/2d7bbe850f0058199c1bf791e3692674/Thickness_Hydrostatic.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/315c4c52fb68082a731b192d944e2ede/tutorials_python.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/31813974eb412911b1c6bda94099f526/Simple_Sounding.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/391a346607fba108abe6b68528840293/spc_convective_outlook.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/3e38c5c75bb4d6464fa44d5b8c799fcb/nhc_wind_probabilities.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/49d7ea5ec0bc9e13dde88ca3c0595d99/Simple_Fronts_Plot.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/4d77f41b11d925bd339ed71d7280b8e5/Simplified_Image_Plot.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/4e34e956bf42cdd7b999e346f01c9970/Mountain_Problem.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/52a7c4e2d2473999748f1de66b9de91d/Parse_Angles.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/57d6d44952165edb028aa8c8559b55d3/surface_declarative.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/58fa1be74d5031f1cf1abcd11aa829af/Advanced_Sounding.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/5f90e294a201c0274e0706051a82664f/Inverse_Distance_Verification.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/62e923f8d30033952a29553f5e77f504/Natural_Neighbor_Verification.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/6be032dea76e814e09bc510d28e56dbc/sigma_to_pressure_interpolation.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/6c291187574af09ff3b2be4526f3eb49/upperair_declarative.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/6d9542ee3875e792f1dc61bd0b74c756/Sounding_LCL_Dataset.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/72c1ab8bbac54e1b0efbca160a2a1045/meteogram_metpy.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/78b733bd37148dbb5ae99df3a7fabf14/QVector.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/7943298fe2c9f2ecf278bd9338cb73b3/Hodograph_Inset.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/798c524490b00f114a45502c2fbfd8a5/Static_Stability.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/79f9cee6909ee82905c24b19201cea97/cross_section.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/7ad5a62cb10cfd5d67f19e01218a8d48/Smoothing.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/7bd126fa6cb565445b0c1599f069b6e9/GINI_Water_Vapor.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/812f3156f2a51c954475034b88879535/unit_tutorial.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/8a534b0f8eef2be52cfac0a885b698db/Skew-T_Layout.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/8b1e37ecb6ea1420f63e73b993a64429/declarative_tutorial.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/8bb14be7992a8b47d8955dc55a0b8998/Point_Interpolation.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/8ff108031b7c751c3f1a095fa4e919b7/Combined_plotting.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/96c7ca2f942ccedb687afb8e2dcd38c5/Stretching_Deformation.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/9b7dd84e43ccdced20835cdd39aedfc3/Equivalent_Potential_Temperature.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/9faef570fc51bd5dd009671938bd871c/Mesonet_Stationplot.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/a4d07c40491d156e595f7d888e814cd6/Wind_SLP_Interpolation.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/a5659940aa3f8f568547d47752a43172/tutorials_jupyter.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/a58816c4f3cacfddb44ac6fe03c60c83/area_tutorial.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/a9865f924ac162dbfaec8a8730ee0fa7/Four_Panel_Map.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/a9ceb4ec46157661288e2e9ae217acb8/Station_Plot_with_Layout.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/aa64c1fe208dc564b58dbc1fbb98815e/upperair_soundings.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/ab88a08765f1d272c076bab274bba032/raster_declarative.zip
Binary file not shown.
Binary file modified
BIN
+145 Bytes
(100%)
dev/_downloads/b26d4e2fdd7041ec514bd2e950aecf1c/Plotting_Surface_Analysis.zip
Binary file not shown.
Binary file added
BIN
+6.73 KB
dev/_downloads/b77b75e16df66271969dd748505da140/High_Low_Analysis.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/b9b40fccba1d6ec403d5a7b598d53c8b/Total_Deformation.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/bacdb1a56b06049d5bfcf2fe02725944/Wind_Speed.zip
Binary file not shown.
Binary file modified
BIN
+2.78 KB
(100%)
dev/_downloads/bc82bea3a5dd7bdba60b65220891d9e5/examples_python.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/be2506e9768df69d9457b96f198a256d/NEXRAD_Level_3_File.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/c3ed37a5ecf3e5a9c07a95643273f96d/Gradient.zip
Binary file not shown.
97 changes: 97 additions & 0 deletions
97
dev/_downloads/c4e42ef7eb3e1a680ce140554e20e981/High_Low_Analysis.ipynb
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 |
---|---|---|
@@ -0,0 +1,97 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"\n# High/Low Analysis\n\nThis uses MetPy's `find_peaks` function to automatically identify locations of high and low\ncenters, and then plots them on a map.\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"collapsed": false | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"import cartopy.crs as ccrs\nimport cartopy.feature as cfeature\nimport matplotlib.pyplot as plt\nimport xarray as xr\n\nfrom metpy.calc import find_peaks\nfrom metpy.cbook import get_test_data\nfrom metpy.plots import add_metpy_logo, scattertext\nfrom metpy.units import units" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"Start by loading some data from our sample GFS model dataset. Pull out the geopotential\nheights field for the 850 hPa layer, as well as grab the projection metadata.\n\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"collapsed": false | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"data = xr.open_dataset(get_test_data('GFS_test.nc', as_file_obj=False)).metpy.parse_cf()\nmslp = data.Geopotential_height_isobaric.metpy.sel(vertical=850 * units.hPa).squeeze()\ndataproj = mslp.metpy.cartopy_crs" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"Here we use `find_peaks` to find the locations of the highs and then the lows\n\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"collapsed": false | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"h_y, h_x = find_peaks(mslp.values)\nl_y, l_x = find_peaks(mslp.values, maxima=False)" | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"Plot the analyzed locations on top of the contours of height on a map\n\n" | ||
] | ||
}, | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": { | ||
"collapsed": false | ||
}, | ||
"outputs": [], | ||
"source": [ | ||
"fig = plt.figure(figsize=(11., 8.))\nax = fig.add_subplot(1, 1, 1, projection=ccrs.LambertConformal(central_longitude=-95))\nax.contour(mslp.metpy.x, mslp.metpy.y, mslp, range(0, 2000, 30),\n colors='k', linewidths=1.25, linestyles='solid', transform=dataproj)\n\n# Using scattertext() plot the high centers using a red 'H' and put the height value\n# below the 'H' using a smaller font.\nscattertext(ax, mslp.metpy.x[h_x], mslp.metpy.y[h_y], 'H', size=20, color='red',\n fontweight='bold', transform=dataproj)\nscattertext(ax, mslp.metpy.x[h_x], mslp.metpy.y[h_y], mslp.values[h_y, h_x], formatter='.0f',\n size=12, color='red', loc=(0, -15), fontweight='bold', transform=dataproj)\n\n# Now do the same for the lows using a blue 'L'\nscattertext(ax, mslp.metpy.x[l_x], mslp.metpy.y[l_y], 'L', size=20, color='blue',\n fontweight='bold', transform=dataproj)\nscattertext(ax, mslp.metpy.x[l_x], mslp.metpy.y[l_y], mslp.values[l_y, l_x], formatter='.0f',\n size=12, color='blue', loc=(0, -15), fontweight='bold', transform=dataproj)\n\nax.add_feature(cfeature.OCEAN)\nax.add_feature(cfeature.LAND)\nax.add_feature(cfeature.COASTLINE)\n\nax.set_title('Automated 850hPa High and Low Locations')\nadd_metpy_logo(fig, 275, 295, size='large')\nplt.show()" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.13.1" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 0 | ||
} |
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/cb658440e8d09585894269f064ded2b5/XArray_Projections.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/cf493007bfaf574af871ec427f8cd081/xarray_tutorial.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%)
dev/_downloads/d7027451c04b467ccd181464c81c91de/Advection.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%)
dev/_downloads/e04a4687e37e78a1540e9bf9a2be58cf/Angle_to_Direction.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/e50a0b920fc44505e926eaeef27dacd5/US_Counties.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/ebb53fe327f4e3111346bcb4d3b19628/Advanced_Sounding_With_Complex_Layout.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/edbabfc70e586be80f76255a8ca83650/isentropic_example.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/f335ba0ca08bde86784c71d671d92211/Vorticity.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/f850536e444ce727028d67e0633d2c84/Dewpoint_and_Mixing_Ratio.zip
Binary file not shown.
Binary file modified
BIN
+4.12 KB
(100%)
dev/_downloads/fb625db3c50d423b1b7881136ffdeec8/examples_jupyter.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/fbe57406f64b85e1cff62b7054e254d0/Absolute_Vorticity.zip
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
dev/_downloads/ff38f4d47a1d9e53439d712fc374a7b4/Find_Natural_Neighbors_Verification.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.
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
find_peaks | ||
===================== | ||
|
||
.. currentmodule:: metpy.calc | ||
|
||
.. autofunction:: find_peaks | ||
|
||
.. include:: metpy.calc.find_peaks.examples | ||
|
||
.. raw:: html | ||
|
||
<div style='clear:both'></div> |
12 changes: 12 additions & 0 deletions
12
dev/_sources/api/generated/metpy.calc.peak_persistence.rst.txt
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
peak_persistence | ||
=========================== | ||
|
||
.. currentmodule:: metpy.calc | ||
|
||
.. autofunction:: peak_persistence | ||
|
||
.. include:: metpy.calc.peak_persistence.examples | ||
|
||
.. raw:: html | ||
|
||
<div style='clear:both'></div> |
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
12 changes: 12 additions & 0 deletions
12
dev/_sources/api/generated/metpy.plots.scattertext.rst.txt
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
scattertext | ||
======================= | ||
|
||
.. currentmodule:: metpy.plots | ||
|
||
.. autofunction:: scattertext | ||
|
||
.. include:: metpy.plots.scattertext.examples | ||
|
||
.. raw:: html | ||
|
||
<div style='clear:both'></div> |
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.