DX: improve import command + help for address-ref-from-best-addresses

This commit is contained in:
Mathieu Jaumotte 2022-11-15 16:16:52 +01:00
parent 9ad3bbc1b4
commit fc607d6a0e
3 changed files with 6 additions and 5 deletions

View File

@ -37,8 +37,9 @@ class LoadAddressesBEFromBestAddressCommand extends Command
{ {
$this $this
->setName('chill:main:address-ref-from-best-addresses') ->setName('chill:main:address-ref-from-best-addresses')
->addArgument('lang', InputArgument::REQUIRED) ->addArgument('lang', InputArgument::REQUIRED, "Language code, for example 'fr'")
->addArgument('list', InputArgument::IS_ARRAY, 'The list to add'); ->addArgument('list', InputArgument::IS_ARRAY, "The list to add, for example 'full', or 'extract' (dev) or '1xxx' (brussel CP)")
->setDescription('Import BE addresses from BeST Address (see https://osoc19.github.io/best/)');
} }
protected function execute(InputInterface $input, OutputInterface $output): int protected function execute(InputInterface $input, OutputInterface $output): int

View File

@ -31,7 +31,7 @@ class LoadAddressesFRFromBANOCommand extends Command
{ {
$this->setName('chill:main:address-ref-from-bano') $this->setName('chill:main:address-ref-from-bano')
->addArgument('departementNo', InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'a list of departement numbers') ->addArgument('departementNo', InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'a list of departement numbers')
->setDescription('Import addresses from bano (see https://bano.openstreetmap.fr'); ->setDescription('Import FR addresses from bano (see https://bano.openstreetmap.fr');
} }
protected function execute(InputInterface $input, OutputInterface $output): int protected function execute(InputInterface $input, OutputInterface $output): int

View File

@ -97,8 +97,8 @@ class PostalCodeBEFromBestAddress
trim($record['postal_info_objectid']), trim($record['postal_info_objectid']),
$record['municipality_objectid'], $record['municipality_objectid'],
'bestaddress', 'bestaddress',
$record['Y'], (float) $record['Y'],
$record['X'], (float) $record['X'],
3812 3812
); );
} }