100+ datasets found
  1. census-bureau-international

    • kaggle.com
    zip
    Updated May 6, 2020
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Google BigQuery (2020). census-bureau-international [Dataset]. https://www.kaggle.com/bigquery/census-bureau-international
    Explore at:
    zip(0 bytes)Available download formats
    Dataset updated
    May 6, 2020
    Dataset provided by
    BigQueryhttps://cloud.google.com/bigquery
    Authors
    Google BigQuery
    Description

    Context

    The United States Census Bureau’s international dataset provides estimates of country populations since 1950 and projections through 2050. Specifically, the dataset includes midyear population figures broken down by age and gender assignment at birth. Additionally, time-series data is provided for attributes including fertility rates, birth rates, death rates, and migration rates.

    Querying BigQuery tables

    You can use the BigQuery Python client library to query tables in this dataset in Kernels. Note that methods available in Kernels are limited to querying data. Tables are at bigquery-public-data.census_bureau_international.

    Sample Query 1

    What countries have the longest life expectancy? In this query, 2016 census information is retrieved by joining the mortality_life_expectancy and country_names_area tables for countries larger than 25,000 km2. Without the size constraint, Monaco is the top result with an average life expectancy of over 89 years!

    standardSQL

    SELECT age.country_name, age.life_expectancy, size.country_area FROM ( SELECT country_name, life_expectancy FROM bigquery-public-data.census_bureau_international.mortality_life_expectancy WHERE year = 2016) age INNER JOIN ( SELECT country_name, country_area FROM bigquery-public-data.census_bureau_international.country_names_area where country_area > 25000) size ON age.country_name = size.country_name ORDER BY 2 DESC /* Limit removed for Data Studio Visualization */ LIMIT 10

    Sample Query 2

    Which countries have the largest proportion of their population under 25? Over 40% of the world’s population is under 25 and greater than 50% of the world’s population is under 30! This query retrieves the countries with the largest proportion of young people by joining the age-specific population table with the midyear (total) population table.

    standardSQL

    SELECT age.country_name, SUM(age.population) AS under_25, pop.midyear_population AS total, ROUND((SUM(age.population) / pop.midyear_population) * 100,2) AS pct_under_25 FROM ( SELECT country_name, population, country_code FROM bigquery-public-data.census_bureau_international.midyear_population_agespecific WHERE year =2017 AND age < 25) age INNER JOIN ( SELECT midyear_population, country_code FROM bigquery-public-data.census_bureau_international.midyear_population WHERE year = 2017) pop ON age.country_code = pop.country_code GROUP BY 1, 3 ORDER BY 4 DESC /* Remove limit for visualization*/ LIMIT 10

    Sample Query 3

    The International Census dataset contains growth information in the form of birth rates, death rates, and migration rates. Net migration is the net number of migrants per 1,000 population, an important component of total population and one that often drives the work of the United Nations Refugee Agency. This query joins the growth rate table with the area table to retrieve 2017 data for countries greater than 500 km2.

    SELECT growth.country_name, growth.net_migration, CAST(area.country_area AS INT64) AS country_area FROM ( SELECT country_name, net_migration, country_code FROM bigquery-public-data.census_bureau_international.birth_death_growth_rates WHERE year = 2017) growth INNER JOIN ( SELECT country_area, country_code FROM bigquery-public-data.census_bureau_international.country_names_area

    Update frequency

    Historic (none)

    Dataset source

    United States Census Bureau

    Terms of use: This dataset is publicly available for anyone to use under the following terms provided by the Dataset Source - http://www.data.gov/privacy-policy#data_policy - and is provided "AS IS" without any warranty, express or implied, from Google. Google disclaims all liability for any damages, direct or indirect, resulting from the use of the dataset.

    See the GCP Marketplace listing for more details and sample queries: https://console.cloud.google.com/marketplace/details/united-states-census-bureau/international-census-data

  2. d

    Global Population Density Grid Time Series Estimates

    • catalog.data.gov
    • data.staging.idas-ds1.appdat.jsc.nasa.gov
    • +1more
    Updated Apr 24, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    SEDAC (2025). Global Population Density Grid Time Series Estimates [Dataset]. https://catalog.data.gov/dataset/global-population-density-grid-time-series-estimates
    Explore at:
    Dataset updated
    Apr 24, 2025
    Dataset provided by
    SEDAC
    Description

    The Global Population Density Grid Time Series Estimates provide a back-cast time series of population density grids based on the year 2000 population grid from SEDAC's Global Rural-Urban Mapping Project, Version 1 (GRUMPv1) data set. The grids were created by using rates of population change between decades from the coarser resolution History Database of the Global Environment (HYDE) database to back-cast the GRUMPv1 population density grids. Mismatches between the spatial extent of the HYDE calculated rates and GRUMPv1 population data were resolved via infilling rate cells based on a focal mean of values. Finally, the grids were adjusted so that the population totals for each country equaled the UN World Population Prospects (2008 Revision) estimates for that country for the respective year (1970, 1980, 1990, and 2000). These data do not represent census observations for the years prior to 2000, and therefore can at best be thought of as estimations of the populations in given locations. The population grids are consistent internally within the time series, but are not recommended for use in creating longer time series with any other population grids, including GRUMPv1, Gridded Population of the World, Version 4 (GPWv4), or non-SEDAC developed population grids. These population grids served as an input to SEDAC's Global Estimated Net Migration Grids by Decade: 1970-2000 data set.

  3. o

    Geonames - All Cities with a population > 1000

    • public.opendatasoft.com
    • data.smartidf.services
    • +2more
    csv, excel, geojson +1
    Updated Mar 10, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2024). Geonames - All Cities with a population > 1000 [Dataset]. https://public.opendatasoft.com/explore/dataset/geonames-all-cities-with-a-population-1000/
    Explore at:
    csv, json, geojson, excelAvailable download formats
    Dataset updated
    Mar 10, 2024
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Description

    All cities with a population > 1000 or seats of adm div (ca 80.000)Sources and ContributionsSources : GeoNames is aggregating over hundred different data sources. Ambassadors : GeoNames Ambassadors help in many countries. Wiki : A wiki allows to view the data and quickly fix error and add missing places. Donations and Sponsoring : Costs for running GeoNames are covered by donations and sponsoring.Enrichment:add country name

  4. Holy See - Population Counts

    • data.amerigeoss.org
    geotiff
    Updated Jun 7, 2022
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    UN Humanitarian Data Exchange (2022). Holy See - Population Counts [Dataset]. https://data.amerigeoss.org/ne/dataset/worldpop-holy-see-population
    Explore at:
    geotiffAvailable download formats
    Dataset updated
    Jun 7, 2022
    Dataset provided by
    United Nationshttp://un.org/
    Area covered
    Holy See, Vatican City
    Description

    WorldPop produces different types of gridded population count datasets, depending on the methods used and end application. Please make sure you have read our Mapping Populations overview page before choosing and downloading a dataset.


    Bespoke methods used to produce datasets for specific individual countries are available through the WorldPop Open Population Repository (WOPR) link below. These are 100m resolution gridded population estimates using customized methods ("bottom-up" and/or "top-down") developed for the latest data available from each country. They can also be visualised and explored through the woprVision App.
    The remaining datasets in the links below are produced using the "top-down" method, with either the unconstrained or constrained top-down disaggregation method used. Please make sure you read the Top-down estimation modelling overview page to decide on which datasets best meet your needs. Datasets are available to download in Geotiff and ASCII XYZ format at a resolution of 3 and 30 arc-seconds (approximately 100m and 1km at the equator, respectively):

    - Unconstrained individual countries 2000-2020 ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019)
    -Unconstrained individual countries 2000-2020 UN adjusted ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019).
    -Unconstrained global mosaics 2000-2020 ( 1km resolution ): Mosaiced 1km resolution versions of the "Unconstrained individual countries 2000-2020" datasets.
    -Constrained individual countries 2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020.
    -Constrained individual countries 2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020 and adjusted to match United Nations national population estimates (UN 2019).

    Older datasets produced for specific individual countries and continents, using a set of tailored geospatial inputs and differing "top-down" methods and time periods are still available for download here: Individual countries and Whole Continent.

    Data for earlier dates is available directly from WorldPop.

    WorldPop (www.worldpop.org - School of Geography and Environmental Science, University of Southampton; Department of Geography and Geosciences, University of Louisville; Departement de Geographie, Universite de Namur) and Center for International Earth Science Information Network (CIESIN), Columbia University (2018). Global High Resolution Population Denominators Project - Funded by The Bill and Melinda Gates Foundation (OPP1134076). https://dx.doi.org/10.5258/SOTON/WP00645

  5. G

    Percent of world population in | TheGlobalEconomy.com

    • theglobaleconomy.com
    csv, excel, xml
    Updated Mar 17, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Globalen LLC (2024). Percent of world population in | TheGlobalEconomy.com [Dataset]. www.theglobaleconomy.com/rankings/population_share/1000/
    Explore at:
    xml, excel, csvAvailable download formats
    Dataset updated
    Mar 17, 2024
    Dataset authored and provided by
    Globalen LLC
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Time period covered
    Dec 31, 1960 - Dec 31, 2023
    Area covered
    World, World
    Description

    The average for 2023 based on 196 countries was 0.51 percent. The highest value was in India: 17.91 percent and the lowest value was in Andorra: 0 percent. The indicator is available from 1960 to 2023. Below is a chart for all countries where data are available.

  6. g

    Population Density Around the Globe

    • globalmidwiveshub.org
    • covid19.esriuk.com
    • +5more
    Updated May 20, 2020
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Direct Relief (2020). Population Density Around the Globe [Dataset]. https://www.globalmidwiveshub.org/maps/b71f7fd5dbc8486b8b37362726a11452
    Explore at:
    Dataset updated
    May 20, 2020
    Dataset authored and provided by
    Direct Relief
    Area covered
    Description

    Census data reveals that population density varies noticeably from area to area. Small area census data do a better job depicting where the crowded neighborhoods are. In this map, the yellow areas of highest density range from 30,000 to 150,000 persons per square kilometer. In those areas, if the people were spread out evenly across the area, there would be just 4 to 9 meters between them. Very high density areas exceed 7,000 persons per square kilometer. High density areas exceed 5,200 persons per square kilometer. The last categories break at 3,330 persons per square kilometer, and 1,500 persons per square kilometer.This dataset is comprised of multiple sources. All of the demographic data are from Michael Bauer Research with the exception of the following countries:Australia: Esri Australia and MapData ServicesCanada: Esri Canada and EnvironicsFrance: Esri FranceGermany: Esri Germany and NexigaIndia: Esri India and IndicusJapan: Esri JapanSouth Korea: Esri Korea and OPENmateSpain: Esri España and AISUnited States: Esri Demographics

  7. World Population

    • kaggle.com
    Updated Jan 22, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Diksha Bhati (2021). World Population [Dataset]. https://www.kaggle.com/dikshabhati2002/world-population/discussion
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Jan 22, 2021
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Diksha Bhati
    Area covered
    World
    Description

    Content

    There are three csv files.One is of world population by year (1955-2020).The second file is of world population by region and the third file is of world population by countries.In which there is population of each country in our world till year 2020. Features in these 3 datasets :

    • Country : Name of Country
    • Population : Population of each country
    • Yearly % Change : Population change by a year in precentage
    • Yearly Change : Population change by a year
    • Median Age : Megian age of total population in each country
    • Fertility Rate : Number of live birth per 1,000 women of reproductive age(ages 15 to 49 year) per year
    • Density : Number of people per unit area
    • Urban population : Urban Population in each country
    • Migrants : Migrant population in each country
    • World Share : % of population of each country/total world population

    Acknowledgements

    I have scraped these 3 datasets from worldometers.info website using BeautifulSoup

    Inspiration

    Analyse the increase of world population in last 10 year and do the world population forecast .Find 10 largest countries by population and population density

  8. United Republic of Tanzania - Population Density - Dataset - ADH Data Portal...

    • ckan.africadatahub.org
    Updated Jun 24, 2022
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    ckan.africadatahub.org (2022). United Republic of Tanzania - Population Density - Dataset - ADH Data Portal [Dataset]. https://ckan.africadatahub.org/dataset/united-republic-of-tanzania-population-density
    Explore at:
    Dataset updated
    Jun 24, 2022
    Dataset provided by
    CKANhttps://ckan.org/
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Area covered
    Tanzania
    Description

    WorldPop produces different types of gridded population count datasets, depending on the methods used and end application. Datasets are available to download in Geotiff and ASCII XYZ format at a resolution of 30 arc-seconds (approximately 1km at the equator) -Unconstrained individual countries 2000-2020: Population density datasets for all countries of the World for each year 2000-2020 – derived from the corresponding Unconstrained individual countries 2000-2020 population count datasets by dividing the number of people in each pixel by the pixel surface area. These are produced using the unconstrained top-down modelling method. -Unconstrained individual countries 2000-2020 UN adjusted: Population density datasets for all countries of the World for each year 2000-2020 – derived from the corresponding Unconstrained individual countries 2000-2020 population UN adjusted count datasets by dividing the number of people in each pixel, adjusted to match the country total from the official United Nations population estimates (UN 2019), by the pixel surface area. These are produced using the unconstrained top-down modelling method. Data for earlier dates is available directly from WorldPop. WorldPop (www.worldpop.org - School of Geography and Environmental Science, University of Southampton; Department of Geography and Geosciences, University of Louisville; Departement de Geographie, Universite de Namur) and Center for International Earth Science Information Network (CIESIN), Columbia University (2018). Global High Resolution Population Denominators Project - Funded by The Bill and Melinda Gates Foundation (OPP1134076). https://dx.doi.org/10.5258/SOTON/WP00674

  9. H

    Afghanistan - Population Density

    • data.humdata.org
    geotiff
    Updated Mar 9, 2022
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    WorldPop (2022). Afghanistan - Population Density [Dataset]. https://data.humdata.org/dataset/worldpop-population-density-for-afghanistan
    Explore at:
    geotiffAvailable download formats
    Dataset updated
    Mar 9, 2022
    Dataset provided by
    WorldPop
    Description

    WorldPop produces different types of gridded population count datasets, depending on the methods used and end application. Please make sure you have read our Mapping Populations overview page before choosing and downloading a dataset.

    Datasets are available to download in Geotiff and ASCII XYZ format at a resolution of 30 arc-seconds (approximately 1km at the equator)

    -Unconstrained individual countries 2000-2020: Population density datasets for all countries of the World for each year 2000-2020 – derived from the corresponding Unconstrained individual countries 2000-2020 population count datasets by dividing the number of people in each pixel by the pixel surface area. These are produced using the unconstrained top-down modelling method.
    -Unconstrained individual countries 2000-2020 UN adjusted: Population density datasets for all countries of the World for each year 2000-2020 – derived from the corresponding Unconstrained individual countries 2000-2020 population UN adjusted count datasets by dividing the number of people in each pixel, adjusted to match the country total from the official United Nations population estimates (UN 2019), by the pixel surface area. These are produced using the unconstrained top-down modelling method.

    Data for earlier dates is available directly from WorldPop.

    WorldPop (www.worldpop.org - School of Geography and Environmental Science, University of Southampton; Department of Geography and Geosciences, University of Louisville; Departement de Geographie, Universite de Namur) and Center for International Earth Science Information Network (CIESIN), Columbia University (2018). Global High Resolution Population Denominators Project - Funded by The Bill and Melinda Gates Foundation (OPP1134076). https://dx.doi.org/10.5258/SOTON/WP00674

  10. New Zealand - Population Density

    • data.amerigeoss.org
    geotiff
    Updated Jun 7, 2022
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    UN Humanitarian Data Exchange (2022). New Zealand - Population Density [Dataset]. https://data.amerigeoss.org/nl/dataset/worldpop-population-density-for-new-zealand
    Explore at:
    geotiffAvailable download formats
    Dataset updated
    Jun 7, 2022
    Dataset provided by
    United Nationshttp://un.org/
    Area covered
    New Zealand
    Description

    WorldPop produces different types of gridded population count datasets, depending on the methods used and end application. Please make sure you have read our Mapping Populations overview page before choosing and downloading a dataset.

    Datasets are available to download in Geotiff and ASCII XYZ format at a resolution of 30 arc-seconds (approximately 1km at the equator)

    -Unconstrained individual countries 2000-2020: Population density datasets for all countries of the World for each year 2000-2020 – derived from the corresponding Unconstrained individual countries 2000-2020 population count datasets by dividing the number of people in each pixel by the pixel surface area. These are produced using the unconstrained top-down modelling method.
    -Unconstrained individual countries 2000-2020 UN adjusted: Population density datasets for all countries of the World for each year 2000-2020 – derived from the corresponding Unconstrained individual countries 2000-2020 population UN adjusted count datasets by dividing the number of people in each pixel, adjusted to match the country total from the official United Nations population estimates (UN 2019), by the pixel surface area. These are produced using the unconstrained top-down modelling method.

    Data for earlier dates is available directly from WorldPop.

    WorldPop (www.worldpop.org - School of Geography and Environmental Science, University of Southampton; Department of Geography and Geosciences, University of Louisville; Departement de Geographie, Universite de Namur) and Center for International Earth Science Information Network (CIESIN), Columbia University (2018). Global High Resolution Population Denominators Project - Funded by The Bill and Melinda Gates Foundation (OPP1134076). https://dx.doi.org/10.5258/SOTON/WP00674

  11. g

    Population Administrative Level 0 Country Level

    • globalmidwiveshub.org
    • globalfistulahub.org
    • +3more
    Updated Apr 9, 2021
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Direct Relief (2021). Population Administrative Level 0 Country Level [Dataset]. https://www.globalmidwiveshub.org/items/be405dbffd714342a1697f0f2c5342d5
    Explore at:
    Dataset updated
    Apr 9, 2021
    Dataset authored and provided by
    Direct Relief
    Area covered
    Description

    Country Population (Admin0) using aggregated Facebook high resolution population density data (https://data.humdata.org/organization/facebook).The world population data sourced from Facebook Data for Good is some of the most accurate population density data in the world. The data is accumulated using highly accurate technology to identify buildings from satellite imagery and can be viewed at up to 30-meter resolution. This building data is combined with publicly available census data to create the most accurate population estimates. This data is used by a wide range of nonprofit and humanitarian organizations, for example, to examine trends in urbanization and climate migration or discover the impact of a natural disaster on a region. This can help to inform aid distribution to reach communities most in need. There is both country and region-specific data available. The data also includes demographic estimates in addition to the population density information. This population data can be accessed via the Humanitarian Data Exchange website.

  12. Brazil - Population Counts

    • data.amerigeoss.org
    geotiff
    Updated Oct 12, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    UN Humanitarian Data Exchange (2021). Brazil - Population Counts [Dataset]. https://data.amerigeoss.org/ar/dataset/e4bb99cb-bba0-4d14-be65-2b6cdcb36d0c
    Explore at:
    geotiffAvailable download formats
    Dataset updated
    Oct 12, 2021
    Dataset provided by
    United Nationshttp://un.org/
    Area covered
    Brazil
    Description

    WorldPop produces different types of gridded population count datasets, depending on the methods used and end application. Please make sure you have read our Mapping Populations overview page before choosing and downloading a dataset.


    Bespoke methods used to produce datasets for specific individual countries are available through the WorldPop Open Population Repository (WOPR) link below. These are 100m resolution gridded population estimates using customized methods ("bottom-up" and/or "top-down") developed for the latest data available from each country. They can also be visualised and explored through the woprVision App.
    The remaining datasets in the links below are produced using the "top-down" method, with either the unconstrained or constrained top-down disaggregation method used. Please make sure you read the Top-down estimation modelling overview page to decide on which datasets best meet your needs. Datasets are available to download in Geotiff and ASCII XYZ format at a resolution of 3 and 30 arc-seconds (approximately 100m and 1km at the equator, respectively):

    - Unconstrained individual countries 2000-2020 ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019)
    -Unconstrained individual countries 2000-2020 UN adjusted ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019).
    -Unconstrained global mosaics 2000-2020 ( 1km resolution ): Mosaiced 1km resolution versions of the "Unconstrained individual countries 2000-2020" datasets.
    -Constrained individual countries 2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020.
    -Constrained individual countries 2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020 and adjusted to match United Nations national population estimates (UN 2019).

    Older datasets produced for specific individual countries and continents, using a set of tailored geospatial inputs and differing "top-down" methods and time periods are still available for download here: Individual countries and Whole Continent.

    Data for earlier dates is available directly from WorldPop.

    WorldPop (www.worldpop.org - School of Geography and Environmental Science, University of Southampton; Department of Geography and Geosciences, University of Louisville; Departement de Geographie, Universite de Namur) and Center for International Earth Science Information Network (CIESIN), Columbia University (2018). Global High Resolution Population Denominators Project - Funded by The Bill and Melinda Gates Foundation (OPP1134076). https://dx.doi.org/10.5258/SOTON/WP00645

  13. H

    Netherlands (Kingdom of the) - Population Counts

    • data.humdata.org
    geotiff
    Updated Mar 14, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    WorldPop (2025). Netherlands (Kingdom of the) - Population Counts [Dataset]. https://data.humdata.org/dataset/worldpop-population-counts-for-netherlands-kingdom-of-the
    Explore at:
    geotiffAvailable download formats
    Dataset updated
    Mar 14, 2025
    Dataset provided by
    WorldPop
    Description

    WorldPop produces different types of gridded population count datasets, depending on the methods used and end application. Please make sure you have read our Mapping Populations overview page before choosing and downloading a dataset.


    Bespoke methods used to produce datasets for specific individual countries are available through the WorldPop Open Population Repository (WOPR) link below. These are 100m resolution gridded population estimates using customized methods ("bottom-up" and/or "top-down") developed for the latest data available from each country. They can also be visualised and explored through the woprVision App.
    The remaining datasets in the links below are produced using the "top-down" method, with either the unconstrained or constrained top-down disaggregation method used. Please make sure you read the Top-down estimation modelling overview page to decide on which datasets best meet your needs. Datasets are available to download in Geotiff and ASCII XYZ format at a resolution of 3 and 30 arc-seconds (approximately 100m and 1km at the equator, respectively):

    - Unconstrained individual countries 2000-2020 ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019)
    -Unconstrained individual countries 2000-2020 UN adjusted ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019).
    -Unconstrained global mosaics 2000-2020 ( 1km resolution ): Mosaiced 1km resolution versions of the "Unconstrained individual countries 2000-2020" datasets.
    -Constrained individual countries 2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020.
    -Constrained individual countries 2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020 and adjusted to match United Nations national population estimates (UN 2019).

    Older datasets produced for specific individual countries and continents, using a set of tailored geospatial inputs and differing "top-down" methods and time periods are still available for download here: Individual countries and Whole Continent.

    Data for earlier dates is available directly from WorldPop.

    WorldPop (www.worldpop.org - School of Geography and Environmental Science, University of Southampton; Department of Geography and Geosciences, University of Louisville; Departement de Geographie, Universite de Namur) and Center for International Earth Science Information Network (CIESIN), Columbia University (2018). Global High Resolution Population Denominators Project - Funded by The Bill and Melinda Gates Foundation (OPP1134076). https://dx.doi.org/10.5258/SOTON/WP00645

  14. H

    Montenegro - Population Counts

    • data.humdata.org
    geotiff
    Updated Apr 22, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    WorldPop (2025). Montenegro - Population Counts [Dataset]. https://data.humdata.org/dataset/worldpop-population-counts-for-montenegro
    Explore at:
    geotiffAvailable download formats
    Dataset updated
    Apr 22, 2025
    Dataset provided by
    WorldPop
    Area covered
    Montenegro
    Description

    WorldPop produces different types of gridded population count datasets, depending on the methods used and end application. Please make sure you have read our Mapping Populations overview page before choosing and downloading a dataset.


    Bespoke methods used to produce datasets for specific individual countries are available through the WorldPop Open Population Repository (WOPR) link below. These are 100m resolution gridded population estimates using customized methods ("bottom-up" and/or "top-down") developed for the latest data available from each country. They can also be visualised and explored through the woprVision App.
    The remaining datasets in the links below are produced using the "top-down" method, with either the unconstrained or constrained top-down disaggregation method used. Please make sure you read the Top-down estimation modelling overview page to decide on which datasets best meet your needs. Datasets are available to download in Geotiff and ASCII XYZ format at a resolution of 3 and 30 arc-seconds (approximately 100m and 1km at the equator, respectively):

    - Unconstrained individual countries 2000-2020 ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019)
    -Unconstrained individual countries 2000-2020 UN adjusted ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019).
    -Unconstrained global mosaics 2000-2020 ( 1km resolution ): Mosaiced 1km resolution versions of the "Unconstrained individual countries 2000-2020" datasets.
    -Constrained individual countries 2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020.
    -Constrained individual countries 2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020 and adjusted to match United Nations national population estimates (UN 2019).

    Older datasets produced for specific individual countries and continents, using a set of tailored geospatial inputs and differing "top-down" methods and time periods are still available for download here: Individual countries and Whole Continent.

    Data for earlier dates is available directly from WorldPop.

    WorldPop (www.worldpop.org - School of Geography and Environmental Science, University of Southampton; Department of Geography and Geosciences, University of Louisville; Departement de Geographie, Universite de Namur) and Center for International Earth Science Information Network (CIESIN), Columbia University (2018). Global High Resolution Population Denominators Project - Funded by The Bill and Melinda Gates Foundation (OPP1134076). https://dx.doi.org/10.5258/SOTON/WP00645

  15. H

    Guatemala - Population Density

    • data.humdata.org
    geotiff
    Updated Sep 19, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    WorldPop (2021). Guatemala - Population Density [Dataset]. https://data.humdata.org/dataset/worldpop-population-density-for-guatemala
    Explore at:
    geotiffAvailable download formats
    Dataset updated
    Sep 19, 2021
    Dataset provided by
    WorldPop
    Area covered
    Guatemala
    Description

    WorldPop produces different types of gridded population count datasets, depending on the methods used and end application. Please make sure you have read our Mapping Populations overview page before choosing and downloading a dataset.

    Datasets are available to download in Geotiff and ASCII XYZ format at a resolution of 30 arc-seconds (approximately 1km at the equator)

    -Unconstrained individual countries 2000-2020: Population density datasets for all countries of the World for each year 2000-2020 – derived from the corresponding Unconstrained individual countries 2000-2020 population count datasets by dividing the number of people in each pixel by the pixel surface area. These are produced using the unconstrained top-down modelling method.
    -Unconstrained individual countries 2000-2020 UN adjusted: Population density datasets for all countries of the World for each year 2000-2020 – derived from the corresponding Unconstrained individual countries 2000-2020 population UN adjusted count datasets by dividing the number of people in each pixel, adjusted to match the country total from the official United Nations population estimates (UN 2019), by the pixel surface area. These are produced using the unconstrained top-down modelling method.

    Data for earlier dates is available directly from WorldPop.

    WorldPop (www.worldpop.org - School of Geography and Environmental Science, University of Southampton; Department of Geography and Geosciences, University of Louisville; Departement de Geographie, Universite de Namur) and Center for International Earth Science Information Network (CIESIN), Columbia University (2018). Global High Resolution Population Denominators Project - Funded by The Bill and Melinda Gates Foundation (OPP1134076). https://dx.doi.org/10.5258/SOTON/WP00674

  16. H

    Guyana - Population Counts

    • data.humdata.org
    • data.amerigeoss.org
    geotiff
    Updated Apr 22, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    WorldPop (2025). Guyana - Population Counts [Dataset]. https://data.humdata.org/dataset/worldpop-population-counts-for-guyana
    Explore at:
    geotiffAvailable download formats
    Dataset updated
    Apr 22, 2025
    Dataset provided by
    WorldPop
    Area covered
    Guyana
    Description

    WorldPop produces different types of gridded population count datasets, depending on the methods used and end application. Please make sure you have read our Mapping Populations overview page before choosing and downloading a dataset.


    Bespoke methods used to produce datasets for specific individual countries are available through the WorldPop Open Population Repository (WOPR) link below. These are 100m resolution gridded population estimates using customized methods ("bottom-up" and/or "top-down") developed for the latest data available from each country. They can also be visualised and explored through the woprVision App.
    The remaining datasets in the links below are produced using the "top-down" method, with either the unconstrained or constrained top-down disaggregation method used. Please make sure you read the Top-down estimation modelling overview page to decide on which datasets best meet your needs. Datasets are available to download in Geotiff and ASCII XYZ format at a resolution of 3 and 30 arc-seconds (approximately 100m and 1km at the equator, respectively):

    - Unconstrained individual countries 2000-2020 ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019)
    -Unconstrained individual countries 2000-2020 UN adjusted ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019).
    -Unconstrained global mosaics 2000-2020 ( 1km resolution ): Mosaiced 1km resolution versions of the "Unconstrained individual countries 2000-2020" datasets.
    -Constrained individual countries 2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020.
    -Constrained individual countries 2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020 and adjusted to match United Nations national population estimates (UN 2019).

    Older datasets produced for specific individual countries and continents, using a set of tailored geospatial inputs and differing "top-down" methods and time periods are still available for download here: Individual countries and Whole Continent.

    Data for earlier dates is available directly from WorldPop.

    WorldPop (www.worldpop.org - School of Geography and Environmental Science, University of Southampton; Department of Geography and Geosciences, University of Louisville; Departement de Geographie, Universite de Namur) and Center for International Earth Science Information Network (CIESIN), Columbia University (2018). Global High Resolution Population Denominators Project - Funded by The Bill and Melinda Gates Foundation (OPP1134076). https://dx.doi.org/10.5258/SOTON/WP00645

  17. Highest population density by country 2024

    • statista.com
    • ai-chatbox.pro
    Updated May 27, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Statista (2025). Highest population density by country 2024 [Dataset]. https://www.statista.com/statistics/264683/top-fifty-countries-with-the-highest-population-density/
    Explore at:
    Dataset updated
    May 27, 2025
    Dataset authored and provided by
    Statistahttp://statista.com/
    Time period covered
    2024
    Area covered
    World
    Description

    Monaco led the ranking for countries with the highest population density in 2024, with nearly 26,000 residents per square kilometer. The Special Administrative Region of Macao came in second, followed by Singapore. The world’s second smallest country Monaco is the world’s second-smallest country, with an area of about two square kilometers and a population of only around 40,000. It is a constitutional monarchy located by the Mediterranean Sea, and while Monaco is not part of the European Union, it does participate in some EU policies. The country is perhaps most famous for the Monte Carlo casino and for hosting the Monaco Grand Prix, the world's most prestigious Formula One race. The global population Globally, the population density per square kilometer is about 60 inhabitants, and Asia is the most densely populated region in the world. The global population is increasing rapidly, so population density is only expected to increase. In 1950, for example, the global population stood at about 2.54 billion people, and it reached over eight billion during 2023.

  18. Ireland - Population Counts

    • data.amerigeoss.org
    • data.humdata.org
    geotiff
    Updated May 26, 2023
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    UN Humanitarian Data Exchange (2023). Ireland - Population Counts [Dataset]. https://data.amerigeoss.org/ne/dataset/worldpop-ireland-population
    Explore at:
    geotiffAvailable download formats
    Dataset updated
    May 26, 2023
    Dataset provided by
    United Nationshttp://un.org/
    Area covered
    Ireland, Ireland
    Description

    WorldPop produces different types of gridded population count datasets, depending on the methods used and end application. Please make sure you have read our Mapping Populations overview page before choosing and downloading a dataset.


    Bespoke methods used to produce datasets for specific individual countries are available through the WorldPop Open Population Repository (WOPR) link below. These are 100m resolution gridded population estimates using customized methods ("bottom-up" and/or "top-down") developed for the latest data available from each country. They can also be visualised and explored through the woprVision App.
    The remaining datasets in the links below are produced using the "top-down" method, with either the unconstrained or constrained top-down disaggregation method used. Please make sure you read the Top-down estimation modelling overview page to decide on which datasets best meet your needs. Datasets are available to download in Geotiff and ASCII XYZ format at a resolution of 3 and 30 arc-seconds (approximately 100m and 1km at the equator, respectively):

    - Unconstrained individual countries 2000-2020 ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019)
    -Unconstrained individual countries 2000-2020 UN adjusted ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019).
    -Unconstrained global mosaics 2000-2020 ( 1km resolution ): Mosaiced 1km resolution versions of the "Unconstrained individual countries 2000-2020" datasets.
    -Constrained individual countries 2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020.
    -Constrained individual countries 2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020 and adjusted to match United Nations national population estimates (UN 2019).

    Older datasets produced for specific individual countries and continents, using a set of tailored geospatial inputs and differing "top-down" methods and time periods are still available for download here: Individual countries and Whole Continent.

    Data for earlier dates is available directly from WorldPop.

    WorldPop (www.worldpop.org - School of Geography and Environmental Science, University of Southampton; Department of Geography and Geosciences, University of Louisville; Departement de Geographie, Universite de Namur) and Center for International Earth Science Information Network (CIESIN), Columbia University (2018). Global High Resolution Population Denominators Project - Funded by The Bill and Melinda Gates Foundation (OPP1134076). https://dx.doi.org/10.5258/SOTON/WP00645

  19. H

    French Southern Territories - Population Counts

    • data.humdata.org
    geotiff
    Updated Mar 14, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    WorldPop (2025). French Southern Territories - Population Counts [Dataset]. https://data.humdata.org/dataset/worldpop-population-counts-for-french-southern-territories
    Explore at:
    geotiffAvailable download formats
    Dataset updated
    Mar 14, 2025
    Dataset provided by
    WorldPop
    Area covered
    French Southern and Antarctic Lands
    Description

    WorldPop produces different types of gridded population count datasets, depending on the methods used and end application. Please make sure you have read our Mapping Populations overview page before choosing and downloading a dataset.


    Bespoke methods used to produce datasets for specific individual countries are available through the WorldPop Open Population Repository (WOPR) link below. These are 100m resolution gridded population estimates using customized methods ("bottom-up" and/or "top-down") developed for the latest data available from each country. They can also be visualised and explored through the woprVision App.
    The remaining datasets in the links below are produced using the "top-down" method, with either the unconstrained or constrained top-down disaggregation method used. Please make sure you read the Top-down estimation modelling overview page to decide on which datasets best meet your needs. Datasets are available to download in Geotiff and ASCII XYZ format at a resolution of 3 and 30 arc-seconds (approximately 100m and 1km at the equator, respectively):

    - Unconstrained individual countries 2000-2020 ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019)
    -Unconstrained individual countries 2000-2020 UN adjusted ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019).
    -Unconstrained global mosaics 2000-2020 ( 1km resolution ): Mosaiced 1km resolution versions of the "Unconstrained individual countries 2000-2020" datasets.
    -Constrained individual countries 2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020.
    -Constrained individual countries 2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020 and adjusted to match United Nations national population estimates (UN 2019).

    Older datasets produced for specific individual countries and continents, using a set of tailored geospatial inputs and differing "top-down" methods and time periods are still available for download here: Individual countries and Whole Continent.

    Data for earlier dates is available directly from WorldPop.

    WorldPop (www.worldpop.org - School of Geography and Environmental Science, University of Southampton; Department of Geography and Geosciences, University of Louisville; Departement de Geographie, Universite de Namur) and Center for International Earth Science Information Network (CIESIN), Columbia University (2018). Global High Resolution Population Denominators Project - Funded by The Bill and Melinda Gates Foundation (OPP1134076). https://dx.doi.org/10.5258/SOTON/WP00645

  20. H

    Greenland - Population Counts

    • data.humdata.org
    geotiff
    Updated Sep 19, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    WorldPop (2021). Greenland - Population Counts [Dataset]. https://data.humdata.org/dataset/f2eaafea-ac94-4bfd-9f8c-53bbda4bcb00?force_layout=desktop
    Explore at:
    geotiffAvailable download formats
    Dataset updated
    Sep 19, 2021
    Dataset provided by
    WorldPop
    Area covered
    Greenland
    Description

    WorldPop produces different types of gridded population count datasets, depending on the methods used and end application. Please make sure you have read our Mapping Populations overview page before choosing and downloading a dataset.


    Bespoke methods used to produce datasets for specific individual countries are available through the WorldPop Open Population Repository (WOPR) link below. These are 100m resolution gridded population estimates using customized methods ("bottom-up" and/or "top-down") developed for the latest data available from each country. They can also be visualised and explored through the woprVision App.
    The remaining datasets in the links below are produced using the "top-down" method, with either the unconstrained or constrained top-down disaggregation method used. Please make sure you read the Top-down estimation modelling overview page to decide on which datasets best meet your needs. Datasets are available to download in Geotiff and ASCII XYZ format at a resolution of 3 and 30 arc-seconds (approximately 100m and 1km at the equator, respectively):

    - Unconstrained individual countries 2000-2020 ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020.
    - Unconstrained individual countries 2000-2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019)
    -Unconstrained individual countries 2000-2020 UN adjusted ( 1km resolution ): Consistent 1km resolution population count datasets created using unconstrained top-down methods for all countries of the World for each year 2000-2020 and adjusted to match United Nations national population estimates (UN 2019).
    -Unconstrained global mosaics 2000-2020 ( 1km resolution ): Mosaiced 1km resolution versions of the "Unconstrained individual countries 2000-2020" datasets.
    -Constrained individual countries 2020 ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020.
    -Constrained individual countries 2020 UN adjusted ( 100m resolution ): Consistent 100m resolution population count datasets created using constrained top-down methods for all countries of the World for 2020 and adjusted to match United Nations national population estimates (UN 2019).

    Older datasets produced for specific individual countries and continents, using a set of tailored geospatial inputs and differing "top-down" methods and time periods are still available for download here: Individual countries and Whole Continent.

    Data for earlier dates is available directly from WorldPop.

    WorldPop (www.worldpop.org - School of Geography and Environmental Science, University of Southampton; Department of Geography and Geosciences, University of Louisville; Departement de Geographie, Universite de Namur) and Center for International Earth Science Information Network (CIESIN), Columbia University (2018). Global High Resolution Population Denominators Project - Funded by The Bill and Melinda Gates Foundation (OPP1134076). https://dx.doi.org/10.5258/SOTON/WP00645

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
Google BigQuery (2020). census-bureau-international [Dataset]. https://www.kaggle.com/bigquery/census-bureau-international
Organization logo

census-bureau-international

World population estimates 1950 through 2050

Explore at:
zip(0 bytes)Available download formats
Dataset updated
May 6, 2020
Dataset provided by
BigQueryhttps://cloud.google.com/bigquery
Authors
Google BigQuery
Description

Context

The United States Census Bureau’s international dataset provides estimates of country populations since 1950 and projections through 2050. Specifically, the dataset includes midyear population figures broken down by age and gender assignment at birth. Additionally, time-series data is provided for attributes including fertility rates, birth rates, death rates, and migration rates.

Querying BigQuery tables

You can use the BigQuery Python client library to query tables in this dataset in Kernels. Note that methods available in Kernels are limited to querying data. Tables are at bigquery-public-data.census_bureau_international.

Sample Query 1

What countries have the longest life expectancy? In this query, 2016 census information is retrieved by joining the mortality_life_expectancy and country_names_area tables for countries larger than 25,000 km2. Without the size constraint, Monaco is the top result with an average life expectancy of over 89 years!

standardSQL

SELECT age.country_name, age.life_expectancy, size.country_area FROM ( SELECT country_name, life_expectancy FROM bigquery-public-data.census_bureau_international.mortality_life_expectancy WHERE year = 2016) age INNER JOIN ( SELECT country_name, country_area FROM bigquery-public-data.census_bureau_international.country_names_area where country_area > 25000) size ON age.country_name = size.country_name ORDER BY 2 DESC /* Limit removed for Data Studio Visualization */ LIMIT 10

Sample Query 2

Which countries have the largest proportion of their population under 25? Over 40% of the world’s population is under 25 and greater than 50% of the world’s population is under 30! This query retrieves the countries with the largest proportion of young people by joining the age-specific population table with the midyear (total) population table.

standardSQL

SELECT age.country_name, SUM(age.population) AS under_25, pop.midyear_population AS total, ROUND((SUM(age.population) / pop.midyear_population) * 100,2) AS pct_under_25 FROM ( SELECT country_name, population, country_code FROM bigquery-public-data.census_bureau_international.midyear_population_agespecific WHERE year =2017 AND age < 25) age INNER JOIN ( SELECT midyear_population, country_code FROM bigquery-public-data.census_bureau_international.midyear_population WHERE year = 2017) pop ON age.country_code = pop.country_code GROUP BY 1, 3 ORDER BY 4 DESC /* Remove limit for visualization*/ LIMIT 10

Sample Query 3

The International Census dataset contains growth information in the form of birth rates, death rates, and migration rates. Net migration is the net number of migrants per 1,000 population, an important component of total population and one that often drives the work of the United Nations Refugee Agency. This query joins the growth rate table with the area table to retrieve 2017 data for countries greater than 500 km2.

SELECT growth.country_name, growth.net_migration, CAST(area.country_area AS INT64) AS country_area FROM ( SELECT country_name, net_migration, country_code FROM bigquery-public-data.census_bureau_international.birth_death_growth_rates WHERE year = 2017) growth INNER JOIN ( SELECT country_area, country_code FROM bigquery-public-data.census_bureau_international.country_names_area

Update frequency

Historic (none)

Dataset source

United States Census Bureau

Terms of use: This dataset is publicly available for anyone to use under the following terms provided by the Dataset Source - http://www.data.gov/privacy-policy#data_policy - and is provided "AS IS" without any warranty, express or implied, from Google. Google disclaims all liability for any damages, direct or indirect, resulting from the use of the dataset.

See the GCP Marketplace listing for more details and sample queries: https://console.cloud.google.com/marketplace/details/united-states-census-bureau/international-census-data

Search
Clear search
Close search
Google apps
Main menu