3 datasets found
  1. 1117 Russian cities with city name, region, geographic coordinates and 2020...

    • zenodo.org
    csv
    Updated Aug 6, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Evgeniy Pogrebnyak; Evgeniy Pogrebnyak; Kirill Artemov; Kirill Artemov (2021). 1117 Russian cities with city name, region, geographic coordinates and 2020 population estimate [Dataset]. http://doi.org/10.5281/zenodo.5151423
    Explore at:
    csvAvailable download formats
    Dataset updated
    Aug 6, 2021
    Dataset provided by
    Zenodohttp://zenodo.org/
    Authors
    Evgeniy Pogrebnyak; Evgeniy Pogrebnyak; Kirill Artemov; Kirill Artemov
    License

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

    Area covered
    Russia
    Description

    1117 Russian cities with city name, region, geographic coordinates and 2020 population estimate.

    How to use

    from pathlib import Path
    import requests
    import pandas as pd
    
    url = ("https://raw.githubusercontent.com/"
       "epogrebnyak/ru-cities/main/assets/towns.csv")
    
    # save file locally
    p = Path("towns.csv")
    if not p.exists():
      content = requests.get(url).text
      p.write_text(content, encoding="utf-8")
    
    # read as dataframe
    df = pd.read_csv("towns.csv")
    print(df.sample(5))

    Files:

    Сolumns (towns.csv):

    Basic info:

    • city - city name (several cities have alternative names marked in alt_city_names.json)
    • population - city population, thousand people, Rosstat estimate as of 1.1.2020
    • lat,lon - city geographic coordinates

    Region:

    • region_name - subnational region (oblast, republic, krai or AO)
    • region_iso_code - ISO 3166 code, eg RU-VLD
    • federal_district, eg Центральный

    City codes:

    • okato
    • oktmo
    • fias_id
    • kladr_id

    Data sources

    Comments

    City groups

    • Ханты-Мансийский and Ямало-Ненецкий autonomous regions excluded to avoid duplication as parts of Тюменская область.

    • Several notable towns are classified as administrative part of larger cities (Сестрорецк is a municpality at Saint-Petersburg, Щербинка part of Moscow). They are not and not reported in this dataset.

    By individual city

    Alternative city names

    • We suppressed letter "ё" city columns in towns.csv - we have Орел, but not Орёл. This affected:

      • Белоозёрский
      • Королёв
      • Ликино-Дулёво
      • Озёры
      • Щёлково
      • Орёл
    • Дмитриев and Дмитриев-Льговский are the same city.

    assets/alt_city_names.json contains these names.

    Tests

    poetry install
    poetry run python -m pytest
    

    How to replicate dataset

    1. Base dataset

    Run:

    • download data stro rar/get.sh
    • convert Саратовская область.doc to docx
    • run make.py

    Creates:

    • _towns.csv
    • assets/regions.csv

    2. API calls

    Note: do not attempt if you do not have to - this runs a while and loads third-party API access.

    You have the resulting files in repo, so probably does not need to these scripts.

    Run:

    • cd geocoding
    • run coord_dadata.py (needs token)
    • run coord_osm.py

    Creates:

    • coord_dadata.csv
    • coord_osm.csv

    3. Merge data

    Run:

    • run merge.py

    Creates:

    • assets/towns.csv

  2. g

    Russia zip code - Download Dataset

    • geopostcodes.com
    csv
    Updated Mar 3, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    GeoPostcodes (2025). Russia zip code - Download Dataset [Dataset]. https://www.geopostcodes.com/country/russia-zip-code/
    Explore at:
    csvAvailable download formats
    Dataset updated
    Mar 3, 2025
    Dataset authored and provided by
    GeoPostcodes
    Area covered
    Russia
    Description

    Our Russia zip code Database offers comprehensive postal code data for spatial analysis, including postal and administrative areas. This dataset contains accurate and up-to-date information on all administrative divisions, cities, and zip codes, making it an invaluable resource for various applications such as address capture and validation, map and visualization, reporting and business intelligence (BI), master data management, logistics and supply chain management, and sales and marketing. Our location data packages are available in various formats, including CSV, optimized for seamless integration with popular systems like Esri ArcGIS, Snowflake, QGIS, and more. Product features include fully and accurately geocoded data, multi-language support with address names in local and foreign languages, comprehensive city definitions, and the option to combine map data with UNLOCODE and IATA codes, time zones, and daylight saving times. Companies choose our location databases for their enterprise-grade service, reduction in integration time and cost by 30%, and weekly updates to ensure the highest quality.

  3. p

    City Parks in Russia - 819 Available (Free Sample)

    • poidata.io
    csv
    Updated May 29, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Poidata.io (2025). City Parks in Russia - 819 Available (Free Sample) [Dataset]. https://www.poidata.io/report/city-park/russia
    Explore at:
    csvAvailable download formats
    Dataset updated
    May 29, 2025
    Dataset provided by
    Poidata.io
    Area covered
    Russia
    Description

    This dataset provides information on 819 in Russia as of May, 2025. It includes details such as email addresses (where publicly available), phone numbers (where publicly available), and geocoded addresses. Explore market trends, identify potential business partners, and gain valuable insights into the industry. Download a complimentary sample of 10 records to see what's included.

  4. Not seeing a result you expected?
    Learn how you can add new datasets to our index.

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
Evgeniy Pogrebnyak; Evgeniy Pogrebnyak; Kirill Artemov; Kirill Artemov (2021). 1117 Russian cities with city name, region, geographic coordinates and 2020 population estimate [Dataset]. http://doi.org/10.5281/zenodo.5151423
Organization logo

1117 Russian cities with city name, region, geographic coordinates and 2020 population estimate

Explore at:
csvAvailable download formats
Dataset updated
Aug 6, 2021
Dataset provided by
Zenodohttp://zenodo.org/
Authors
Evgeniy Pogrebnyak; Evgeniy Pogrebnyak; Kirill Artemov; Kirill Artemov
License

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

Area covered
Russia
Description

1117 Russian cities with city name, region, geographic coordinates and 2020 population estimate.

How to use

from pathlib import Path
import requests
import pandas as pd

url = ("https://raw.githubusercontent.com/"
   "epogrebnyak/ru-cities/main/assets/towns.csv")

# save file locally
p = Path("towns.csv")
if not p.exists():
  content = requests.get(url).text
  p.write_text(content, encoding="utf-8")

# read as dataframe
df = pd.read_csv("towns.csv")
print(df.sample(5))

Files:

Сolumns (towns.csv):

Basic info:

  • city - city name (several cities have alternative names marked in alt_city_names.json)
  • population - city population, thousand people, Rosstat estimate as of 1.1.2020
  • lat,lon - city geographic coordinates

Region:

  • region_name - subnational region (oblast, republic, krai or AO)
  • region_iso_code - ISO 3166 code, eg RU-VLD
  • federal_district, eg Центральный

City codes:

  • okato
  • oktmo
  • fias_id
  • kladr_id

Data sources

Comments

City groups

  • Ханты-Мансийский and Ямало-Ненецкий autonomous regions excluded to avoid duplication as parts of Тюменская область.

  • Several notable towns are classified as administrative part of larger cities (Сестрорецк is a municpality at Saint-Petersburg, Щербинка part of Moscow). They are not and not reported in this dataset.

By individual city

Alternative city names

  • We suppressed letter "ё" city columns in towns.csv - we have Орел, but not Орёл. This affected:

    • Белоозёрский
    • Королёв
    • Ликино-Дулёво
    • Озёры
    • Щёлково
    • Орёл
  • Дмитриев and Дмитриев-Льговский are the same city.

assets/alt_city_names.json contains these names.

Tests

poetry install
poetry run python -m pytest

How to replicate dataset

1. Base dataset

Run:

  • download data stro rar/get.sh
  • convert Саратовская область.doc to docx
  • run make.py

Creates:

  • _towns.csv
  • assets/regions.csv

2. API calls

Note: do not attempt if you do not have to - this runs a while and loads third-party API access.

You have the resulting files in repo, so probably does not need to these scripts.

Run:

  • cd geocoding
  • run coord_dadata.py (needs token)
  • run coord_osm.py

Creates:

  • coord_dadata.csv
  • coord_osm.csv

3. Merge data

Run:

  • run merge.py

Creates:

  • assets/towns.csv

Search
Clear search
Close search
Google apps
Main menu