The public data catalog
Bring your data. Add the world.
Weather, holidays, places and more. A place, in preparation, for people and agents to discover public datasets and join them with their own data using SQL.
Catalog preview · illustrative datasets · coming soon
A head start for your next question.
Every dataset will carry its source, licence, coverage and example queries.
-
Daily weather
Temperature and rainfall by place and day.
DailyTime seriesComing soon
-
Public holidays
Give sales patterns a calendar context.
CountryDateComing soon
-
Places & businesses
Understand what surrounds your locations.
PlacesSpatialComing soon
-
Population
Put local demand in context.
PopulationSpatialComing soon
-
Air quality
Explore environmental conditions.
EnvironmentTime seriesComing soon
-
Transport networks
Explore access and connectivity.
TransportSpatialComing soon
Illustrative datasets: what the catalog is designed to hold, not what it holds today.
More useful together
Your sales.
The weather.
One query.
Explore whether rainy days and public holidays coincide with changes in your sales.
Query with DuckDB. Save the result to your catalog.
SELECT s.day, s.revenue, w.rain_mm, h.holiday_name FROM private.sales_daily AS s LEFT JOIN public.weather_daily AS w ON s.day = w.day AND s.location_id = w.location_id LEFT JOIN public.holidays AS h ON s.day = h.day AND s.country_code = h.country_code;
Examples show the join pattern. Dataset pages will explain coverage and join keys.
How the catalog is meant to be used
Discover
Find data with clear sources and coverage.
Join
Combine it with your own tables.
Keep
Save useful results for your next session.