Skip to content

Commit

Permalink
Fixed some typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
z10o committed Feb 13, 2023
1 parent b7b054c commit ddceab6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/PyPI_Doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ input_data = np.asarray([
[-4.01,54.80,992.1], [0.88,53.37,1002.6], [-1.69,51.86,1002.1], [-4.57,52.14,999.6], [-0.20,58.40,1001.1],
])
lon_lat_data = input_data[:, 0:1]
lon_lat_data = input_data[:, 0:2]
qff_values = input_data[:, 2]
```

Expand Down Expand Up @@ -59,9 +59,9 @@ levels = np.arange(976, 1026, 2)
cs = plt.contour(gridX, gridY, field, levels)
plt.clabel(cs, levels[::2], fmt='%d', fontsize=9)
plt.scatter(input_data[:, 0], input_data[:, 1], color='red', s=20, marker='.')
plt.scatter(lon_lat_data[:, 0], lon_lat_data[:, 1], color='red', s=20, marker='.')
plt.show()
```

Note that due to the just-in-time compilation of the underlying code, the first execution of Barnes interpolation takes considerable more time than the succeeding ones.
Note that due to the just-in-time compilation of the underlying code, the first execution of Barnes interpolation takes considerable more time than the succeeding ones.

0 comments on commit ddceab6

Please sign in to comment.