def add(ctx, file_, directory): """add data to system""" if all([file_ is None, directory is None]): raise click.ClickException('Missing --file/-f or --dir/-d option') files_to_process = [] if file_ is not None: files_to_process = [file_] elif directory is not None: for root, dirs, files in os.walk(directory): for f in [file for file in files if file.endswith('.xml')]: files_to_process.append(os.path.join(root, f)) files_to_process.sort(key=os.path.getmtime) for file_to_process in files_to_process: plugin_def = { 'filename_pattern': 'marine_weather/xml', 'handler': 'msc_pygeoapi.loader.marine_weather_realtime.MarineWeatherRealtimeLoader', # noqa } loader = MarineWeatherRealtimeLoader(plugin_def) result = loader.load_data(file_to_process) if result: click.echo( 'GeoJSON features generated: {}'.format( json_pretty_print(loader.items) ) )
def add(ctx, file_, directory): """add data to system""" if all([file_ is None, directory is None]): raise click.ClickException('Missing --file/-f or --dir/-d option') files_to_process = [] if file_ is not None: files_to_process = [file_] elif directory is not None: for root, dirs, files in os.walk(directory): for f in [file for file in files if file.endswith('.shp')]: files_to_process.append(os.path.join(root, f)) files_to_process.sort(key=os.path.getmtime) for file_to_process in files_to_process: plugin_def = { 'filename_pattern': 'meteocode/geodata/', 'handler': 'msc_pygeoapi.loader.forecast_polygons.ForecastPolygonsLoader' # noqa } loader = ForecastPolygonsLoader(plugin_def) result = loader.load_data(file_to_process) if result: click.echo('File properties: {}'.format( json_pretty_print(loader.items)))
def add(ctx, file_, directory, es, username, password, ignore_certs): """add data to system""" if all([file_ is None, directory is None]): raise click.ClickException('Missing --file/-f or --dir/-d option') conn_config = configure_es_connection(es, username, password, ignore_certs) files_to_process = [] if file_ is not None: files_to_process = [file_] elif directory is not None: for root, dirs, files in os.walk(directory): for f in [file for file in files if file.endswith('.xml')]: files_to_process.append(os.path.join(root, f)) files_to_process.sort(key=os.path.getmtime) for file_to_process in files_to_process: loader = MarineWeatherRealtimeLoader(conn_config) result = loader.load_data(file_to_process) if result: click.echo('GeoJSON features generated: {}'.format( json_pretty_print(loader.items)))