ENV859 / ArcGIS-PythonAPI

John's take on the ArcGIS Python API
12 stars 90 forks source link

USA census tracts area dataset is deprecated #2

Open deeper747 opened 10 months ago

deeper747 commented 10 months ago

Issue

The USA census tracts area dataset mentioned in 2-Searching-for-and-accessing-content is deprecated. Screenshot 2023-12-01 at 6 48 06 PM

The alternative one is 'USA Census Tract Boundaries' https://esri.maps.arcgis.com/home/item.html?id=20f5d275113e4066bf311236d9dcc3d4

deeper747 commented 10 months ago

recommended query modification:

Use the API's content' helper to search for feature layers with keyword Census and owner is "esri_dm"

results = gis.content.search(query='"USA Census Tract Boundaries" owner:esri_dm', item_type='Feature Layer', outside_org=True)

Show the complete list of results returned

results