0

I have this code and I need convert this information to GeoDataFrame. How can I do this?

import requests

url = 'https://gis.arlingtonva.us/arlgis/rest/services/public/Parking/MapServer/2/query'

params = { 'where': '1=1', 'outFields': '*', 'returnGeometry': 'true', 'f': 'geojson' }

response = requests.get(url, params) assert response.status_code==200 data = response.json()

enter image description here

gene
  • 54,868
  • 3
  • 110
  • 187
Egor
  • 9
  • 1

0 Answers0