List All Available Public Datasets
djfan opened this issue · 2 comments
djfan commented
Catalog().subscriptions()
shows available private datasets for one specific account. Is there any function or variable to show all available datasets including public ones? Or how to list all public datasets (providers, etc) through cartoframes.
cmongut commented
Hi @djfan!
There isn't a method for that right now. There is a way to get them using the conversion to dataframes.
datasets_df = Catalog().country('usa').category('demographics').datasets.to_dataframe()
datasets_df[datasets_df['is_public_data'] == True]
Does this solve what you're looking for?
djfan commented
That works! Thanks!!