Steve,
Not sure if this will work but you could use the raster package from R to reclassify all the negative or zero values to NA.
library(raster)
set your working directory
setwd("D:\\maxent\\bias")
you should have your bias layer as an ascii
biaslayer<-raster("biaslayer.asc")
use reclassify function
biaslayer1 <- reclassify(biaslayer , c(-Inf,0, NA))
this converts any bias figure from –infinite to zero to NA
convert biaslayer1 bask to an ascii
writeRaster(biaslayer1, " biaslayer1.asc", format="ascii",overwrite=TRUE)
load biaslayer1.asc as your bias layer into Maxent
tell me if it works, a quick fix if it does.
Kevin
--
You received this message because you are subscribed to the Google Groups "Maxent" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
maxent+un...@googlegroups.com.
To post to this group, send email to max...@googlegroups.com.
Visit this group at https://groups.google.com/group/maxent.
For more options, visit https://groups.google.com/d/optout.
Don’t think there would be any issues, you could try adding the constant that was also suggested and compare the results.