|
POST
|
Robert, Brian, Sorry to jump in, but is the following valid due to the greater than sign: <value prompt="Example: 2012/04/16">datetime >= '[value] 00:00:00'</value> should it not be: <value prompt="Example: 2012/04/16">datetime >= '[value] 00:00:00'</value> Regards Anthony
... View more
01-12-2015
02:28 PM
|
0
|
1
|
1181
|
|
POST
|
The field name that maybe causing the problem could be the one named shape as I thought shapefiles by default have a field name called shape
... View more
01-12-2015
02:05 PM
|
0
|
0
|
2362
|
|
POST
|
Ben, have a look at this thread: Using additional Python modules
... View more
01-12-2015
11:58 AM
|
0
|
0
|
692
|
|
POST
|
Shawn, Yes, you could add two separate search widgets into your application, just label them differently. Search spruce and search pine. i am not sure of the settings for symbology with the out of the box search widget as I don't use it, but Roberts esearch widget allows you to choose different symbology for each layer: http://www.arcgis.com/home/item.html?id=5d4995ccdb99429185dfd8d8fb2a513e
... View more
01-12-2015
10:58 AM
|
0
|
1
|
769
|
|
POST
|
Brain, If I am reading your question correctly you want to perform a spatial query i.e. select the points from one layer that intersect with a polygon from another layer, have a look at the Roberts e-search widget that allows you to perform spatial searches from the results of another search: http://www.arcgis.com/home/item.html?id=5d4995ccdb99429185dfd8d8fb2a513e Regards Anthony
... View more
01-12-2015
08:39 AM
|
0
|
16
|
1481
|
|
POST
|
Unfortunately your basemap still needs to be served via AGOL or Portal
... View more
01-08-2015
10:35 AM
|
0
|
0
|
1068
|
|
POST
|
Anybody with a general interest in the Ebola outbreak a good source of information can be found on the Humanitarian Data Exchange Ebola page: Ebola crisis page - Humanitarian Data Exchange
... View more
01-08-2015
09:17 AM
|
0
|
0
|
1164
|
|
POST
|
No problem Natalie, the charity MapAction have deployed to Liberia, Sierra Leone, Ghana and Mali in response to Ebola over the last few months, more info can be found here: MapAction Home Page The UK army also has a deployment of Geographic Technicians in Sierra Leone
... View more
01-08-2015
09:10 AM
|
0
|
1
|
1164
|
|
POST
|
On the same subject of mapping the Ebola relief effort: http://www.telegraph.co.uk/sponsored/business/future-built-environment/11287299/data-mapping.html
... View more
01-08-2015
08:19 AM
|
0
|
3
|
1164
|
|
POST
|
Your extent needs to be a rectangle so you would need to find out the width and height of your data frame to be able to create an AOI from your point, i.e. if your point is the bottom left corner: xmapdistance = df.extent.XMax - df.extent.XMin ymapdistance = df.extent.YMax - df.extent.YMin extentxmin = 178434 extentxmax = 178434 + xmapdistance extentymax = 662446 extentymin = 662446 + ymapdistance df.panToExtent(arcpy.Extent(extentxmin,extentymax,extentxmin,extentymax))
... View more
01-08-2015
01:27 AM
|
1
|
0
|
973
|