mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
fix dangling links in documentation
This commit is contained in:
@@ -19,8 +19,8 @@ to configure it.
|
|||||||
### Installing the required packages
|
### Installing the required packages
|
||||||
|
|
||||||
The Nominatim frontend is best run from its own virtual environment. If
|
The Nominatim frontend is best run from its own virtual environment. If
|
||||||
you have already created one for the database backend during
|
you have already created one for the database backend during the
|
||||||
[installation](Installation.md#Building-Nominatim), you can use that. Otherwise
|
[installation](Installation.md#building-nominatim), you can use that. Otherwise
|
||||||
create one now with:
|
create one now with:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ NOMINATIM_DATABASE_MODULE_PATH=<path to directory where nominatim.so resides>
|
|||||||
```
|
```
|
||||||
|
|
||||||
This is in particular useful when the database runs on a different server.
|
This is in particular useful when the database runs on a different server.
|
||||||
See [Advanced installations](../admin/Advanced-Installations.md#importing-nominatim-to-an-external-postgresql-database) for details.
|
See [Advanced installations](../admin/Advanced-Installations.md#using-an-external-postgresql-database) for details.
|
||||||
|
|
||||||
There are no other configuration options for the legacy tokenizer. All
|
There are no other configuration options for the legacy tokenizer. All
|
||||||
normalization functions are hard-coded.
|
normalization functions are hard-coded.
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ in the query functions of the API object.
|
|||||||
|
|
||||||
## Place identification
|
## Place identification
|
||||||
|
|
||||||
The [details](NominatimAPI.md#nominatim_api.core.NominatimAPI.details) and
|
The [details](NominatimAPI.md#nominatim_api.NominatimAPI.details) and
|
||||||
[lookup](NominatimAPI.md#nominatim_api.core.NominatimAPI.lookup) functions
|
[lookup](NominatimAPI.md#nominatim_api.NominatimAPI.lookup) functions
|
||||||
require references to places in the database. Below the possible
|
require references to places in the database. Below the possible
|
||||||
types for place identification are listed. All types are dataclasses.
|
types for place identification are listed. All types are dataclasses.
|
||||||
|
|
||||||
|
|||||||
@@ -382,7 +382,7 @@ class NominatimAPI:
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def config(self) -> Configuration:
|
def config(self) -> Configuration:
|
||||||
""" Provide read-only access to the [configuration](#Configuration)
|
""" Provide read-only access to the [configuration](Configuration.md)
|
||||||
used by the API.
|
used by the API.
|
||||||
"""
|
"""
|
||||||
return self._async_api.config
|
return self._async_api.config
|
||||||
|
|||||||
@@ -127,7 +127,7 @@ class AddressLine:
|
|||||||
|
|
||||||
local_name: Optional[str] = None
|
local_name: Optional[str] = None
|
||||||
""" Place holder for localization of this address part. See
|
""" Place holder for localization of this address part. See
|
||||||
[Localization](#localization) below.
|
[Localization](Result-Handling.md#localization) below.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user