on the Intterra map, if you expand the Fire Details layer, you’ll see a button for Details:
if you click on the Details button, you’ll get this information:
the key thing that you care about here is the layer source:
https://services3.arcgis.com/T4QMspbfLg3qTGWY/ArcGIS/rest/services/Interagency_Fire_Perimeter_History_Current_Decade_Read_Only/FeatureServer
if you use a tool like QGIS, you could open up the entire feature layer via Layer > Add Layer > Add ArcGIS Feature Service Layer… and using the above source as the URL for a new connection. from there, you have 2 options:
- you could get the whole set into QGIS (which looks like everything for at least the US), and then just select the features you’re interested in within QGIS.
- you could check the option to “only request features overlapping the current view extent” to get only the particular set of features that show up in your view of the map at the time you create the layer.
… from there, this may help you export the selected features: https://forum.inaturalist.org/t/creating-a-place-for-your-us-city-using-census-bureau-geography-data/21927#find-and-select-your-city.
…
it’s possible to bypass something like QGIS altogether by querying directly from the ArcGIS Feature Service. the service doesn’t have the option to export directly to KML, but you can get a GeoJSON, which Google Earth i think should handle (or is easy to convert to KML using various tools).
- Here’s what the query looks like to get everything in a square near Portland:
https://services3.arcgis.com/T4QMspbfLg3qTGWY/ArcGIS/rest/services/Interagency_Fire_Perimeter_History_Current_Decade_Read_Only/FeatureServer/0/query?f=geojson&returnGeometry=true&spatialRel=esriSpatialRelIntersects&geometry={“xmin”:-123.5,“ymin”:45.1,“xmax”:-120.5,“ymax”:46.3,“spatialReference”:{“wkid”:4326}}&geometryType=esriGeometryEnvelope&inSR=4326&outFields=*&outSR=4326&resultType=tile&quantizationParameters={“mode”:“view”,“originPosition”:“upperLeft”,“tolerance”:10,“extent”:{“xmin”:-19908540,“ymin”:377500,“xmax”:-7272790,“ymax”:11120717,“spatialReference”:{“wkid”:102100,“latestWkid”:3857}}} - Here’s the polygon that intersects a particular point:
https://services3.arcgis.com/T4QMspbfLg3qTGWY/ArcGIS/rest/services/Interagency_Fire_Perimeter_History_Current_Decade_Read_Only/FeatureServer/0/query?f=geojson&returnGeometry=true&spatialRel=esriSpatialRelIntersects&geometry={“x”:-122.11,“y”:45.576,“spatialReference”:{“wkid”:4326}}&geometryType=esriGeometryPoint&inSR=4326&outFields=*&outSR=4326&resultType=tile&quantizationParameters={“mode”:“view”,“originPosition”:“upperLeft”,“tolerance”:10,“extent”:{“xmin”:-19908540,“ymin”:377500,“xmax”:-7272790,“ymax”:11120717,“spatialReference”:{“wkid”:102100,“latestWkid”:3857}}}
…
NOTE: i thought everything i wrote below would work, but i don’t think the filtering on that page for the download works as expected: