More graceful way to process links/text that are mismatched (has link, no text and vice versa) to find a way to not lose data
e.g.
len_loc = len(cedar_population_data.data_location_text)
len_data_link = len(cedar_population_data.data_link)
if len_loc != len_data_link:
logger.warning("mismatch in data location:link length, ignoring")
else:
More graceful way to process links/text that are mismatched (has link, no text and vice versa) to find a way to not lose data
e.g.