Population Density (per Square Km)
Gapminder datapoints for 'population_density_per_square_km'
@gapminder.population_density_per_square_km
Gapminder datapoints for 'population_density_per_square_km'
@gapminder.population_density_per_square_km
Average number of people on each square km of the land in the given country.
HOW TO JOIN WITH METADATA
• Concepts (labels/units)
– Use the concept id population_density_per_square_km
to look up labels and units in @gapminder.metadata.concepts.
SELECT * FROM @gapminder.metadata.concepts WHERE concept = 'population_density_per_square_km'
.
• Countries and names
– Join your datapoints on geo to @gapminder.metadata.entities_geo_country to get readable country/area names
(e.g., name
) and membership attributes such as world_4region
, income_groups
.
• Regions and other group labels
– After you have a region code from the country table (e.g., world_4region
),
you can join to:
· @gapminder.metadata.entities_geo_world_4region on world_4region
→ region names/colors/shapes
· @gapminder.metadata.entities_geo_world_6region on world_6region
→ region names
· @gapminder.metadata.entities_geo_income_groups on income_groups
→ income group names
Example:
SELECT d.time,
c.name AS country,
d.population_density_per_square_km AS value
FROM @gapminder.population_density_per_square_km.population_density_per_square_km_by_geo_time d
LEFT JOIN @gapminder.metadata.entities_geo_country c ON d.geo = c.country;
CREATE TABLE population_density_per_square_km_by_geo_time (
"geo" VARCHAR,
"time" BIGINT,
"population_density_per_square_km" DOUBLE
);
Anyone who has the link will be able to view this.