You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(12) |
Sep
(19) |
Oct
(23) |
Nov
(10) |
Dec
(1) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
|
Feb
|
Mar
(4) |
Apr
(2) |
May
|
Jun
(5) |
Jul
(2) |
Aug
(5) |
Sep
(7) |
Oct
(3) |
Nov
|
Dec
|
| 2007 |
Jan
(3) |
Feb
(4) |
Mar
(2) |
Apr
(5) |
May
|
Jun
(3) |
Jul
(1) |
Aug
(10) |
Sep
(1) |
Oct
(1) |
Nov
|
Dec
(2) |
| 2008 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(1) |
Jul
(5) |
Aug
|
Sep
(13) |
Oct
(8) |
Nov
(26) |
Dec
(31) |
| 2009 |
Jan
(14) |
Feb
(14) |
Mar
(13) |
Apr
(21) |
May
(37) |
Jun
(26) |
Jul
(23) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
(1) |
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Elnaz I. <e.i...@uq...> - 2015-03-17 00:16:07
|
Hello
I'm contacting you regarding RepastPy, Agent Analyst package. I've encountered to a compiler error which I really don't know how could I solve it. Because the language is not Java or Python completely and I'm confused.
I defined an ArrayList and add some Double values to it. But when I'm going to compare these values, there is this error:
Compiler Error: Cannot compare java.lang.Double and double
if (mindiSS<1000.0):
The code is:
def Double discalc():
distancelist = ArrayList()
for customer as Customer in self.model.customers:
difY = customer.the_geom.y - point.y
difX = customer.the_geom.x - point.x
diSSS = Math.sqrt((difX*difX) + (difY*difY))
diSS = double(diSSS)
distancelist.add(Double(diSS))
mindiSS = Collections.min(distancelist)
if (mindiSS <1000.0):
print "OK"
Also, I have another warning error that I don't know how could I solve it
WARNING: Field Length for y set to 19 Preserving length, but should be set to Max of 18 for dbase III specification.
________________________________
Elnaz(Elli) Irannezhad
Ph.D. student of Transport
Mob: +61 432 712 822 | Email: e.i...@uq...<mailto:h....@uq...>
School of Civil Engineering
Advanced Engineering Building (49), Room 421,
University of Queensland,
ST. LUCIA QLD 4072| Australia
|
|
From: Jeremy R. <lak...@gm...> - 2014-02-12 03:59:55
|
Hello everyone,
I am currently using the Agent Analyst adaptation of Repast within the
ArcGIS framework.
The model I've built is capable of doing what I'd like (ie. randomly
generating biologically-sensible migration pathways in order to find
NDVI-maximized routes). However, in the loop I'm doing where I make an
ArrayList for each randomization ('Positions'), and then iterate this into
another, sorted ArrayList ('Movements', I find that after about 25-35k
loops (ie. TickCount) the Java program crashes.
Upon inspection it looks like the RAM used by Java during this process
rapidly grows to take over all available memory.
If you are willing to provide some input into what might be going on that
is overloading the RAM (e.g., retained ArrayLists in the cache), I would be
very grateful.
Here is the XML for the ABM I've created:
<?xml version="1.0"?>
<!-- Evolver Model Specification File -->
<RePastEvolver:EvolverModelSpec xmlns:RePastEvolver="
http://src.uchicago.edu/simbuilder/">
<RePastEvolver:EvolverProject ProjectDirectory="C:\ESRIPress\AgentAnalyst"
PackageName="default_package" ProjectName="Environment" ClassPath=""
consoleErr="false" consoleOut="true" >
<Description>
<![CDATA[
]]>
</Description>
<RePastEvolver:EvolverModel ModelName="GISModel" DisplayName="Migration
Model" Class="class
uchicago.src.simbuilder.beans.gis.DefaultGISModelProducer"
gisPackage="ArcGIS" >
<RePastEvolver:action name="initAgents" sigReadOnly="true" retType="void"
imports="cern.jet.random.engine.MersenneTwister java.util.Collection"
paramNames="">
<![CDATA[
def initAgents():
self.loadRaster()
for pabu as PABU in self.agents:
pabu.setMovements(ArrayList())
]]>
</RePastEvolver:action>
<RePastEvolver:action name="updateDisplay" sigReadOnly="true"
retType="void" imports="" paramNames="">
<![CDATA[
def updateDisplay():
print "Updating display"
self.updateGISDisplay()
]]>
</RePastEvolver:action>
<RePastEvolver:action name="writeAgents" sigReadOnly="true"
retType="void" imports="" paramNames="">
<![CDATA[
def writeAgents():
print "Writing agents"
filename = ("C:/ESRIPress/AgentAnalyst/RossSims/PABUmigration/pabu.shp")
#filename =
("C:/ESRIPress/AgentAnalyst/RossSims/PABUmigration/pabu"+self.Animal+".shp")
self.writeAgents(self.agents, filename)
]]>
</RePastEvolver:action>
<RePastEvolver:action name="loadRaster" sigReadOnly="false"
retType="void" imports="" paramNames="">
<![CDATA[
def loadRaster():
#print "Loading Rasters..."
wk = self.iterationWeek
eW = self.endWeek
while wk <= eW:
rw = str(wk)
self.rasterName = "NDVI"+rw+".tif"
rasterEnv = ESRIRaster(self.rasterDir, self.rasterName)
self.addRaster(self.rasterName, rasterEnv)
wk=wk+1
print "NDVI rasters loaded"
]]>
</RePastEvolver:action>
<RePastEvolver:action name="trackPABU" sigReadOnly="false" retType="void"
imports="" paramNames="">
<![CDATA[
def trackPABU():
track2 = self.getRaster(self.getTickCount()+"track")
for pabu as PABU in self.agents:
point = pabu.the_geom.coordinate
pixelPoint = track2.mapToPixel(point.x, point.y, 0)
track2.writePixelValue(4, int(pixelPoint.x), int(pixelPoint.y), 0)
print "Tracked"
]]>
</RePastEvolver:action>
<RePastEvolver:action name="loadTracker" sigReadOnly="false"
retType="void" imports="" paramNames="">
<![CDATA[
def loadTracker():
# add the 'tracking' raster
stopRaster = ESRIRaster(self.rasterDir, self.trackingTemplate) ##
assign the Raster with the name "tracking" to the variable raster
tc = self.getTickCount()
track = tc+"track"
stopRaster.saveAs(self.outputDir, track) ## save a copy of that
raster under the new name "[animal]tracking"
newTrack = ESRIRaster(self.outputDir, track)
self.addRaster(track, newTrack)
print "Tracking raster loaded"
]]>
</RePastEvolver:action>
<RePastEvolver:parameter name="rasterDir" type="java.lang.String"
defaultValue=""C:\ESRIPress\AgentAnalyst\RossSims\PABUmigration\NDVI""
probe="true" accessible="true" />
<RePastEvolver:parameter name="minNDVI" type="double" defaultValue="-998"
probe="true" accessible="true" />
<RePastEvolver:parameter name="endWeek" type="int" defaultValue="51"
probe="true" accessible="true" />
<RePastEvolver:parameter name="startWeek" type="int" defaultValue="31"
probe="true" accessible="true" />
<RePastEvolver:parameter name="rasterName" type="java.lang.String"
defaultValue="" probe="false" accessible="true" />
<RePastEvolver:parameter name="newX" type="double" defaultValue=""
probe="false" accessible="true" />
<RePastEvolver:parameter name="newY" type="double" defaultValue=""
probe="false" accessible="true" />
<RePastEvolver:parameter name="migAlpha" type="double" defaultValue="25.00"
probe="true" accessible="true" />
<RePastEvolver:parameter name="migLambda" type="double"
defaultValue="10.00" probe="true" accessible="true" />
<RePastEvolver:parameter name="FreqMig" type="int" defaultValue="50"
probe="true" accessible="true" />
<RePastEvolver:parameter name="isSuitable" type="boolean"
defaultValue="false" probe="false" accessible="true" />
<RePastEvolver:parameter name="migkmBase" type="int" defaultValue="100"
probe="true" accessible="true" />
<RePastEvolver:parameter name="lockmBase" type="int" defaultValue="1"
probe="true" accessible="true" />
<RePastEvolver:parameter name="DirectionCutoff" type="int"
defaultValue="45" probe="false" accessible="true" />
<RePastEvolver:parameter name="locAlpha" type="double" defaultValue="20.00"
probe="true" accessible="true" />
<RePastEvolver:parameter name="locLambda" type="double" defaultValue="2.00"
probe="true" accessible="true" />
<RePastEvolver:parameter name="startX" type="double"
defaultValue="1109859.485817402" probe="false" accessible="true" />
<RePastEvolver:parameter name="startY" type="double"
defaultValue="3715250.0327692577" probe="false" accessible="true" />
<RePastEvolver:parameter name="trackingTemplate" type="java.lang.String"
defaultValue=""tracking.tif"" probe="false" accessible="true" />
<RePastEvolver:parameter name="outputDir" type="java.lang.String"
defaultValue=""C:\ESRIPress\AgentAnalyst\RossSims\PABUmigration\stop""
probe="true" accessible="true" />
<RePastEvolver:parameter name="SimsToKeep" type="int" defaultValue="100"
probe="true" accessible="true" />
<RePastEvolver:parameter name="iterationWeek" type="int" defaultValue=""
probe="false" accessible="true" />
<RePastEvolver:schedule order="0" />
<RePastEvolver:schedule order="1" />
<RePastEvolver:schedule_item action="initAgents" tick="0.0" type="3"
last="false" target="GISModel" id="1"/>
<RePastEvolver:EvolverBean type="Compileable" class="class
uchicago.src.simbuilder.beans.gis.VectorAgentProducer" name="PABU"
groupName="agents">
<VectorDataSource
shapefile="C:\ESRIPress\AgentAnalyst\RossSims\PABUmigration\pabu.shp"
displayField="Id" gisPackage="ArcGIS">
<VectorDataSourceDisplayValue field="default value" color="-65536"
isDefault="true" thickness="1" />
</VectorDataSource>
<RePastEvolver:action name="step" sigReadOnly="true" retType="void"
imports="java.util.Iterator java.util.* java.io.FileWriter
java.io.BufferedWriter java.io.File java.io.IOException" paramNames="">
<![CDATA[
def step():
#self.model.loadTracker()
tc = self.model.getTickCount()
self.PABUid = int(tc)
self.totalNDVI = 1000000.0
point = self.the_geom.coordinate
point.x = self.model.startX
point.y = self.model.startY
self.setPositions(ArrayList())
positions = self.getPositions()
positions.add("PABU"+self.PABUid)
self.model.iterationWeek = self.model.startWeek
wk = self.model.iterationWeek
eW = self.model.endWeek
while wk <= eW:
self.rotate()
self.distance()
#movement output from the 'distance' action is evaluated to see if the
agent would
#move into an inhospitable enviroment (eg. ocean)
self.propMove()
#print "CheckingNDVI"
nX = self.model.newX
nY = self.model.newY
self.model.rasterName = "NDVI"+wk+".tif"
rasterName = self.model.rasterName
raster = self.model.getRaster(rasterName)
val = raster.getPixelValueAtMap(nX,nY,0)
#print "NDVI value: ",val
self.PixelValue = val
if (val > self.model.minNDVI):
self.model.isSuitable = true
else:
self.model.isSuitable = false
self.calcMove()
positions.add("Week: "+wk)
point = self.the_geom.coordinate
positions.add(Double(point.x))
positions.add(Double(point.y))
positions.add(Double(self.PixelValue))
self.totalNDVI = self.totalNDVI+self.PixelValue
#self.model.trackPABU()
wk = wk+1
self.model.iterationWeek = wk
#self.model.writeAgents()
#self.model.updateDisplay()
positions.add(0, Double(self.totalNDVI))
#print positions
movements = self.getMovements()
iterator = movements.listIterator()
iterator.add(str(positions))
#print movements
Collections.sort(movements)
if tc>self.model.SimsToKeep:
movements.remove(0)
if tc % 5000 == 0:
for strAgent in movements:
file = File(self.model.outputDir+tc+"output.txt")
fw = FileWriter(file.getAbsoluteFile(),true)
bw = BufferedWriter(fw)
bw.newLine()
bw.write(str(strAgent))
bw.close()
#print strAgent
print tc
#self.model.pause()
#self.Movements = movements
#movements.add(positions)
#print movements
#anim = self.model.Animal
#self.model.Animal = anim+1
#print "Ready for run"+self.model.Animal
]]>
</RePastEvolver:action>
<RePastEvolver:action name="rotate" sigReadOnly="false" retType="void"
imports="" paramNames="">
<![CDATA[
def rotate():
dirRange = self.model.DirectionCutoff
Random.createUniform()
degrees = Random.uniform.nextIntFromTo(dirRange, 359-dirRange)
self.setBearing(degrees)
#print "Rotation set to:" + degrees
]]>
</RePastEvolver:action>
<RePastEvolver:action name="distance" sigReadOnly="false" retType="void"
imports="uchicago.src.sim.util.Random" paramNames="">
<![CDATA[
def distance():
#print "SelectingDistance"
#need to randomly select from distribution of potential movements, local
and migratory
#lognormal distributions of Migration (Mig) and Local (Loc) movements
Ma = self.model.migAlpha
Ml = self.model.migLambda
La = self.model.locAlpha
Ll = self.model.locLambda
#probability of migrating in any given iteration
Fmig = self.model.FreqMig
Random.createUniform()
rnd = Random.uniform.nextIntFromTo(0, 100)
if (rnd <= Fmig):
Random.createGamma(Ma, Ml)
gammaDist = Random.gamma.nextDouble()
self.DistTraveled = gammaDist*1000*self.model.migkmBase
#print "Migration of " + self.DistTraveled
else:
Random.createGamma(La, Ll)
gammaDist = Random.gamma.nextDouble()
self.DistTraveled = gammaDist*1000*self.model.lockmBase
#print "Local movement of " + self.DistTraveled
]]>
</RePastEvolver:action>
<RePastEvolver:action name="reseek" sigReadOnly="false" retType="void"
imports="" paramNames="">
<![CDATA[
def reseek():
distance = self.DistTraveled
if distance>10000.0:
distance = distance - 10000.0
self.DistTraveled = distance
else:
self.rotate()
self.distance()
#movement output from the 'distance' action is evaluated to see if the
agent would
#move into an inhospitable enviroment (eg. ocean)
self.propMove()
#print "CheckingNDVI"
nX = self.model.newX
nY = self.model.newY
rasterName = self.model.rasterName
raster = self.model.getRaster(rasterName)
val = raster.getPixelValueAtMap(nX,nY,0)
if (val > self.model.minNDVI):
self.model.isSuitable = true
#print "Loc Suitable ", rasterName,nX, nY,
raster.getPixelValueAtMap(nX, nY, 0)
self.PixelValue = val
else:
self.model.isSuitable = false
self.calcMove()
]]>
</RePastEvolver:action>
<RePastEvolver:action name="calcMove" sigReadOnly="false" retType="void"
imports="" paramNames="">
<![CDATA[
def calcMove():
#print "EvaluatingMove"
if (self.model.isSuitable):
#print "Suitable"
point = self.the_geom.coordinate
point.y = self.model.newY
point.x = self.model.newX
else:
#print "Retrying"
self.reseek()
]]>
</RePastEvolver:action>
<RePastEvolver:action name="propMove" sigReadOnly="false" retType="void"
imports="" paramNames="">
<![CDATA[
def propMove():
dist = self.DistTraveled
#print "EstimatingProposedDestination"
p = self.the_geom.coordinate
curX = p.x
curY = p.y
#print "Current X: ",curX," Current Y:",curY
aRad = Math.toRadians(self.Bearing)
self.model.newY = curY + dist*(Math.cos(aRad))
self.model.newX = curX + dist*(Math.sin(aRad))
#print "Proposed destination = X: "+self.model.newX+", Y:"+self.model.newY
]]>
</RePastEvolver:action>
<RePastEvolver:parameter name="Bearing" type="double" defaultValue="0"
probe="false" accessible="true" />
<RePastEvolver:parameter name="DirectionRange" type="int" defaultValue="45"
probe="false" accessible="true" />
<RePastEvolver:parameter name="iterations" type="int" defaultValue="0"
probe="false" accessible="true" />
<RePastEvolver:parameter name="DistTraveled" type="double" defaultValue=""
probe="false" accessible="true" />
<RePastEvolver:parameter name="PABUid" type="int" defaultValue=""
probe="false" accessible="true" />
<RePastEvolver:parameter name="Positions" type="java.util.ArrayList"
defaultValue="" probe="false" accessible="true" />
<RePastEvolver:parameter name="Movements" type="java.util.ArrayList"
defaultValue="" probe="false" accessible="true" />
<RePastEvolver:parameter name="Stack" type="java.util.Stack"
defaultValue="" probe="false" accessible="true" />
<RePastEvolver:parameter name="PixelValue" type="double" defaultValue=""
probe="false" accessible="true" />
<RePastEvolver:parameter name="totalNDVI" type="double"
defaultValue="10000000.0" probe="false" accessible="true" />
<RePastEvolver:schedule_item action="step" tick="1.0" type="1" last="false"
target="for all PABU" id="0"/>
</RePastEvolver:EvolverBean>
</RePastEvolver:EvolverModel>
</RePastEvolver:EvolverProject>
</RePastEvolver:EvolverModelSpec>
Jeremy D. Ross
Postdoctoral Research Associate
Oklahoma Biological Survey
University of Oklahoma
111 E. Chesapeake St.
Norman, OK 73019
405-325-7053
|
|
From: Vidya S. G. <vsg...@ya...> - 2013-08-23 20:50:45
|
Hello, I am trying to simulate movement of occupants from three different floors of a building to the nearest exit on ground floor using ArcScene and am using the Agent analyst extension. The occupants is a vector shapefile and similarly I have made vector shapefiles of route to the nearest exit. The shapefile contains intersection nodes of the route. I thought of moving the occupants by programming them to move from one node to another. This I want to do for all the occupants which are in different rooms of different floor. The problem is that I don't have any idea how to achieve it. The Agent Analyst book does contain example of moving an object relative to a raster surface but mine is a vector shapefile and I don't know how to load a vector shapefile. My second problem is how to make the occupants 'aware' of the node and then move relative to these nodes. Agent analyst book does contain codes to move objects however it is not relative to another shapefile. Can I get some codes to show movement like this. Thirdly, I want to know if there is any possibility of showing the movement in ArcScene in 3D. I have tried to see movement but no success. Thanks in advance Vidya I use BullGuard to keep my computer clean. Try BullGuard for free: www.bullguard.com |
|
From: Marc P. <mar...@gm...> - 2011-03-30 15:49:46
|
Hi, I am a new comer with Agent Analyst. I added the Agent Analyst tool at the toolbox but it prompts me the following message: Error Starting RepastPy: No exception message And when I try to open the tool I read "This tool has no parameters" I am a Windows 7 user with ArcGIS 9.3 Is it because I am using the 9.3 version or because the OS...? How could I solve the problem Thank you vey much -- *Marc Pons* *Observatori de Sostenibilitat d'Andorra (OBSA)* *Observatory on Sustainability of Andorra (OBSA) *www.obsa.ad *~* mp...@ob... ------------------------------------------------------------------------------------------ *Sustainability Measuring and Modeling Lab (SUMM Lab) Universitat Politècnica de Catalunya - Technical University of Catalonia(UPC) *https://sites.google.com/site/summlab/ mar...@up... |
|
From: Phil M. <phi...@ya...> - 2010-10-22 21:22:06
|
I'm trying to take advantage of ESRI's new "idea.arcgis.com" to help drum up some support and interest in Agent Analyst. You can click on the link below, login, and "promote" the idea I put forth to make Agent Analyst an ArcToolbox standard. (I introduced a similar idea asking to "officially" integrate R into ArcToolbox) Thanks! https://c.na1.visual.force.com/apex/ideaView?id=087300000008G6pAAE |
|
From: LiangKe <for...@ho...> - 2010-02-12 16:04:09
|
Nick,
No need to respond. It's resolved. I've make a mistake. :-P
The codes are :
agent = LifeAgent()
agent.setModel(self)
self.LifeAgents.add(agent)
Liang Ke
From: for...@ho...
To: nic...@gm...
Date: Fri, 12 Feb 2010 16:43:45 +0100
CC: rep...@li...
Subject: [Agent-Analyst] create a grid agent
Nick,
The problem of remove agent is resolved. Thank you.
How to create a grid agent by NQPY code?
I've found the codes in tutorial:
for i in range(10):
agent = GenericAgent()
agent.setModel(self)
self.genericAgentGroup.add(agent)
I've tried it to create a grid agent:
agent = self.LifeAgents()
but it doesn't work. It's unsuccessful to be compiled.
Liang Ke
Hotmail:Microsoft 强大的垃圾邮件防护技术,为您提供可靠的电子邮件保障。 立即注册。
_________________________________________________________________
Hotmail:Microsoft 强大的垃圾邮件防护技术,为您提供可靠的电子邮件保障。
https://signup.live.com/signup.aspx?id=60969 |
|
From: LiangKe <for...@ho...> - 2010-02-12 15:43:55
|
Nick, The problem of remove agent is resolved. Thank you. How to create a grid agent by NQPY code? I've found the codes in tutorial: for i in range(10): agent = GenericAgent() agent.setModel(self) self.genericAgentGroup.add(agent) I've tried it to create a grid agent: agent = self.LifeAgents() but it doesn't work. It's unsuccessful to be compiled. Liang Ke _________________________________________________________________ Hotmail:强大的垃圾邮件防护技术,为您提供可靠的电子邮件保障。 https://signup.live.com/signup.aspx?id=60969 |
|
From: lklk <for...@ho...> - 2010-02-04 07:17:23
|
Hi, I don't know exactly. But do you see a window console (black) comme out when you click the toolbox AA? If there isn't, maybe sommething is wrong for the installation. You can try to open a shapefile or a projet in the ArcMap first, and then you try again for the AA tools. Ps: I'm new for Agent Analyst, but it seems there are not many people in the list to ask or answer the questions. With warm regards, Liang Ke From: pu...@uf... To: rep...@li... Date: Wed, 3 Feb 2010 15:49:58 -0500 Subject: [Agent-Analyst] Error in Agent Analyst Dear All, I downloaded (for ArcGIS 9.2) the AA (Agent Analyst) from University of Redlands website (http://www.institute.redlands.edu/AgentAnalyst/) and installed it. After that I followed all the instructions (open tool box, add a new tool box, rename it, right click on it and then go to new, add agent analysis tool). Once done with this, I clicked on AA tool. I got a new window whose title is TOOL. I clicked on help button and it is not working. I am using ArcGIS 9.3.1. Repast Symphony is also installed on my system. Am I missing something? Any help will be greatly appreciated. I am also attaching a copy of my screen shot for your view. Thanking you in advance. with warm regards, Puneet Dwivedi _________________________________________________________________ Hotmail:强大的垃圾邮件防护技术,为您提供可靠的电子邮件保障。 https://signup.live.com/signup.aspx?id=60969 |
|
From: lklk <for...@ho...> - 2010-01-20 15:46:08
|
Hi, :-) I'm a student who work on Agent Analyst for a projet GIS. As a beginner, I'm trying to create a simple Grid model " Game Of Life of Conway" . But now I don't know how to program in the agent's "action" to make an agent die. For exemple, if there is an agent who doesn't have neighbors, he will be die in next tick. Which class should I use? Thanks a lot! Liang Ke (Vincent) Student Master (Système Complexe, cognition naturelle et artificielle) Université de Paris 8 France _________________________________________________________________ MSN十年回馈,每位用户可免费获得价值25元的卡巴斯基反病毒软件2010激活码,快来领取! http://kaba.msn.com.cn/?k=1 |
|
From: Strout, N. <nat...@sp...> - 2009-06-05 19:34:29
|
I just answered a similar question but I know it is impossible to wade through the SPAM on the message board. Here was my response... --------------- Hi all, We are hoping to work with Argonne Labs to resolve this spam issue. We may end up moving this over to a new service as SourceForge's lists obviously seem to have some issues. We'll keep you posted on this. I just got confirmation that there currently is NO ArcGIS 9.3 version. I have been told that they hope to release a 9.3 version but no details as to when yet. Again, we'll post new details as we get them. I don't know if this helps, but my personal solution has been to keep a Virtual Machine with 9.2 (and Windows XP) installed on it. Microsoft has a very nice (and free!) Virtual PC program that you can download at http://www.microsoft.com/windows/virtual-pc/ Hope this answers a few questions and thanks for your patience on this! Nate -----Original Message----- From: Christian Daneke [mailto:da...@ge...] Sent: Friday, June 05, 2009 5:11 AM To: rep...@li... Subject: [Agent-Analyst] Agent Analyst arcGIS 9.3 Hi, is it possible to use AgentAnalyst within ArcGIS 9.3? The latest version on your webpage is for ArcGIS 9.2 and I dont have that available at the moment. I was wondering, whether there is any way how to make it usable or hasn't it been adapted yet? chris ------------------------------------------------------------------------------ OpenSolaris 2009.06 is a cutting edge operating system for enterprises looking to deploy the next generation of Solaris that includes the latest innovations from Sun and the OpenSource community. Download a copy and enjoy capabilities such as Networking, Storage and Virtualization. Go to: http://p.sf.net/sfu/opensolaris-get _______________________________________________ Repast-agentanalyst mailing list Rep...@li... https://lists.sourceforge.net/lists/listinfo/repast-agentanalyst |
|
From: Christian D. <da...@ge...> - 2009-06-05 14:35:28
|
Hi, is it possible to use AgentAnalyst within ArcGIS 9.3? The latest version on your webpage is for ArcGIS 9.2 and I dont have that available at the moment. I was wondering, whether there is any way how to make it usable or hasn't it been adapted yet? chris |
|
From: Strout, N. <nat...@sp...> - 2009-05-20 17:00:49
|
Hi all, We are hoping to work with Argonne Labs to resolve this spam issue. We may end up moving this over to a new service as SourceForge's lists obviously seem to have some issues. We'll keep you posted on this. I just got confirmation that there currently is NO ArcGIS 9.3 version. I have been told that they hope to release a 9.3 version but no details as to when yet. Again, we'll post new details as we get them. I don't know if this helps, but my personal solution has been to keep a Virtual Machine with 9.2 (and Windows XP) installed on it. Microsoft has a very nice (and free!) Virtual PC program that you can download at http://www.microsoft.com/windows/virtual-pc/ Hope this answers a few questions and thanks for your patience on this! Nate -----Original Message----- From: Miao Wang [mailto:mia...@ne...] Sent: Wednesday, May 20, 2009 1:41 AM To: rep...@li... Subject: [Agent-Analyst] same problem with Chris Leatherman Hi,Everyone I am a new comer here. I am wondering why there are so many junk emails in the email archive ? I met same problem that Chris Leatherman had when I am trying to embed AA into ArcGIS 9.3. I installed the Agent Analyst in my computerwith out any problem, but when I try to add into ArcGIS 9.3 toolbox as a new tool, it runs a little while in the Dos window and then it shows that: c:\Program Files\Repast3|Agent analyst>pause Press any key to continue... at the same time poped out a window called Pepast Py Error,which says Error Starting Repast Py:No Exception Message All the same with what Chris Leatherman showed as the ppt in Christ Leatherman's massage on 2009-01-8. Dose anyone can give me some clue about that problem? It would be very grateful that some feedback can be received! I have a feeling that AA should be a very good software with great potential. However, the forum's quality should be improved urgently! Best wishes Mira Miao Wang in Water Resources School of Civil Engineering and Geosciences RGR Centre, Cassie Building Newcastle University Newcastle upon Tyne, NE1 7RU, UK Mia...@nc...<mailto:Mia...@nc...> ------------------------------------------------------------------------------ Crystal Reports - New Free Runtime and 30 Day Trial Check out the new simplified licensing option that enables unlimited royalty-free distribution of the report engine for externally facing server and web deployment. http://p.sf.net/sfu/businessobjects _______________________________________________ Repast-agentanalyst mailing list Rep...@li... https://lists.sourceforge.net/lists/listinfo/repast-agentanalyst |
|
From: Miao W. <mia...@ne...> - 2009-05-20 08:40:49
|
Hi,Everyone I am a new comer here. I am wondering why there are so many junk emails in the email archive ? I met same problem that Chris Leatherman had when I am trying to embed AA into ArcGIS 9.3. I installed the Agent Analyst in my computerwith out any problem, but when I try to add into ArcGIS 9.3 toolbox as a new tool, it runs a little while in the Dos window and then it shows that: c:\Program Files\Repast3|Agent analyst>pause Press any key to continue... at the same time poped out a window called Pepast Py Error,which says Error Starting Repast Py:No Exception Message All the same with what Chris Leatherman showed as the ppt in Christ Leatherman's massage on 2009-01-8. Dose anyone can give me some clue about that problem? It would be very grateful that some feedback can be received! I have a feeling that AA should be a very good software with great potential. However, the forum's quality should be improved urgently! Best wishes Mira Miao Wang in Water Resources School of Civil Engineering and Geosciences RGR Centre, Cassie Building Newcastle University Newcastle upon Tyne, NE1 7RU, UK Mia...@nc...<mailto:Mia...@nc...> |
|
From: Miao W. <mia...@ne...> - 2009-05-20 08:26:01
|
Hi,Everyone I am a new comer here. I am wondering why there are so many junk emails in the email archive ? I met same problem that Chris Leatherman had (see 2009-01-08 message) when I am trying to embed AA into ArcGIS 9.3. Dose anyone can give me some clue about that problem? It would be very grateful that some feedback can be received! I have a feeling that AA should be a very good software with great potential. However, the forum's quality should be improved urgently! Best wishes Mira Miao Wang in Water Resources School of Civil Engineering and Geosciences RGR Centre, Cassie Building Newcastle University Newcastle upon Tyne, NE1 7RU, UK Mia...@nc...<mailto:Mia...@nc...> |
|
From: Kevin J. <kjo...@es...> - 2008-10-01 19:33:31
|
Hi Richard, We are still working on a tutorial style ESRI Press book on how to use Agent Analyst. It should be ready hopefully before next summer if not sooner. I remind people that this is an open source public domain product (not an ESRI product) and any help with documentation and beta testing are welcome. Please contact me directly if you are interested in making this product a reality. Currently there is a fair amount of new development on handling raster data in Agent Analyst in order to make the Analyst a more robust spatially explicit agent-based modeling environment. Thanks. Kevin J kjo...@es... ________________________________ From: Richard Heimann [C] [mailto:he...@ai...] Sent: Thursday, September 25, 2008 8:46 AM To: 'Sharma, Ravi'; rep...@li... Subject: Re: [Agent-Analyst] (no subject) At the ESRI UC I heard that a 9.0-3 compliant version would be released Q1 2008. Additionally, documentation would be released. Perhaps someone could confirm or deny this notion??? Lastly, if beta testers are required I would be interested in participating. Thanks Richard Richard Heimann Naval Research Lab 4555 Overlook Ave SW Washington DC 20375 Work# 202.404.7343 From: Sharma, Ravi [mailto:rk...@pi...] Sent: Thursday, September 25, 2008 10:43 AM To: 'rep...@li...' Subject: [Agent-Analyst] (no subject) Will Agent Analyst 9.2 work with ArcGIS 9.3 version Ravi Ravi K. Sharma, PhD Associate Director of Public Health Informatics, Institute for Evaluation Science in Community Health, Department of Behavioral & Community Health Sciences, Graduate School of Public Health, 228 Parran Hall, 130 Desoto Street, Pittsburgh, Pa 15261 Phone: 412-624-3615 Fax: 412 -624-5510 Email: rk...@pi... |
|
From: Kevin J. <kjo...@es...> - 2008-10-01 19:24:37
|
Ravi, We have run some of our models using 9.3 and they appear to work fine. However we have not thoroughly tested Agent Analyst with 9.3. Please email me any issues or successes you have with 9.3. Thanks. Kevin J ________________________________ From: Sharma, Ravi [mailto:rk...@pi...] Sent: Thursday, September 25, 2008 7:43 AM To: 'rep...@li...' Subject: [Agent-Analyst] (no subject) Will Agent Analyst 9.2 work with ArcGIS 9.3 version Ravi Ravi K. Sharma, PhD Associate Director of Public Health Informatics, Institute for Evaluation Science in Community Health, Department of Behavioral & Community Health Sciences, Graduate School of Public Health, 228 Parran Hall, 130 Desoto Street, Pittsburgh, Pa 15261 Phone: 412-624-3615 Fax: 412 -624-5510 Email: rk...@pi... |
|
From: Richard H. [C] <he...@ai...> - 2008-09-25 16:02:56
|
At the ESRI UC I heard that a 9.0-3 compliant version would be released Q1 2008. Additionally, documentation would be released. Perhaps someone could confirm or deny this notion??? Lastly, if beta testers are required I would be interested in participating. Thanks Richard Richard Heimann Naval Research Lab 4555 Overlook Ave SW Washington DC 20375 Work# 202.404.7343 From: Sharma, Ravi [mailto:rk...@pi...] Sent: Thursday, September 25, 2008 10:43 AM To: 'rep...@li...' Subject: [Agent-Analyst] (no subject) Will Agent Analyst 9.2 work with ArcGIS 9.3 version Ravi Ravi K. Sharma, PhD Associate Director of Public Health Informatics, Institute for Evaluation Science in Community Health, Department of Behavioral & Community Health Sciences, Graduate School of Public Health, 228 Parran Hall, 130 Desoto Street, Pittsburgh, Pa 15261 Phone: 412-624-3615 Fax: 412 -624-5510 Email: rk...@pi... |
|
From: Sharma, R. <rk...@pi...> - 2008-09-25 14:42:53
|
Will Agent Analyst 9.2 work with ArcGIS 9.3 version Ravi Ravi K. Sharma, PhD Associate Director of Public Health Informatics, Institute for Evaluation Science in Community Health, Department of Behavioral & Community Health Sciences, Graduate School of Public Health, 228 Parran Hall, 130 Desoto Street, Pittsburgh, Pa 15261 Phone: 412-624-3615 Fax: 412 -624-5510 Email: rk...@pi... |
|
From: Tim W. <tim...@ya...> - 2007-10-02 08:20:01
|
Hi all,=0AI'm abit new to Agent Analyst and Python ( and programming). Is t= here a list of python modules and libraries available for agent analyst?=0A= =0ATim.=0A=0A=0A=0A=0A =0A___________________________________________= _________________________________________=0AGot a little couch potato? =0AC= heck out fun summer activities for kids.=0Ahttp://search.yahoo.com/search?f= r=3Doni_on_mail&p=3Dsummer+activities+for+kids&cs=3Dbz |
|
From: Li, N. <Nai...@in...> - 2007-09-12 16:08:30
|
Hi Jun, My apologies for such late reply. If you are still interested, please send= me your institutional/personal email address and I can send you some mater= ial on this. Naicong From: rep...@li... [mailto:repast-agen= tan...@li...] On Behalf Of jun b. Sent: Thursday, August 16, 2007 5:36 AM To: rep...@li... Subject: [Agent-Analyst] irregularly shaped cells in cellular automata Hi, I am modeling land use change using a cellular automata model. However, th= e cells I am am using are irregularly shaped parcel lots and not the regula= r square cells in formal cellular automata. Is agent analyst able to handl= e this? thank you. Jun |
|
From: Ty F. <tyf...@gm...> - 2007-08-29 17:24:05
|
Hi, I'm trying to make the AA toolbox permanent in ArcGIS but can't seem to figure out how to do it. I have to add a new toolbox and reload everytime I open ArcMap. Is there a way to save AA tool as a system tool so it shows up when opening, like all the other toolboxes? Thanks, -- Tyler Frazier, AICP 2541 Columbus St. Ft. Myers, FL 33901 (239) 935 - 5345 cell (239) 236 - 2044 fax |
|
From: Ty F. <tyf...@gm...> - 2007-08-25 18:23:52
|
I'm unclear on the relationship of RepastPy -> NQPy -> Agent Analyst and ESRI ArcGIS and Repast S -> GeoTools and how to invest my time in developing my knowledge of programming languanges. ABM/Spatial integration is critical to my research, and I've always like ESRI ArcGIS; 9.x is quite good. I'm unclear of the future for the GIS component. I know Brazil has developed open source GIS/ABMs - is something similar planned here? Thanks, Ty -- Tyler Frazier, AICP 2541 Columbus St. Ft. Myers, FL 33901 (239) 935 - 5345 cell (239) 236 - 2044 fax ZEF Walter-Flex-Str. 3 Bonn, Germany, 53113 www.zef.de |
|
From: Ty F. <tyf...@gm...> - 2007-08-25 16:22:57
|
I've worked through the three Tutorials on http://www.institute.redlands.edu/agentanalyst/Tutorials.html and need more material to improve my skills. One of my coworkers here is using eclipse and running it into Repast, but hasn't incorporated the ArcGIS component into her model. Would someone please make some suggestions on where to go from here in order to continue learning how to program in Agent Analyst (NQPy) -- RepastPy, Java etc... Thanks, Ty -- Tyler Frazier, AICP 2541 Columbus St. Ft. Myers, FL 33901 (239) 935 - 5345 cell (239) 236 - 2044 fax Zentrum fur Entwicklunsforschung Junior Researcher Walter-Flex Str. 3 Bonn, Germany 53113 ++49 (0)228 73 4972 |
|
From: jay b. <jay...@gm...> - 2007-08-23 02:22:11
|
I am a student, non-programmer and new to RePast. I would like to ask if someone can help me set up my model. I am researching on land use change modeling. I am using irregular polygons (parcel lots) as my unit of analysis. I have prepared all the necessary inputs to the model including the transition rules for cellular automata. With these data, I believe I can now use RePast to simulate land use. However, I do not know how to do programming in Java. Can someone have the time to help? Please email me and let me know how much this work will cost? By the way, I am familiar with ArcGIS 9.2. Thank you. |
|
From: Nick C. <nic...@ve...> - 2007-08-22 14:15:10
|
A syntax error like this occurs when the indentation block has been messed up somehow. The best way to do fix it, is to ensure that you have no white space after the ":", and then reindent everything in the block after that. Nick On Aug 22, 2007, at 9:56 AM, jun b. wrote: > I got this error message (attached) when doing the tutorialone > exercise. I can't seem to know what's the problem. Can someone > enlighten me on this? > > Thanks. > > Jun > <snapshot.doc> > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a > browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Repast-agentanalyst mailing list > Rep...@li... > https://lists.sourceforge.net/lists/listinfo/repast-agentanalyst |