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

Release v1.7.0 #1065

Merged
merged 6 commits into from
Oct 12, 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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v4.4.0"
rev: "v4.5.0"
hooks:
- id: check-added-large-files
args: [--maxkb=50]
Expand Down
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Changelog

## Unreleased
## 1.7.0 (2023-10-11)

- refactor the distance module and add a new routing module (#1063)
- move shortest_path and k_shortest_paths functions to new routing module, with deprecation warning (#1063)
- rename great_circle_vec and euclidean_dist_vec functions to great_circle and euclidean, with deprecation warning (#1063)
- improve automatic UTM handling in the projection module (#1059)
- add to_latlong parameter to the projection.project_graph function for API consistency (#1057)
- workaround for pytest issue with printing to terminal window on Windows (#1064)
- refactor the distance module and add a new routing module (#1063)
- move shortest_path and k_shortest_paths functions to new routing module, with deprecation warning (#1063)
- rename great_circle_vec and euclidean_dist_vec functions to great_circle and euclidean, with deprecation warning (#1063)
- under-the-hood code clean-up (#1047)

## 1.6.0 (2023-07-28)
Expand Down
8 changes: 8 additions & 0 deletions docs/internals-reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,14 @@ osmnx.projection module
:private-members:
:noindex:

osmnx.routing module
-----------------------

.. automodule:: osmnx.routing
:members:
:private-members:
:noindex:

osmnx.settings module
---------------------

Expand Down
240 changes: 114 additions & 126 deletions docs/user-reference.rst
Original file line number Diff line number Diff line change
@@ -1,126 +1,114 @@
User Reference
==============

This is the User Reference for the OSMnx package. If you are looking for an introduction to OSMnx, read the :doc:`getting-started` guide.

This guide describes the usage of OSMnx's public API. Every function can be accessed via ``ox.module_name.function_name()`` and many can also be accessed directly via ``ox.function_name()`` as a shortcut.

osmnx.bearing module
--------------------

.. automodule:: osmnx.bearing
:members:

osmnx.distance module
---------------------

.. automodule:: osmnx.distance
:members:

osmnx.elevation module
----------------------

.. automodule:: osmnx.elevation
:members:

osmnx.features module
---------------------

.. automodule:: osmnx.features
:members:

osmnx.folium module
-------------------

.. automodule:: osmnx.folium
:members:

osmnx.geocoder module
---------------------

.. automodule:: osmnx.geocoder
:members:

osmnx.geometries module
-----------------------

.. automodule:: osmnx.geometries
:members:

osmnx.graph module
------------------

.. automodule:: osmnx.graph
:members:

osmnx.io module
---------------

.. automodule:: osmnx.io
:members:

osmnx.osm_xml module
--------------------

.. automodule:: osmnx.osm_xml
:members:

osmnx.plot module
-----------------

.. automodule:: osmnx.plot
:members:

osmnx.projection module
-----------------------

.. automodule:: osmnx.projection
:members:

osmnx.settings module
---------------------

.. automodule:: osmnx.settings
:members:

osmnx.simplification module
---------------------------

.. automodule:: osmnx.simplification
:members:

osmnx.speed module
------------------

.. automodule:: osmnx.speed
:members:

osmnx.stats module
------------------

.. automodule:: osmnx.stats
:members:

osmnx.truncate module
---------------------

.. automodule:: osmnx.truncate
:members:

osmnx.utils module
------------------

.. automodule:: osmnx.utils
:members:

osmnx.utils_geo module
----------------------

.. automodule:: osmnx.utils_geo
:members:

osmnx.utils_graph module
------------------------

.. automodule:: osmnx.utils_graph
:members:
User Reference
==============

This is the User Reference for the OSMnx package. If you are looking for an introduction to OSMnx, read the :doc:`getting-started` guide.

This guide describes the usage of OSMnx's public API. Every function can be accessed via ``ox.module_name.function_name()`` and many can also be accessed directly via ``ox.function_name()`` as a shortcut.

osmnx.bearing module
--------------------

.. automodule:: osmnx.bearing
:members:

osmnx.distance module
---------------------

.. automodule:: osmnx.distance
:members:

osmnx.elevation module
----------------------

.. automodule:: osmnx.elevation
:members:

osmnx.features module
---------------------

.. automodule:: osmnx.features
:members:

osmnx.geocoder module
---------------------

.. automodule:: osmnx.geocoder
:members:

osmnx.graph module
------------------

.. automodule:: osmnx.graph
:members:

osmnx.io module
---------------

.. automodule:: osmnx.io
:members:

osmnx.plot module
-----------------

.. automodule:: osmnx.plot
:members:

osmnx.projection module
-----------------------

.. automodule:: osmnx.projection
:members:

osmnx.routing module
-----------------------

.. automodule:: osmnx.routing
:members:

osmnx.settings module
---------------------

.. automodule:: osmnx.settings
:members:

osmnx.simplification module
---------------------------

.. automodule:: osmnx.simplification
:members:

osmnx.speed module
------------------

.. automodule:: osmnx.speed
:members:

osmnx.stats module
------------------

.. automodule:: osmnx.stats
:members:

osmnx.truncate module
---------------------

.. automodule:: osmnx.truncate
:members:

osmnx.utils module
------------------

.. automodule:: osmnx.utils
:members:

osmnx.utils_geo module
----------------------

.. automodule:: osmnx.utils_geo
:members:

osmnx.utils_graph module
------------------------

.. automodule:: osmnx.utils_graph
:members:
2 changes: 1 addition & 1 deletion osmnx/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""OSMnx package version information."""

__version__ = "1.7.0-dev"
__version__ = "1.7.0"
Loading