Surveying

Pace and Compass traverse survey REport

Deliverable for GISC9314 - Surveying and Geospatial Data Development, Niagara College


ArcGIS

Model Builder

Deliverable for GISC9308 - Spatial Analysis and Spatial Statistics, Niagara College

 

Spatial Analyst Extension

Deliverable for GISC9308 - Spatial Analysis and Spatial Statistics, Niagara College

 

spatial Analyst and arcscene Extensions

Deliverable for GISC9312 - Geospatial Models in Visualization, Niagara College

 

Example Map Book

Deliverable for GIS-GM Thesis Project - Analyzing Soil Loss in the Holland Marsh


AutoCad

Source Drawings, Queries, and reports

Deliverable for GISC9305 - Computer Aided Design and Geographic Information Systems


Programming

Javascript and google maps api

Deliverable for GISC9313 - Internet GIS Applications, Niagara College

//Declare Variables
var studyArea = new google.maps.LatLng(43.152616, -79.165502);
var Type = google.maps.MapTypeId.HYBRID;
var map;
var gislab = new google.maps.LatLng(43.152616, -79.165502);
var directionDisplay = new google.maps.DirectionsRenderer();
var directionsService = new google.maps.DirectionsService();
var iconBase = 'https://maps.google.com/mapfiles/kml/shapes/';

//Load Map
function initialize() { 
    var mapProp = {
        center:studyArea,
        zoom: 18,
        mapTypeId:Type,
        scaleControl: true
    };
    map = new google.maps.Map(document.getElementById("map_canvas"), mapProp);
}
google.maps.event.addDomListener(window, 'load', initialize);


//Add Point
function addPnt() {
        marker2 = new google.maps.Marker({
        position:gislab,
        icon: iconBase + 'schools_maps.png',
        title: 'Niagara College - GIS Lab',
        animation:google.maps.Animation.DROP
    });
        marker2.setMap(map);
        
        map.setZoom(18);
        map.setCenter(gislab);
    }

//Add Route 
var directionsDisplay;
 var directionsService= new google.maps.DirectionsService(); 
 function addRoute() { 
    directionsDisplay = new google.maps.DirectionsRenderer();
    directionsDisplay.setMap(map);
    var request = { origin: new google.maps.LatLng(43.152616, -79.165502), 
    destination: new google.maps.LatLng(43.117632, -79.247713), 
    travelMode: google.maps.DirectionsTravelMode.DRIVING
    }; 
    directionsService.route(request, function(response, status) { if (status == google.maps.DirectionsStatus.OK) { directionsDisplay.setDirections(response);
    } 
    });
}

//Add Study Area
function addPoly() {
var layer = new google.maps.KmlLayer({
  driveFileId: "0B4GFupyF8UTYS0RQejZLWWJIbkU"
  });
  layer.setMap(map);
  }