Library no longer works after FAA website change.
A basic change to get this back running would be to switch from the original HTML table parsing code in tfr_list() and instead use geopandas
New URL with TFRS in json format:
url = "https://tfr.faa.gov/geoserver/TFR/ows?service=WFS&version=1.1.0&request=GetFeature&typeName=TFR:V_TFR_LOC&maxFeatures=300&outputFormat=application/json&srsname=EPSG:3857"
df = geopandas.read_file(url)
However, there will need to be downstream changes for TFR details, as well.
Library no longer works after FAA website change.
A basic change to get this back running would be to switch from the original HTML table parsing code in tfr_list() and instead use geopandas
New URL with TFRS in json format:
url = "https://tfr.faa.gov/geoserver/TFR/ows?service=WFS&version=1.1.0&request=GetFeature&typeName=TFR:V_TFR_LOC&maxFeatures=300&outputFormat=application/json&srsname=EPSG:3857"
df = geopandas.read_file(url)
However, there will need to be downstream changes for TFR details, as well.