GeoGraph provides a tool for analysing habitat fragmentation and related problems in landscape ecology. GeoGraph builds a geospatially referenced graph from land cover or field survey data and enables graph-based landscape ecology analysis as well as interactive visualizations.
All datasets appear to use GeoTiff format, so recommend we start with 1. since it's on CEDA. Then we can write some preliminary code to make a graph from the data for the Cambridge area as a first test, before scaling up or moving to one of the other datasets. Consider using pylandstats as a convenient way to process GeoTiff data.
Note: pylandstats does not lazily load large .tif files, so we may want to use rasterio for the full project.
All datasets appear to use GeoTiff format, so recommend we start with 1. since it's on CEDA. Then we can write some preliminary code to make a graph from the data for the Cambridge area as a first test, before scaling up or moving to one of the other datasets. Consider using
pylandstats
as a convenient way to process GeoTiff data.Note:
pylandstats
does not lazily load large .tif files, so we may want to userasterio
for the full project.