2022-01-03 18:23:58 +03:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#
|
|
|
|
# This file is part of Nominatim. (https://nominatim.org)
|
|
|
|
#
|
|
|
|
# Copyright (C) 2022 by the Nominatim developer community.
|
|
|
|
# For a full list of authors see the git log.
|
2021-07-25 19:14:12 +03:00
|
|
|
"""
|
|
|
|
Implementation of the 'add-data' subcommand.
|
|
|
|
"""
|
2022-07-17 19:31:51 +03:00
|
|
|
from typing import cast
|
|
|
|
import argparse
|
2021-07-25 19:14:12 +03:00
|
|
|
import logging
|
|
|
|
|
2021-10-19 16:00:26 +03:00
|
|
|
import psutil
|
|
|
|
|
2022-07-17 19:31:51 +03:00
|
|
|
from nominatim.clicmd.args import NominatimArgs
|
|
|
|
|
2021-07-25 19:14:12 +03:00
|
|
|
# Do not repeat documentation of subcommand classes.
|
|
|
|
# pylint: disable=C0111
|
|
|
|
# Using non-top-level imports to avoid eventually unused imports.
|
|
|
|
# pylint: disable=E0012,C0415
|
|
|
|
|
|
|
|
LOG = logging.getLogger()
|
|
|
|
|
|
|
|
class UpdateAddData:
|
|
|
|
"""\
|
|
|
|
Add additional data from a file or an online source.
|
|
|
|
|
2021-10-12 00:27:38 +03:00
|
|
|
This command allows to add or update the search data in the database.
|
|
|
|
The data can come either from an OSM file or single OSM objects can
|
|
|
|
directly be downloaded from the OSM API. This function only loads the
|
|
|
|
data into the database. Afterwards it still needs to be integrated
|
|
|
|
in the search index. Use the `nominatim index` command for that.
|
|
|
|
|
|
|
|
The command can also be used to add external non-OSM data to the
|
|
|
|
database. At the moment the only supported format is TIGER housenumber
|
|
|
|
data. See the online documentation at
|
|
|
|
https://nominatim.org/release-docs/latest/admin/Import/#installing-tiger-housenumber-data-for-the-us
|
|
|
|
for more information.
|
2021-07-25 19:14:12 +03:00
|
|
|
"""
|
|
|
|
|
2022-07-17 19:31:51 +03:00
|
|
|
def add_args(self, parser: argparse.ArgumentParser) -> None:
|
2021-07-25 19:14:12 +03:00
|
|
|
group_name = parser.add_argument_group('Source')
|
2022-07-17 19:31:51 +03:00
|
|
|
group1 = group_name.add_mutually_exclusive_group(required=True)
|
|
|
|
group1.add_argument('--file', metavar='FILE',
|
|
|
|
help='Import data from an OSM file or diff file')
|
|
|
|
group1.add_argument('--diff', metavar='FILE',
|
|
|
|
help='Import data from an OSM diff file (deprecated: use --file)')
|
|
|
|
group1.add_argument('--node', metavar='ID', type=int,
|
|
|
|
help='Import a single node from the API')
|
|
|
|
group1.add_argument('--way', metavar='ID', type=int,
|
|
|
|
help='Import a single way from the API')
|
|
|
|
group1.add_argument('--relation', metavar='ID', type=int,
|
|
|
|
help='Import a single relation from the API')
|
|
|
|
group1.add_argument('--tiger-data', metavar='DIR',
|
|
|
|
help='Add housenumbers from the US TIGER census database')
|
|
|
|
group2 = parser.add_argument_group('Extra arguments')
|
|
|
|
group2.add_argument('--use-main-api', action='store_true',
|
|
|
|
help='Use OSM API instead of Overpass to download objects')
|
|
|
|
group2.add_argument('--osm2pgsql-cache', metavar='SIZE', type=int,
|
|
|
|
help='Size of cache to be used by osm2pgsql (in MB)')
|
|
|
|
group2.add_argument('--socket-timeout', dest='socket_timeout', type=int, default=60,
|
|
|
|
help='Set timeout for file downloads')
|
|
|
|
|
|
|
|
|
|
|
|
def run(self, args: NominatimArgs) -> int:
|
2021-07-25 19:14:12 +03:00
|
|
|
from nominatim.tokenizer import factory as tokenizer_factory
|
2021-07-26 00:29:15 +03:00
|
|
|
from nominatim.tools import tiger_data, add_osm_data
|
2021-07-25 19:14:12 +03:00
|
|
|
|
|
|
|
if args.tiger_data:
|
|
|
|
tokenizer = tokenizer_factory.get_tokenizer_for_db(args.config)
|
|
|
|
return tiger_data.add_tiger_data(args.tiger_data,
|
2021-10-19 16:00:26 +03:00
|
|
|
args.config,
|
|
|
|
args.threads or psutil.cpu_count() or 1,
|
2021-07-25 19:14:12 +03:00
|
|
|
tokenizer)
|
|
|
|
|
2021-07-26 00:29:15 +03:00
|
|
|
osm2pgsql_params = args.osm2pgsql_options(default_cache=1000, default_threads=1)
|
|
|
|
if args.file or args.diff:
|
2023-03-28 15:48:41 +03:00
|
|
|
return add_osm_data.add_data_from_file(args.config.get_libpq_dsn(),
|
|
|
|
cast(str, args.file or args.diff),
|
2021-07-26 00:29:15 +03:00
|
|
|
osm2pgsql_params)
|
|
|
|
|
|
|
|
if args.node:
|
2023-03-28 15:48:41 +03:00
|
|
|
return add_osm_data.add_osm_object(args.config.get_libpq_dsn(),
|
|
|
|
'node', args.node,
|
2021-07-26 00:29:15 +03:00
|
|
|
args.use_main_api,
|
|
|
|
osm2pgsql_params)
|
|
|
|
|
|
|
|
if args.way:
|
2023-03-28 15:48:41 +03:00
|
|
|
return add_osm_data.add_osm_object(args.config.get_libpq_dsn(),
|
|
|
|
'way', args.way,
|
2021-07-26 00:29:15 +03:00
|
|
|
args.use_main_api,
|
|
|
|
osm2pgsql_params)
|
|
|
|
|
|
|
|
if args.relation:
|
2023-03-28 15:48:41 +03:00
|
|
|
return add_osm_data.add_osm_object(args.config.get_libpq_dsn(),
|
|
|
|
'relation', args.relation,
|
2021-07-26 00:29:15 +03:00
|
|
|
args.use_main_api,
|
|
|
|
osm2pgsql_params)
|
|
|
|
|
|
|
|
return 0
|