<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Dear Tom (and other list members),<br>
<br>
First of all, sorry not replying earlier to you Tomislav but I didn't
receive your message (certainly because of a local serveur problem).<br>
For the moment, the method described by Mathieu applied to our dataset
seems coherent with what we know about changes in the habitat structure
of farmlands in western France and how this could have had affected its
suitability for our study species. I have donwloaded the MODIS tiles
for all years between 2000 and 2008
on our study area and will rerun an ENFA with the niche's species of
2000 to check whether there is a trend in Habitat Suitability Index
between years.<br>
However, we do not measure directly what is important for Bustards
(perennial crops) but use 14 "16-days NDVI" images to account for
between years variability in landscape structure. This is not really
satisfying since we are wasting a lot of the information of MODIS given
that the ENFA does not account for the temporal spectral signature of
each pixel along those 14 images (and which partially indicates what
type of crop the pixel covers).<br>
So we are also trying to get to crop type directly using a
teledetection software calibrated with GIS data of rotation of crops on
a known area. <br>
<br>
I will let you knwo whether this gave us something fully consistent
with the ENFA.<br>
<br>
Best regards.<br>
<br>
Alex<br>
<br>
<br>
Tomislav Hengl a &eacute;crit&nbsp;:
<blockquote
 cite="mid:58798.86.80.191.132.1252910285.squirrel@spatial-analyst.net"
 type="cite">
  <pre wrap="">Dear Mathieu,

Thanks for the clarification. I have underestimated the complexity, but I
admit - habitat analysis is not really 'my cup of tee' (maybe this
question was more suited for the Environmentrics R-sig).

As least I was correct about the whole concept - it is doable  ;)

I would be interested to learn from Alexandre how did the prediction of
future habitat work and does it satisfies their objectives.

T. Hengl
<a class="moz-txt-link-freetext" href="http://home.medewerker.uva.nl/t.hengl/">http://home.medewerker.uva.nl/t.hengl/</a>


  </pre>
  <blockquote type="cite">
    <pre wrap="">Dear all,

The answer Tom gave was actually incorrect. Let me first explain why,
and then give a solution to the problem.

The so-called predictions of the ENFA (function 'predict.enfa') are
based on the row coordinates ($li) and the vector of presence ($pr).
>From the row coordinates, the function computes Mahalanobis distances
from the center of the niche to every pixel (row), given the niche
covariance structure. So that if you copy the $li of the first ENFA
object to the second, considering that the vector of presence $pr
remains the same, then you will have exactly the same predictions, which
is not exactly what we want.

Now, let's try to give a solution to this problem. The row coordinates
gives you the coordinates of every pixel projected into the new space
created by the ENFA. You can compute them by hand by multiplying the
(scaled) table of environmental variables with the columns coordinates.
For example, following the example of the function 'enfa':

## We load the data
data(lynxjura)
map &lt;- lynxjura$map
tmp &lt;- lynxjura$locs[,4]!="D"
locs &lt;- lynxjura$locs[tmp, c("X","Y")]
map[,4] &lt;- sqrt(map[,4])

## We perform the ENFA
dataenfa1 &lt;- data2enfa(map, locs)
pc &lt;- dudi.pca(dataenfa1$tab, scannf = FALSE)
(enfa1 &lt;- enfa(pc, dataenfa1$pr, scannf = FALSE))

## We compute the row coordinates by hand and check that this is
## correct
bla &lt;- as.matrix(enfa1$tab) %*% as.matrix(enfa1$co)
all.equal(bla, as.matrix(enfa1$li))

This means that we can then reproject any new environmental variable
into the space created by the ENFA. Let's say that a second set of
environmental maps is called 'map2'. It can be then projected as follows:

li2 &lt;- as.matrix(scale(kasc2df(map2)$tab)) %*% as.matrix(enfa1$co)

Note that:
1) the table must be scaled, as is the $tab component of an ENFA object
("modified array").
2) for the sake of simplicity, I used here the function 'scale', which
used a N-1 denominator. In the ENFA example, a PCA ('dudi.pca') is ran
first on the data, before we use the scale table. In the 'dudi.pca'
function, the denominator is N, so that it might give slightly different
results (negligible for large N).

Then, to "predict", you must use an adapted 'predict.enfa' function,
with a 'new' argument in which we feed the new maps:

predict.enfa &lt;- function (object, index, attr, nf, new, ...)
{
    if (!inherits(object, "enfa"))
        stop("should be an object of class \"enfa\"")
    warning("the enfa is not mathematically optimal for prediction:\n
please consider the madifa instead")
    if ((missing(nf)) || (nf &gt; object$nf))
        nf &lt;- object$nf
    Zli &lt;- object$li[, 1:(nf + 1)]
    f1 &lt;- function(x) rep(x, object$pr)
    Sli &lt;- apply(Zli, 2, f1)
    m &lt;- apply(Sli, 2, mean)
    cov &lt;- t(as.matrix(Sli)) %*% as.matrix(Sli)/nrow(Sli)
    if (!missing("new"))
        Zli &lt;- as.matrix(dudi.pca(kasc2df(new)$tab, scannf = FALSE,
               nf = 1)$tab) %*% as.matrix(object$co)
    maha &lt;- mahalanobis(Zli, center = m, cov = cov)
    map &lt;- getkasc(df2kasc(data.frame(toto = maha, tutu = maha),
        index, attr), "toto")
    return(invisible(map))
}

And this should work like this:

pred2 &lt;- predict(enfa1, dataenfa1$index, dataenfa1$attr, new = map2)

Note that the two maps have here the same attributes. It still works if
it's not the case, simply by adjusting the index and attr in the predict
call (given by a kasc2df on map2).

Hope this helps,
Mathieu.



Tomislav Hengl a &eacute;crit :
    </pre>
    <blockquote type="cite">
      <pre wrap="">Dear Alexandre,

I think that this should be doable.

Once you run the ENFA to estimate the habitat model, copy the values of
new rasters (future habitat)
and replace the original values in the "" object. Then simply re-run the
predict.enfa method e.g.:

# prepare the dataset for ENFA:
      </pre>
      <blockquote type="cite">
        <pre wrap="">beidata &lt;- data2enfa(as.kasc(list(dem=import.asc("dem.asc"),
grad=import.asc("grad.asc"),
        </pre>
      </blockquote>
      <pre wrap="">twi=import.asc("twi.asc"), achan=import.asc("achan.asc"))),
bei.sub.pnt@coords)
# run ENFA:
      </pre>
      <blockquote type="cite">
        <pre wrap="">enfa.bei &lt;- enfa(dudi.pca(beidata$tab, scannf=FALSE), beidata$pr,
scannf=FALSE, nf=2)
        </pre>
      </blockquote>
      <pre wrap=""># same area, new environmental conditions:
      </pre>
      <blockquote type="cite">
        <pre wrap="">beidata.new &lt;- data2enfa(as.kasc(list(dem=import.asc("dem_new.asc"),
        </pre>
      </blockquote>
      <pre wrap="">grad=import.asc("grad_new.asc"), twi=import.asc("twi_new.asc"),
achan=import.asc("achan_new.asc"))),
bei.sub.pnt@coords)  # needs to have the same mask!
      </pre>
      <blockquote type="cite">
        <pre wrap="">enfa.bei.new &lt;- enfa(dudi.pca(beidata.new$tab, scannf=FALSE),
beidata.new$pr, scannf=FALSE, nf=2)
        </pre>
      </blockquote>
      <pre wrap=""># copy the model parameters fitted previously:
      </pre>
      <blockquote type="cite">
        <pre wrap="">enfa.bei.new$m &lt;- enfa.bei$m
enfa.bei.new$s &lt;- enfa.bei$s
enfa.bei.new$lw &lt;- enfa.bei$lw
enfa.bei.new$li &lt;- enfa.bei$li
enfa.bei.new$co &lt;- enfa.bei$co
enfa.bei.new$mar &lt;- enfa.bei$mar
bei.dist.new &lt;- predict(enfa.bei.new, beidata.new$index,
beidata.new$attr)
        </pre>
      </blockquote>
      <pre wrap="">...something like this (I am not really sure which parameters do you
have to copy, but the $tab
data.frame certainly needs to be replaced with new predictors).

Let me know if it works.

cheers,

T. Hengl
<a class="moz-txt-link-freetext" href="http://spatial-analyst.net/wiki/index.php?title=Species_Distribution_Modelling">http://spatial-analyst.net/wiki/index.php?title=Species_Distribution_Modelling</a>


      </pre>
      <blockquote type="cite">
        <pre wrap="">-----Original Message-----
From: <a class="moz-txt-link-abbreviated" href="mailto:r-sig-geo-bounces@stat.math.ethz.ch">r-sig-geo-bounces@stat.math.ethz.ch</a>
[<a class="moz-txt-link-freetext" href="mailto:r-sig-geo-bounces@stat.math.ethz.ch">mailto:r-sig-geo-bounces@stat.math.ethz.ch</a>] On Behalf
Of Alexandre VILLERS
Sent: Monday, September 07, 2009 9:31 AM
To: Aide R SIG GEO; <a class="moz-txt-link-abbreviated" href="mailto:r-sig-ecology@r-project.org">r-sig-ecology@r-project.org</a>
Subject: [R-sig-Geo] Producing ENFA derived suitability maps with
adehabitat

Dear list(s) 'members,

I have a dataset representing the position of a species over a large
region for 3 different years (2000, 2004 and 2008) and seven
ecogeographical variables. Given that the study takes place on an
agricultural region, the landscape changes every year at fine scale and
there is a long term trend in crops sowed, leading me to account for
between years variability.
I would like to use the niche determined by the landscape and location
of birds in 2000 and then, appply this niche over the landscape in 2004
and 2008 (this would, I believe, give me a first answer on whether
changes in birds' location are due to a decrease in habitat suitability
or birds).
I have already computed ENFA with adehabitat (using the doc provided
with the package "adehabitat" and the <a class="moz-txt-link-abbreviated" href="http://www.spatial-analyst.net">www.spatial-analyst.net</a> of T.
Hengl) but I don't see how exactly using the result of an ENFA on a
"new" landscape...

Any link or help would be welcome.

Alex

--
Alexandre Villers
PhD Student
Team "Biodiversity"
Centre d'Etudes Biologiques de Chiz&eacute;-CNRS UPR1934
79360 Beauvoir sur Niort

Phone +33 (0)5 49 09 96 13
Fax   +33 (0)5 49 09 65 26
        </pre>
      </blockquote>
    </blockquote>
    <pre wrap="">
--

~$ whoami
Mathieu Basille, PhD

~$ locate
Laboratoire de Biom&eacute;trie et Biologie &Eacute;volutive
Universit&eacute; Claude Bernard Lyon 1 - France
<a class="moz-txt-link-freetext" href="http://lbbe.univ-lyon1.fr/">http://lbbe.univ-lyon1.fr/</a>

~$ info
<a class="moz-txt-link-freetext" href="http://ase-research.org/basille">http://ase-research.org/basille</a>

~$ fortune
``If you can't win by reason, go for volume.''
Calvin, by Bill Watterson.

    </pre>
  </blockquote>
  <pre wrap=""><!---->
_______________________________________________
R-sig-Geo mailing list
<a class="moz-txt-link-abbreviated" href="mailto:R-sig-Geo@stat.math.ethz.ch">R-sig-Geo@stat.math.ethz.ch</a>
<a class="moz-txt-link-freetext" href="https://stat.ethz.ch/mailman/listinfo/r-sig-geo">https://stat.ethz.ch/mailman/listinfo/r-sig-geo</a>


__________ Information from ESET Mail Security, version of virus signature database 4422 (20090913) __________

The message was checked by ESET Mail Security.
<a class="moz-txt-link-freetext" href="http://www.eset.com">http://www.eset.com</a>





  </pre>
</blockquote>
<br>
<pre class="moz-signature" cols="72">-- 
Alexandre Villers
PhD Student
Team "Biodiversity"
Centre d'Etudes Biologiques de Chiz&eacute;-CNRS UPR1934
79360 Beauvoir sur Niort

Phone +33 (0)5 49 09 96 13
Fax   +33 (0)5 49 09 65 26</pre>
<br>
<br>
__________ Information from ESET Mail Security, version of virus signature database 4422 (20090913) __________<br>
<br>
The message was checked by ESET Mail Security.<br>
<A HREF="http://www.eset.com">http://www.eset.com</A><br>


</body>
</html>