Skip to content
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

documentation for UFS_plot_domains.py #518

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ sphinx_rtd_theme
docutils==0.16
numpy
xarray
matplotlib
netCDF4
matplotlib
25 changes: 16 additions & 9 deletions ush/UFS_plot_domains.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env python

"""
Plot domains?
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does this script do?

"""
import matplotlib.pyplot as plt
from mpl_toolkits.basemap import Basemap
from matplotlib.path import Path
Expand Down Expand Up @@ -108,15 +110,20 @@
# Define a function to get the lambert points in the gnomonic space

def get_lambert_points(gnomonic_map, lambert_map,pps):
print("Hello from a function")

# This function takes the lambert domain we have defined, lambert_map, as well as
# pps (the number of points to interpolate and draw for each side of the lambert "rectangle"),
# and returns an array of two lists: one a list of tuples of the 4*ppf + 4 vertices mapping the approximate shape
# of the lambert domain on the gnomonic map, the other a list of "draw" instructions to be used by
# the PathPatch function
"""
This function takes the lambert domain we have defined, lambert_map, as well as
pps (the number of points to interpolate and draw for each side of the lambert "rectangle"),
and returns an array of two lists: one a list of tuples of the 4*ppf + 4 vertices mapping the approximate shape
of the lambert domain on the gnomonic map, the other a list of "draw" instructions to be used by
the PathPatch function.

# pps is recommended 10 or less due to time of calculation
pps is recommended 10 or less due to time of calculation.

gnomonic_map: ???
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mkavulich @JeffBeck-NOAA what is the meaning of parameter gnomonic_map?

lambert_map: the lambert domain we have defined
pps: the number of points to interpolate and draw for each side of the lambert "rectangle"
"""
print("Hello from a function")

# Start array with bottom left point, "MOVETO" instruction
vertices = [gnomonic_map(*lambert_map(lambert_map.xmin, lambert_map.ymin, inverse= True))]
Expand Down
Loading