Hi 👋🏻 hoping for some help on an error I'm running into when using urbanpy
Using code from the urbanpy_workshop.ipynb when I adapt the line below for Brazil:
pop_brazil = up.download.hdx_fb_population('brazil', 'full')
I get the error
ValueError Traceback (most recent call last)
Cell In [30], line 1
----> 1 pop_brazil = up.download.hdx_fb_population('brazil', 'full')
File /opt/homebrew/lib/python3.10/site-packages/urbanpy/download/download.py:182, in hdx_fb_population(country, map_type)
180 return pd.concat([pd.read_csv(file) for file in dataset_dict[country][map_type]])
181 else:
--> 182 return pd.read_csv(dataset_dict[country][map_type])
File /opt/homebrew/lib/python3.10/site-packages/pandas/util/_decorators.py:211, in deprecate_kwarg.<locals>._deprecate_kwarg.<locals>.wrapper(*args, **kwargs)
209 else:
210 kwargs[new_arg_name] = new_arg_value
--> 211 return func(*args, **kwargs)
File /opt/homebrew/lib/python3.10/site-packages/pandas/util/_decorators.py:317, in deprecate_nonkeyword_arguments.<locals>.decorate.<locals>.wrapper(*args, **kwargs)
311 if len(args) > num_allow_args:
312 warnings.warn(
313 msg.format(arguments=arguments),
314 FutureWarning,
315 stacklevel=find_stack_level(inspect.currentframe()),
316 )
--> 317 return func(*args, **kwargs)
File /opt/homebrew/lib/python3.10/site-packages/pandas/io/parsers/readers.py:950, in read_csv(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, squeeze, prefix, mangle_dupe_cols, dtype, engine, converters, true_values, false_values, skipinitialspace, skiprows, skipfooter, nrows, na_values, keep_default_na, na_filter, verbose, skip_blank_lines, parse_dates, infer_datetime_format, keep_date_col, date_parser, dayfirst, cache_dates, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, doublequote, escapechar, comment, encoding, encoding_errors, dialect, error_bad_lines, warn_bad_lines, on_bad_lines, delim_whitespace, low_memory, memory_map, float_precision, storage_options)
...
-> 1744 raise ValueError(msg)
1746 try:
1747 return mapping[engine](f, **self.options)
ValueError: Invalid file path or buffer object type: <class 'list'>
When is substitute children or youth instead of full the code runs fine. It's hard to tell from the metadata for this hdx data what the new keyword might be for "full population data". Wondering if you have ideas for how I can get the full population data.
Note this also means the line below from the tutorial does not work:
pop_arg = up.download.hdx_fb_population('argentina', 'full')
But it gives a 404 error.
Hi 👋🏻 hoping for some help on an error I'm running into when using urbanpy
Using code from the
urbanpy_workshop.ipynbwhen I adapt the line below for Brazil:I get the error
When is substitute
childrenoryouthinstead of full the code runs fine. It's hard to tell from the metadata for this hdx data what the new keyword might be for "full population data". Wondering if you have ideas for how I can get the full population data.Note this also means the line below from the tutorial does not work:
But it gives a 404 error.