I don't understand why I can't annotate my map of the United States.
import fiona
import geopandas
import matplotlib.pyplot as plt
from shapely.geometry import Polygon,box
countries_gdf = geopandas.read_file("geopkg/USA.gpkg",layer="ADM_1")
polygon = box(-130, -70, 0, 50)
countries_gdf = geopandas.clip(countries_gdf, polygon)
f = plt.figure()
ax = f.add_subplot()
all_states = countries_gdf.plot(facecolor="gray",edgecolor="black",linewidth=.15,rasterized=True)
tx = countries_gdf.query('HASC_1 == "US.TX" or HASC_1 == "US.MI"')
tx.plot(ax=all_states,rasterized=True)
tx.apply(lambda x: ax.annotate(text=x.NAME_1, xy=x.geometry.centroid.coords[0], ha='center'),axis=1)
plt.savefig("test3.png",dpi=500)
The code does not crash and does not display anything.
I use as gpkg file, the one present on this site: https://gadm.org/download_country.html.
Could the problem be the CRS projection system? I also tried to enter the coordinates manually but without results either.
Thank you in advance,