GIS Copilot Demo (V1.0): Multiple vector operationsTask Perform the following analysis. Generate buffer zones for each point at 200 meters, 400 meters, 600 meters, and 800 meters. Connect each point to its five nearest neighbors. Create a fishnet grid measuring 10 km by 10 km and count the number of points within each cell. Produce a histogram showing the distribution of…
GIS Copilot Demo (V1.0): Random elevation and nearest neighboursTask Create a histogram to show elevation of 100 points, and also connect each point to its nearest 5 points. Dataset DEM of Pennsylvania. Result Geoprocessing workflow Generated code: # Purpose: # - Generate 100 random points over the DEM extent (EPSG:32128), sample elevation from DEM, and store as a shapefile # - Compute…
GIS Copilot Demo (V1.0): Elevation for the bike routeTask Generate an elevation profile chart for the longest bike path. Dataset DEM and bike route in Pennsylvania. Result Geoprocessing workflow Generated code: # Perform a spatial analysis to identify the longest bike path and generate its elevation…
GIS Copilot Demo: Statistical analysis and HTML reportTask What's the association between median household income and obesity? Please generate a HTML report to include the regression analysis, r-square, p-value, and be sure to include a one paragraph report to interpret the findings. Dataset PA County shapefile Result Generated HTML report: income_obesity_regression_report Generated Python Code # The task involves analyzing the relationship between…
GIS Copilot Demo: Normalized Difference Vegetation Index (NDVI) generation with remote sensing imagesSpatial task Generate the Normalized Difference Vegetation Index (NDVI) of Akure from these satellite imageries. Datasets Landsat 8 imageries Akure_boundary Result
GIS Copilot Demo: Terrain analysis with DEM dataSpatial task Merge the four DEMs into a single raster and perform terrain characteristic analysis for Richland County, including slope, aspect, hillshade, terrain ruggedness index (TRI), and topographic Position Index (TPI). Datasets Four DEM datasets for Richland County (tif format) Result
GIS Copilot Demo: School sidewalk length analysisSpatial task For each school in Columbia, calculate the length of sidewalks within 500 meters. Datasets Columbia sidewalk Columbia schools Result
GIS Copilot Demo: Geometry calculation and data extractionSpatial task Generate centroids for each building feature, extract the elevation values from the DEM at each building centroid, and export the elevation data to draw a histogram with 50 bins using Seaborn. Datasets Penn State University DEM Penn State University Buildings Result