Language | Translated | Untranslated | Untranslated words | Untranslated characters | Checks | Suggestions | Comments | |
---|---|---|---|---|---|---|---|---|
Chinese (Traditional)
|
3 | |||||||
|
||||||||
English (United States)
|
3 | |||||||
|
||||||||
Norwegian Bokmål
|
15% | 62 | 658 | 7,828 | 8 | |||
|
Please sign in to see the alerts.
Overview
Project website | gmt-tutorials.org |
---|---|
Instructions for translators | Translation project for the website GMT Tutorials. Originally written in Chinese (TW) and has been partially translated into English. |
Project maintainers |
![]() |
Translation process |
|
Translation license | Creative Commons Attribution 4.0 International |
Source code repository |
https://github.com/whyjz/GMT-tutorials.git
|
Repository branch | master |
Last remote commit |
Change PyGMT version info
52fca7e
![]() |
Weblate repository |
https://hosted.weblate.org/git/gmt-tutorials/index/
|
Filemask | SOURCE_DOCS/locale/*/LC_MESSAGES/coloring_topography.po |
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 227 | 2,128 | 24,932 | |||
Source | 77 | 722 | 8,462 | |||
Translated | 72% | 165 | 69% | 1,470 | 68% | 17,104 |
Needs editing | 1% | 1 | 1% | 1 | 1% | 22 |
Failing checks | 6% | 14 | 2% | 59 | 1% | 423 |
# 取得地形資料
region = [-70.8, -66.56, -17.17, -14.42]
grid = pygmt.datasets.load_earth_relief(resolution='01m', region=region)
# 繪圖
fig = pygmt.Figure()
fig.grdimage(grid, region=region, projection='M6i', cmap='mby.cpt')
fig.coast(rivers='r/0.7p,cornflowerblue', borders='1/0.7p,,--', water='cornflowerblue', frame=['af', '+t"Lago Titicaca"'])
fig.show()
fig.savefig('titicaca_pygmt.png')
# Get the Earth relief data
region = [-70.8, -66.56, -17.17, -14.42]
grid = pygmt.datasets.load_earth_relief(resolution='01m', region=region)
# Plotting
fig = pygmt.Figure()
fig.grdimage(grid, region=region, projection='M6i', cmap='mby.cpt')
fig.coast(rivers='r/0.7p,cornflowerblue', borders='1/0.7p,,--', water='cornflowerblue', frame=['af', '+t"Lago Titicaca"'])
fig.show()
fig.savefig('titicaca_pygmt.png')