Select Page

GIS Copilot Demonstrations

  1. GIS Copilot Demo (V1.0): Multiple vector operations
    Task 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…
  2. GIS Copilot Demo (V1.0): Random elevation and nearest neighbours
    Task 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…
  3. GIS Copilot Demo (V1.0): Elevation for the bike route
    Task 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…
  4. GIS Copilot Demo: Statistical analysis and HTML report
    Task 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…
  5. GIS Copilot Demo: Normalized Difference Vegetation Index (NDVI) generation with remote sensing images
    Spatial task Generate the Normalized Difference Vegetation Index (NDVI) of Akure from these satellite imageries. Datasets Landsat 8 imageries Akure_boundary Result
  6. GIS Copilot Demo: Terrain analysis with DEM data
    Spatial 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
  7. GIS Copilot Demo: School sidewalk length analysis
    Spatial task For each school in Columbia, calculate the length of sidewalks within 500 meters. Datasets Columbia sidewalk Columbia schools Result
  8. GIS Copilot Demo: Geometry calculation and data extraction
    Spatial 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