by jhines » Mon Nov 26, 2007 8:59 pm
I haven't heard the rumor, but it can be done if you know how to create text files and run programs from the command window. Each 'source' would have an input file (whatever.pao) containing the presence/absence data, along with the covariates. The model to be run is defined by another file containing the design matrices (whatever.dm). If all sources have the same number of surveys, you could use the same design matrix file. Otherwise, the design matrix for detection probabilities will have a different number of rows. To run a model in batch mode for, say 3 sources (source1,source2,source3), you could create a batch file containing the following:
@echo off
presence i=source1.pao l=source1.out j=source1.dm model=100 name="psi(xyz),p(abc)"
presence i=source2.pao l=source3.out j=source2.dm model=100 name="psi(xyz),p(abc)"
presence i=source3.pao l=source3.out j=source3.dm model=100 name="psi(xyz),p(abc)"
The model=100 tells PRESENCE that you want a single-season custom model. Model=200 is multi-season. You can see the command options when you run the non-interactive version and look at the black command window after running a model.
If you have a need for anything more complicaated that this, I'd be glad to help.
Jim