In [1]:
#!pip install geopandas
#!pip install matplotlib
#!pip install geodatasets
In [2]:
# https://www.data.gov.uk/dataset/2e17269d-10b9-4e43-b67b-57f9b02bd0f8/countries-december-2021-boundaries-uk-buc
#Plotting on a UK Map
import geopandas as gpd
import matplotlib.pyplot as plt
map = gpd.read_file("H:\\My Drive\\0001_projects\\2024\\Maps\\uk_shapefile.zip")
# Plotting the country map
fig, ax = plt.subplots(1, 1, figsize=(15, 10))
map.plot(ax=ax, cmap=''''Pastel1'''', edgecolor=''''k'''')
plt.title(''''UK Map'''')
plt.show()
In [3]:
# https://geoportal.statistics.gov.uk/datasets/196d1a072aaa4882a50be333679d4f63/explore?location=53.814957%2C1.653286%2C6.79
#Plotting on a UK Map
import geopandas as gpd
import matplotlib.pyplot as plt
map = gpd.read_file("H:\\My Drive\\0001_projects\\2024\\Maps\\uk2_shapefile.zip")
# Plotting the country map
fig, ax = plt.subplots(1, 1, figsize=(15, 10))
map.plot(ax=ax, cmap=''''spring'''', edgecolor=''''k'''')
plt.title(''''UK Map'''')
plt.show()