update citation info

This commit is contained in:
Geoff Boeing
2025-10-13 08:18:30 -07:00
parent 335465ea2f
commit ad2f3d8959
5 changed files with 15 additions and 14 deletions

View File

@@ -25,8 +25,8 @@ preferred-citation:
year: 2025
title: Modeling and Analyzing Urban Networks and Amenities with OSMnx
journal: Geographical Analysis
volume: published online ahead of print
issue: published online ahead of print
start: 1
end: 23
volume: 57
issue: 4
start: 567
end: 577
doi: 10.1111/gean.70009

View File

@@ -14,7 +14,7 @@ OSMnx 2.0 is released: read the [migration guide](https://github.com/gboeing/osm
If you use OSMnx in your work, please cite the paper:
Boeing, G. (2025). [Modeling and Analyzing Urban Networks and Amenities with OSMnx](https://doi.org/10.1111/gean.70009). *Geographical Analysis*, published online ahead of print. doi:10.1111/gean.70009
Boeing, G. (2025). [Modeling and Analyzing Urban Networks and Amenities with OSMnx](https://doi.org/10.1111/gean.70009). *Geographical Analysis* 57 (4), 567-577. doi:10.1111/gean.70009
## Getting Started

View File

@@ -1,7 +1,7 @@
Further Reading
===============
Boeing, G. (2025). `Modeling and Analyzing Urban Networks and Amenities with OSMnx`_. *Geographical Analysis*, published online ahead of print. doi:10.1111/gean.70009
Boeing, G. (2025). `Modeling and Analyzing Urban Networks and Amenities with OSMnx`_. *Geographical Analysis* 57 (4), 567-577. doi:10.1111/gean.70009
This is the official reference paper and citation for the OSMnx package.

View File

@@ -12,7 +12,7 @@ Citation
If you use OSMnx in your work, please cite the paper:
Boeing, G. (2025). `Modeling and Analyzing Urban Networks and Amenities with OSMnx`_. *Geographical Analysis*, published online ahead of print. doi:10.1111/gean.70009
Boeing, G. (2025). `Modeling and Analyzing Urban Networks and Amenities with OSMnx`_. *Geographical Analysis* 57 (4), 567-577. doi:10.1111/gean.70009
.. _Modeling and Analyzing Urban Networks and Amenities with OSMnx: https://doi.org/10.1111/gean.70009

View File

@@ -18,8 +18,7 @@ def citation(style: str = "bibtex") -> None:
Print the OSMnx package's citation information.
Boeing, G. (2025). Modeling and Analyzing Urban Networks and Amenities with
OSMnx. Geographical Analysis, published online ahead of print.
doi:10.1111/gean.70009
OSMnx. Geographical Analysis, 57(4), 567-577. doi:10.1111/gean.70009
Parameters
----------
@@ -30,25 +29,27 @@ def citation(style: str = "bibtex") -> None:
if style == "apa":
msg = (
"Boeing, G. (2025). Modeling and Analyzing Urban Networks and Amenities "
"with OSMnx. Geographical Analysis, published online ahead of print. "
"doi:10.1111/gean.70009"
"with OSMnx. Geographical Analysis, 57(4), 567-577. doi:10.1111/gean.70009"
)
elif style == "bibtex":
msg = (
"@article{boeing_osmnx_2025,\n"
" author = {Boeing, Geoff},\n"
" title = {{Modeling and Analyzing Urban Networks and Amenities with OSMnx}},\n"
" volume = {published online ahead of print},\n"
" doi = {10.1111/gean.70009},\n"
" journal = {Geographical Analysis},\n"
" year = {2025}\n"
" volume = {57},\n"
" number = {4},\n"
" pages = {567--577},\n"
" doi = {10.1111/gean.70009},\n"
"}"
)
elif style == "ieee":
msg = (
'G. Boeing, "Modeling and Analyzing Urban Networks and Amenities with OSMnx," '
"Geographical Analysis, published online ahead of print, 2025, doi: 10.1111/gean.70009."
"Geographical Analysis, vol. 57, no. 4, pp. 567-577, 2025, doi: 10.1111/gean.70009."
)
else: # pragma: no cover
err_msg = f"Invalid citation style {style!r}."
raise ValueError(err_msg)