GIS
GPS
Downloading data from Garmin Etrex Vista
- Download data from Etrex using EasyGPS (Windows XP only)
- Set-up note: To use the USB port select the "C" model (Garmin Etrex Legend C)
- Or, download data from Etrex using Garmin RoadTrip (Mac)
- Convert gpx to txt: GPS visualizer
Resources
- Cook County GIS parcel mapping
- geodata.gov
- National Atlas
- http://natural.uchicago.edu/naturalsystems/dunes/
- Indiana University GIS Data Service
- Green Infrastructure Vision
# Degree-minutes-seconds (DMS) to decimal degrees (DD)
d <- read.table("/Users/geoff/Desktop/data/fermi_stake_coord.txt",sep=c("\t","\'"),quote="",stringsAsFactors=F)
dms_to_dd <- function(x) {sum(as.numeric(sub("\"","",unlist(strsplit(unlist(strsplit(x,"\' ")),"\xa1 "))))/c(1,60,3600))}
for(i in 1:nrow(d)) {d[i,2] <- dms_to_dd(d[i,2]); d[i,3] <- dms_to_dd(d[i,3])}
d <- d[-1,] # remove header row
names(d) <- c("stake","lat", "long")
d$long <- -as.numeric(d$long) # Longitudes are West (-)
write.table(d, "/Users/geoff/Desktop/data/fermi_stake_coord_DD.txt", sep="\t", quote=F, row.names=F)
Inserting Google Maps for a GPS coordinate
View Larger Map

