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

Use Okina in Hawaiʻi and ā with macron in Mānoa #2644

Merged
merged 4 commits into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
10 changes: 5 additions & 5 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Project Contributors

This project was started in 2017 by [Leonardo Uieda](http://www.leouieda.com)
during [an NSF funded postdoc](http://www.leouieda.com/blog/hawaii-gmt-postdoc.html)
with [Paul Wessel](http://www.soest.hawaii.edu/wessel) at the University of Hawaii at
Manoa.
This project was started in 2017 by [Leonardo Uieda](https://www.leouieda.com)
during [an NSF funded postdoc](https://www.leouieda.com/blog/hawaii-gmt-postdoc)
with [Paul Wessel](https://www.soest.hawaii.edu/wessel) at the University of
Hawaiʻi at Mānoa.

The following people have contributed code and/or documentation to the project
(alphabetical by name) and are considered to be "PyGMT Developers":
Expand All @@ -18,7 +18,7 @@ The following people have contributed code and/or documentation to the project
* [Leonardo Uieda](http://www.leouieda.com/) | [0000-0001-6123-9515](https://orcid.org/0000-0001-6123-9515) | University of Liverpool, United Kingdom
* [Liam Toney](https://liam.earth/) | [0000-0003-0167-9433](https://orcid.org/0000-0003-0167-9433) | University of Alaska Fairbanks, USA
* [Malte Ziebarth](https://github.com/mjziebarth) | [0000-0002-5190-4478](https://orcid.org/0000-0002-5190-4478) | GFZ German Research Centre for Geosciences, Germany
* [Max Jones](https://github.com/maxrjones) | [0000-0003-0180-8928](https://orcid.org/0000-0003-0180-8928) | University of Hawai'i at Mānoa, USA
* [Max Jones](https://github.com/maxrjones) | [0000-0003-0180-8928](https://orcid.org/0000-0003-0180-8928) | University of Hawaiʻi at Mānoa, USA
Copy link
Member Author

Choose a reason for hiding this comment

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

Hi @maxrjones, just checking if you're still happy to keep your affiliation with UoH?

* [Michael Grund](https://github.com/michaelgrund) | [0000-0001-8759-2018](https://orcid.org/0000-0001-8759-2018) | SNP Innovation Lab GmbH, Germany
* [Tyler Newton](http://www.tnewton.com/) | [0000-0002-1560-6553](https://orcid.org/0000-0002-1560-6553) | University of Oregon, USA
* [Wei Ji Leong](https://github.com/weiji14) | [0000-0003-2354-1988](https://orcid.org/0000-0003-2354-1988) | Development Seed, USA
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ authors:
orcid: https://orcid.org/0000-0001-8759-2018
- given-names: Max
family-names: Jones
affiliation: University of Hawai'i at Mānoa, USA
affiliation: University of Hawaiʻi at Mānoa, USA
orcid: https://orcid.org/0000-0003-0180-8928
- given-names: Yvonne
family-names: Fröhlich
Expand Down Expand Up @@ -74,7 +74,7 @@ authors:
orcid: https://orcid.org/0000-0002-0268-7032
- given-names: Paul
family-names: Wessel
affiliation: University of Hawai'i at Mānoa, USA
affiliation: University of Hawaiʻi at Mānoa, USA
orcid: https://orcid.org/0000-0001-5708-7336
date-released: 2023-03-31
doi: 10.5281/zenodo.7772533
Expand Down
2 changes: 1 addition & 1 deletion doc/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ files and get only the more convenient formats like PDF and PNG.

The project was started in 2017 by `Leonardo Uieda <http://www.leouieda.com>`__
and `Paul Wessel <http://www.soest.hawaii.edu/wessel>`__ (the co-creator and main
developer of GMT) at the University of Hawaii at Manoa.
developer of GMT) at the University of Hawaiʻi at Mānoa.
The development of PyGMT has been supported by NSF grants
`OCE-1558403 <https://www.nsf.gov/awardsearch/showAward?AWD_ID=1558403>`__ and
`EAR-1948603 <https://www.nsf.gov/awardsearch/showAward?AWD_ID=1948602>`__.
Expand Down
4 changes: 2 additions & 2 deletions examples/gallery/lines/roads.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@

fig = pygmt.Figure()

# Define target region around O'ahu (Hawai'i)
# Define target region around Oʻahu (Hawaiʻi)
region = [-158.3, -157.6, 21.2, 21.75] # xmin, xmax, ymin, ymax

title = r"Main roads of O\047ahu (Hawai\047i)" # \047 is octal code for '
title = r"Main roads of O\140ahu (Hawai\140i)" # \140 is octal code for `, approximating the Okina ʻ
Copy link
Member Author

@weiji14 weiji14 Aug 26, 2023

Choose a reason for hiding this comment

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

Technically \140 is a backtick ` (U+0060), but this is the closest approximation I know to the Okina letter ʻ (U+02BB) as mentioned at https://github.com/GenericMappingTools/pygmt/pull/2641/files#r1306294445. Anyone who knows how to plot the Okina properly is welcome to chime in!

weiji14 marked this conversation as resolved.
Show resolved Hide resolved
fig.basemap(region=region, projection="M12c", frame=["af", f"WSne+t{title}"])
fig.coast(land="gray", water="dodgerblue4", shorelines="1p,black")

Expand Down
2 changes: 1 addition & 1 deletion pygmt/clib/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -1641,7 +1641,7 @@ def extract_region(self):
0.00, 10.00, -20.00, -10.00

Using ISO country codes for the regions (for example ``'US.HI'`` for
yvonnefroehlich marked this conversation as resolved.
Show resolved Hide resolved
Hawaii):
Hawaiʻi):

>>> fig = pygmt.Figure()
>>> fig.coast(
Expand Down
Loading