Skip to content

Commit cc540c0

Browse files
committed
english correction
1 parent 7a9baf4 commit cc540c0

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

examples/02_eddy_identification/pet_statistics_on_identification.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def update_axes(ax, mappable=None):
4040
)[:365]
4141

4242
# %%
43-
# Merge all identification dataset in one object
43+
# Merge all identification datasets in one object
4444
all_a = EddiesObservations.concatenate(
4545
[EddiesObservations.load_file(i) for i in file_objects]
4646
)
@@ -50,14 +50,14 @@ def update_axes(ax, mappable=None):
5050
x0, x1, y0, y1 = 15, 20, 33, 38
5151
xs = np.array([[x0, x1, x1, x0, x0]], dtype="f8")
5252
ys = np.array([[y0, y0, y1, y1, y0]], dtype="f8")
53-
# Polygon object is create to be usable by match function.
53+
# Polygon object created for the match function use.
5454
polygon = dict(contour_lon_e=xs, contour_lat_e=ys, contour_lon_s=xs, contour_lat_s=ys)
5555

5656
# %%
5757
# Geographic frequency of eddies
5858
step = 0.125
5959
ax = start_axes("")
60-
# Count pixel used for each contour
60+
# Count pixel encompassed in each contour
6161
g_a = all_a.grid_count(bins=((-10, 37, step), (30, 46, step)), intern=True)
6262
m = g_a.display(
6363
ax, cmap="terrain_r", vmin=0, vmax=0.75, factor=1 / all_a.nb_days, name="count"
@@ -66,7 +66,7 @@ def update_axes(ax, mappable=None):
6666
update_axes(ax, m)
6767

6868
# %%
69-
# We use match function to count number of eddies which intersect the polygon defined previously.
69+
# We use the match function to count the number of eddies that intersect the polygon defined previously
7070
# `p1_area` option allow to get in c_e/c_s output, precentage of area occupy by eddies in the polygon.
7171
i_e, j_e, c_e = all_a.match(polygon, p1_area=True, intern=False)
7272
i_s, j_s, c_s = all_a.match(polygon, p1_area=True, intern=True)
@@ -79,22 +79,22 @@ def update_axes(ax, mappable=None):
7979
# translate julian day in datetime64
8080
t = all_a.time.astype("datetime64") - dt
8181
# %%
82-
# Count how many are in polygon
82+
# Number of eddies within a polygon
8383
ax = plt.figure(figsize=(12, 6)).add_subplot(111)
84-
ax.set_title("Different way to count eddies presence in a polygon")
84+
ax.set_title("Different ways to count eddies within a polygon")
8585
ax.set_ylabel("Count")
8686
m = all_a.mask_from_polygons(((xs, ys),))
87-
ax.hist(t[m], label="center in polygon", **kw_hist)
88-
ax.hist(t[i_s[c_s > 0]], label="intersect speed contour with polygon", **kw_hist)
89-
ax.hist(t[i_e[c_e > 0]], label="intersect extern contour with polygon", **kw_hist)
87+
ax.hist(t[m], label="Eddy Center in polygon", **kw_hist)
88+
ax.hist(t[i_s[c_s > 0]], label="Intersection Speed contour and polygon", **kw_hist)
89+
ax.hist(t[i_e[c_e > 0]], label="Intersection Effective contour and polygon", **kw_hist)
9090
ax.legend()
9191
ax.set_xlim(np.datetime64("2010"), np.datetime64("2011"))
9292
ax.grid()
9393

9494
# %%
95-
# Percent of are of interest occupy by eddies
95+
# Percent of the area of interest occupied by eddies.
9696
ax = plt.figure(figsize=(12, 6)).add_subplot(111)
97-
ax.set_title("Percent of polygon occupy by an anticyclonic eddy")
97+
ax.set_title("Percent of polygon occupied by an anticyclonic eddy")
9898
ax.set_ylabel("Percent of polygon")
9999
ax.hist(t[i_s[c_s > 0]], weights=c_s[c_s > 0] * 100.0, label="speed contour", **kw_hist)
100100
ax.hist(

0 commit comments

Comments
 (0)