I had some very basic geocode working for plotting a tif file that has recently stopped working.
It’s very basic, from here: https://www.acgeospatial.co.uk/julia-prt3/
using ArchGDAL, Plots, Colors, Images, GeoData
const AG = ArchGDAL
url = "E:\\Riverina\\Riverina-Cropping2.tif"
LLS = AG.readraster(url)
gt = ArchGDAL.getgeotransform(LLS)
p = ArchGDAL.getproj(LLS)
n_rasters = (ArchGDAL.nraster(LLS))
width = ArchGDAL.width(LLS)
Each line runs fine until I get to the last line which produces an error:
ERROR: cannot assign a value to variable Graphics.width from module Main
Code worked fine previous to a recent update… Anyone have a clue why???