This statistic shows the twenty countries with the projected largest urban populations worldwide in 2050. Forecasts estimate that the urban population of China will be 1.09 billion people in 2050.
According to the forecast, the total population of Finland is expected to grow until 2050. The forecast shows that by 2050 the population is estimated to be 6.18 million inhabitants.
Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
License information was derived automatically
India Population Projection: Single Year data was reported at 1,667,873,933.000 Person in 2050. This records an increase from the previous number of 1,658,330,351.000 Person for 2049. India Population Projection: Single Year data is updated yearly, averaging 1,394,461,787.000 Person from Mar 2001 (Median) to 2050, with 50 observations. The data reached an all-time high of 1,667,873,933.000 Person in 2050 and a record low of 1,019,001,911.000 Person in 2001. India Population Projection: Single Year data remains active status in CEIC and is reported by CEIC Data. The data is categorized under India Premium Database’s Demographic – Table IN.GAI001: Population Projection: Single Year.
projected population total, broken down by age and sex, for 2030, 2040, and 2050. They are benchmarked on the 2020 Decennial Census Count data from the U.S. Census Bureau to reflect the effect of the latest demographic trends on the future population. These projections were produced and released by the Cooper Center on July 1, 2024.
The Cooper Center projections research is widely used and well received; this data has been cited by a diverse range of organizations including many federal agencies, state legislatures, businesses, non-profits, think-tanks, academic institutions, and the media. The last vintage of projections for 2020 were found to be highly accurate when evaluated and compared to the actual Census Count data.
This graph shows population projections for the United States of America. The estimated population of the USA in 2050 is 398 million residents. Population The U.S. Census Bureau presents annual projections for the growth of the U.S. population up to the year 2060. By 2050, it is estimated that the American population will surpass 398 million citizens. The U.S. census also projects a regressing annual growth rate, starting at 0.8 percent in 2015 and decreasing to 0.46 percent by 2060.
The UN population division publishes population projections for the entire world up to the year 2100. The United Nations also projects a regressing annual growth rate of the world population. Between 2015 and 2020, the population is expected to increase by 1.04 percent annually. Around 2060, the annual growth rate will have decreased to 0.34 percent.
https://catalog.dvrpc.org/dvrpc_data_license.htmlhttps://catalog.dvrpc.org/dvrpc_data_license.html
This dataset contains tabular data at county, municipal/planning district, and zonal levels for the Adopted 2050 v1.0 Population & Employment Forecasts. DVRPC uses 2050 v1.0 to as the forecast vintage nomenclature, as it is the first forecast to use 2050 as a horizon year. Analytical Data Report (ADR 21014) documents the forecasting process and methodologies.
As a part of DVRPC’s long-range planning activities, the Commission is required to maintain forecasts with at least a 20-year horizon, or to the horizon year of the long-range plan. Allocation of growth is forecasted using a land use model, UrbanSim, and working closely with member county planning staffs. DVRPC has prepared regional, county, and municipal-level population and employment forecasts in five-year increments through 2050, using 2015 Census population estimates and 2015 National Establishments Time Series (NETS) employment data as the base.
Note: while 2019 land use model results are provided, the forecast was only adopted for 2015, 2020, 2025, 2030, 2035, 2040, 2045, and 2050.
While the forecast is not adopted at the transportation analysis zone (TAZ) level, nor for intervening years between those ending in "0" or "5", it is allocated to these zones for use in DVRPC’s travel demand model in our UrbanSim land use model. TAZ data conforms to municipal/district level adopted totals for population and employment. It also generates a number of other attributes required for the travel demand model.
Until the 1800s, population growth was incredibly slow on a global level. The global population was estimated to have been around 188 million people in the year 1CE, and did not reach one billion until around 1803. However, since the 1800s, a phenomenon known as the demographic transition has seen population growth skyrocket, reaching eight billion people in 2023, and this is expected to peak at over 10 billion in the 2080s.
https://www.worldbank.org/en/about/legal/terms-of-use-for-datasetshttps://www.worldbank.org/en/about/legal/terms-of-use-for-datasets
This database presents population and other demographic estimates and projections from 1960 to 2050. They are disaggregated by age-group and gender and cover approximately 200 economies.
This dataset was kindly made available by the World Bank.
This Excel spreadsheet is the primary output from the "county controls" development process. It includes forecasts of overall population for counties in the MORPC 15-county region in five-year intervals in the forecast horizon, as well as forecasts of housing, jobs, workers, and other variables related to these. It is updated approximately every four years in conjunction with updates to the Metropolitan Transportation Plan land use model (1), however it is also made available to the public as a standalone resource via the MORPC Population Hub (2). Referring to the MORPC Data User Personas (3), it includes summary tables intended for use by Engaged Elaine, Decisive Delaney, and Hopeful Hadiya, and a machine-readable long-form table intended for use by Savvy Sonja, Specialist Samir, and Coding Corey. The forecasts are produced using a proprietary time series model using historical population data from the U.S. Census Population Estimates Program (4) and various sources of contemporary data. A detailed methods document has not been released as of March 2023, however more information is available upon request.(1) MORPC Metropolitan Transportation Plan Appendix A: Future Land Use, p. v, https://www.morpc.org/wordpress/wp-content/uploads/2020/10/A_LandUse.pdf(2) MORPC Population Resource Hub: County Forecasts, https://www.morpc.org/popforecast(3) MORPC Data User Personas, https://www.morpc.org/tool-resource/data-user-personas/(4) Population Estimates Program, U.S. Census, https://www.census.gov/programs-surveys/popest.html
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.
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.
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!
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
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.
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
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
Historic (none)
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
Projected population according to various scenarios, age groups and gender, Canada, provinces and territories.
TAZ Population and Employment Forecasts for the DVRPC region, 2015 - 2050. To be used for planning purposes.
As a part of DVRPC’s long-range planning activities, the Commission is required to maintain forecasts with at least a 20-year horizon, or to the horizon year of the long-range plan. Allocation of growth is forecasted using a land use model, UrbanSim, and working closely with member county planning staffs. DVRPC has prepared regional, county, and municipal-level population and employment forecasts in five-year increments through 2050, using 2015 Census population estimates and 2015 National Establishments Time Series (NETS) employment data as the base. A forthcoming Analytical Data Report will document the forecasting process and methodologies.
While the forecast is not adopted at the transportation analysis zone (TAZ) level, it is allocated to these zones for use in DVRPC’s travel demand model and conforms to municipal/district level adopted totals. This data provides TAZ-level population and employment. Other travel model attributes are available upon request. Note: while 2019 land use model results are provided, the forecast was only adopted for 2015, 2020, 2025, 2030, 2035, 2040, 2045, and 2050.
Projections estimate that the population in Italy will decrease in the following years. In January 2025, the Italian population added up to 59 million people, but in 2030 Italians will be 58 million individuals. Twenty years later, the population will be around 52 million people. Low birth rate and old population The birth rate in Italy has constantly dropped in the last years. In 2023, 6.4 children were born per 1,000 inhabitants, three babies less than in 2002. Nationwide, the highest number of births was registered in the southern regions, whereas central Italy had the lowest number of children born every 1,000 people. More specifically, the birth rate in the south stood at 7 infants, while in the center it was equal to 5.9 births. Consequently, the population in Italy has aged over the last decade. Between 2002 and 2024, the age distribution of the Italian population showed a growing share of people aged 65 years and older. As a result, the share of young people decreased. The European exception Similarly, the population in Europe is estimated to decrease in the coming years. In 2024, there were 740 million people living in Europe. In 2100, the figure is expected to drop to 586 million inhabitants. However, projections of the world population suggest that Europe might be the only continent experiencing a population decrease. For instance, the population in Africa could grow from 1.41 billion people in 2022 to 3.92 billion individuals in 2100, the fastest population growth worldwide.
This statistic shows the twenty countries with the projected largest rural populations worldwide in 2050. Forecasts estimate that the rural population of India will be around *** million people in 2050.
Every four years, the Wasatch Front’s two metropolitan planning organizations (MPOs), Wasatch Front Regional Council (WFRC) and Mountainland Association of Governments (MAG), collaborate to update a set of annual small area -- traffic analysis zone and ‘city area’, see descriptions below) -- population and employment projections for the Salt Lake City-West Valley City (WFRC), Ogden-Layton (WFRC), and Provo-Orem (MAG) urbanized areas.
These projections are primarily developed for the purpose of informing long-range transportation infrastructure and services planning done as part of the 4 year Regional Transportation Plan update cycle, as well as Utah’s Unified Transportation Plan, 2023-2050. Accordingly, the foundation for these projections is largely data describing existing conditions for a 2019 base year, the first year of the latest RTP process. The projections are included in the official travel models, which are publicly released at the conclusion of the RTP process.
Projections within the Wasatch Front urban area ( SUBAREAID = 1) were produced with using the Real Estate Market Model as described below. Socioeconomic forecasts produced for Cache MPO (Cache County, SUBAREAID = 2), Dixie MPO (Washington County, SUBAREAID = 3), Summit County (SUBAREAID = 4), and UDOT (other areas of the state, SUBAREAID = 0) all adhere to the University of Utah Gardner Policy Institute's county-level projection controls, but other modeling methods are used to arrive at the TAZ-level forecasts for these areas.
As these projections may be a valuable input to other analyses, this dataset is made available here as a public service for informational purposes only. It is solely the responsibility of the end user to determine the appropriate use of this dataset for other purposes.
Wasatch Front Real Estate Market Model (REMM) Projections
WFRC and MAG have developed a spatial statistical model using the UrbanSim modeling platform to assist in producing these annual projections. This model is called the Real Estate Market Model, or REMM for short. REMM is used for the urban portion of Weber, Davis, Salt Lake, and Utah counties. REMM relies on extensive inputs to simulate future development activity across the greater urbanized region. Key inputs to REMM include:
Demographic data from the decennial census
County-level population and employment projections -- used as REMM control totals -- are produced by the University of Utah’s Kem C. Gardner Policy Institute (GPI) funded by the Utah State Legislature
Current employment locational patterns derived from the Utah Department of Workforce Services
Land use visioning exercises and feedback, especially in regard to planned urban and local center development, with city and county elected officials and staff
Current land use and valuation GIS-based parcel data stewarded by County Assessors
Traffic patterns and transit service from the regional Travel Demand Model that together form the landscape of regional accessibility to workplaces and other destinations
Calibration of model variables to balance the fit of current conditions and dynamics at the county and regional level
‘Traffic Analysis Zone’ Projections
The annual projections are forecasted for each of the Wasatch Front’s 3,546 Traffic Analysis Zone (TAZ) geographic units. TAZ boundaries are set along roads, streams, and other physical features and average about 600 acres (0.94 square miles). TAZ sizes vary, with some TAZs in the densest areas representing only a single city block (25 acres).
‘City Area’ Projections
The TAZ-level output from the model is also available for ‘city areas’ that sum the projections for the TAZ geographies that roughly align with each city’s current boundary. As TAZs do not align perfectly with current city boundaries, the ‘city area’ summaries are not projections specific to a current or future city boundary, but the ‘city area’ summaries may be suitable surrogates or starting points upon which to base city-specific projections.
Summary Variables in the Datasets
Annual projection counts are available for the following variables (please read Key Exclusions note below):
Demographics
Household Population Count (excludes persons living in group quarters)
Household Count (excludes group quarters)
Employment
Typical Job Count (includes job types that exhibit typical commuting and other travel/vehicle use patterns)
Retail Job Count (retail, food service, hotels, etc)
Office Job Count (office, health care, government, education, etc)
Industrial Job Count (manufacturing, wholesale, transport, etc)
Non-Typical Job Count* (includes agriculture, construction, mining, and home-based jobs) This can be calculated by subtracting Typical Job Count from All Employment Count
All Employment Count* (all jobs, this sums jobs from typical and non-typical sectors).
Key Exclusions from TAZ and ‘City Area’ Projections
As the primary purpose for the development of these population and employment projections is to model future travel in the region, REMM-based projections do not include population or households that reside in group quarters (prisons, senior centers, dormitories, etc), as residents of these facilities typically have a very low impact on regional travel. USTM-based projections also excludes group quarter populations. Group quarters population estimates are available at the county-level from GPI and at various sub-county geographies from the Census Bureau.
Statewide Projections
Population and employment projections for the Wasatch Front area can be combined with those developed by Dixie MPO (St. George area), Cache MPO (Logan area), and the Utah Department of Transportation (for the remainder of the state) into one database for use in the Utah Statewide Travel Model (USTM). While projections for the areas outside of the Wasatch Front use different forecasting methods, they contain the same summary-level population and employment projections making similar TAZ and ‘City Area’ data available statewide. WFRC plans, in the near future, to add additional areas to these projections datasets by including the projections from the USTM model.
The West Africa Coastal Vulnerability Mapping: Population Projections, 2030 and 2050 data set is based on an unreleased working version of the Gridded Population of the World (GPW), Version 4, year 2010 population count raster but at a coarser 5 arc-minute resolution. Bryan Jones of Baruch College produced country-level projections based on the Shared Socioeconomic Pathway 4 (SSP4). SSP4 reflects a divided world where cities that have relatively high standards of living, are attractive to internal and international migrants. In low income countries, rapidly growing rural populations live on shrinking areas of arable land due to both high population pressure and expansion of large-scale mechanized farming by international agricultural firms. This pressure induces large migration flow to the cities, contributing to fast urbanization, although urban areas do not provide many opportUnities for the poor and there is a massive expansion of slums and squatter settlements. This scenario may not be the most likely for the West Africa region, but it has internal coherence and is at least plausible.
U.S. Government Workshttps://www.usa.gov/government-works
License information was derived automatically
Actual and predicted population data by gender and age from the Department of Local Affairs (DOLA), from 1990 to 2040.
https://datacatalog1.worldbank.org/public-licenses?fragment=cchttps://datacatalog1.worldbank.org/public-licenses?fragment=cc
This database presents population and other demographic estimates and projections from 1960 to 2050, covering more than 200 economies. It includes population data by various age groups, sex, urban/rural; fertility data; mortality data; and migration data.
U.S. Government Workshttps://www.usa.gov/government-works
License information was derived automatically
This dataset provides population and other demographic estimates and projections from 1960 to 2050. They are disaggregated by age-group and gender and cover approximately 200 economies.
County Population and Employment Forecasts for the DVRPC region, 2015 - 2050. To be used for planning purposes.
As a part of DVRPC’s long-range planning activities, the Commission is required to maintain forecasts with at least a 20-year horizon, or to the horizon year of the long-range plan. Allocation of growth is forecasted using a land use model, UrbanSim, and working closely with member county planning staffs. DVRPC has prepared regional, county, and municipal-level population and employment forecasts in five-year increments through 2050, using 2015 Census population estimates and 2015 National Establishments Time Series (NETS) employment data as the base. A forthcoming Analytical Data Report will document the forecasting process and methodologies.
This data provides the county-level forecast. Note: while 2019 land use model results are provided, the forecast was only adopted for 2015, 2020, 2025, 2030, 2035, 2040, 2045, and 2050.
This statistic shows the twenty countries with the projected largest urban populations worldwide in 2050. Forecasts estimate that the urban population of China will be 1.09 billion people in 2050.