You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@population.command(no_args_is_help=True, short_help="Synchronize population data from world pop with data stored in our Azure Storage")
23
+
@population.command(short_help="Synchronize population data from world pop with data stored in our Azure Storage")
19
24
@click.option('--force-reprocessing', help='Force reprocessing of data even if the data specified already exists', is_flag=True)
20
25
@click.option('--country', help='The ISO3 code of the country to process the data for')
21
26
@click.option('--download-path', help='The local path to save the data to. If not provided, it will automatically save to the provided azure container that was set when initializing with `rapida init`', required=False)
@click.option('--all-data', help='Sync all datasets for all countries. It should not be used together with --country flag', is_flag=True, default=False)
If you would like to download original data for specific conditions, use --sex or --age-group together. `--age-group=total` is not supported for non-aggregate data.
@population.command(no_args_is_help=True, short_help="Download original worldpop data and aggregate them")
107
+
@population.command(short_help="Download original worldpop data and aggregate them")
102
108
@click.option('--country', help='The ISO3 code of the country to process the data for')
103
109
@click.option('--age-group', help='The age group (child, active or elderly) to process the data for', type=click.Choice(['child', 'active', 'elderly']))
104
110
@click.option('--sex', help='The sex (male or female) to process the data for', type=click.Choice(['male', 'female']))
105
111
@click.option('--download-path', help='The local path to save the data to. If not provided, it will automatically save to the provided azure container that was set when initializing with `rapida init`', required=False)
106
112
@click.option('--force-reprocessing', help='Force reprocessing of data even if the data specified already exists', is_flag=True)
0 commit comments