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

fix Church 2018 (tobler paper) cite #430

Merged
merged 1 commit into from
Dec 10, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
24 changes: 12 additions & 12 deletions docs/_static/references.bib
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@ @book{Church2009
}


@article{church_2018,
author = {Richard L. Church},
title ={Tobler's Law and Spatial Optimization: Why Bakersfield?},
journal = {International Regional Science Review},
volume = {41},
number = {3},
pages = {287-310},
year = {2018},
doi = {10.1177/0160017616650612}
}


@book{church_murray_2018,
author={Church, RL and Murray, AT},
title={Location covering models: history, applications and advancements},
Expand Down Expand Up @@ -168,18 +180,6 @@ @article{openshaw1995algorithms
}


@article{richard_2018,
author = {Richard L. Church},
title ={Tobler's Law and Spatial Optimization: Why Bakersfield?},
journal = {International Regional Science Review},
volume = {41},
number = {3},
pages = {287-310},
year = {2018},
doi = {10.1177/0160017616650612}
}


@article{shi_malik_2000,
author={Jianbo Shi and Malik, J.},
journal={{IEEE Transactions on Pattern Analysis and Machine Intelligence}},
Expand Down
2 changes: 1 addition & 1 deletion spopt/locate/p_median.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ def solve(self, solver: pulp.LpSolver, results: bool = True):
class KNearestPMedian(PMedian):
r"""
Implement the P-Median Model with Near-Far Cost Allocation and solve it.
The model is adapted from :cite:`richard_2018`, and can be formulated as:
The model is adapted from :cite:`church_2018`, and can be formulated as:

.. math::

Expand Down