|
POST
|
Ya, they are blank strings that were loaded into the domain field. I was hoping someone had developed a work around for this problem. Guess I will be creating a toolbox instead. Thanks!
... View more
06-06-2014
07:44 AM
|
0
|
0
|
786
|
|
POST
|
Running 10.2.2. I run the Domain Validation check and it works correctly except it returns all records that don't have a specified domain. Is there a way to set the domain validation check to ignore empty/blank records? Records can be empty in a domain if you load data into an existing domain field. Thanks!
... View more
06-06-2014
06:20 AM
|
0
|
3
|
3738
|
|
POST
|
If you install a machine in a new cluster, you achieve resource (RAM/CPU) load balancing. This is a manual process, as you must migrate or publish your services specifically in the cluster you want, but it will ensure that the load is distributed. We recently upgraded to Server 10.2.2 and we have 2 machines in the same cluster for failover purposes. At version 10.1.1 we did manually have to divide up our 2 servers to distribute the load. It seems that in 10.2.2 both machines in the default cluster are sharing resources. Is this correct? I can't find much documentation for the release of 10.2.2. They are using the exact same amount of memory and cpu power. We currently don't have a network load balancer in place.
... View more
06-03-2014
12:16 PM
|
0
|
0
|
907
|
|
POST
|
I guess I forgot to mention we have ArcGIS Server running on 2 separate servers both in the default cluster. So we do have some redundancy there as well.
... View more
05-21-2014
04:27 AM
|
0
|
0
|
480
|
|
POST
|
I've looked through the installation documents and there isn't a whole lot on this. I'm curious as to how this works. We are installing on Server 2012, ArcGIS Server version 10.2.2, with dual web adapters for redundancy. I have the web adapters installed on separate servers and pointed to the Site I created. So from what I understand, we are pointing our external access to our first web adaptor, say arcgis1. Since I have added say arcgis2 web adaptor, how does the software know if arcgis1 is down and to redirect to arcgis2. Are there additional steps that need to be taken to ensure this happens. Also if their is a load balancer installed between arcgis1 and arcgis2, will it still redirect to the other server if one of them goes down? Or is it the "don't worry about how it works..it just does" type of thing? Thanks!
... View more
05-20-2014
12:54 PM
|
0
|
2
|
851
|
|
POST
|
I know this is a python forum, but the VBA script in the field calculator is LTrim([field]) or RTrim([field]). This will remove leading and trailing spaces. If there are no other spaces in your data you could do a find and replace. Find the space, replace it with nothing. CTRL + F to open the find and replace window in the attribute table. Hope this helps.
... View more
05-20-2014
12:18 PM
|
0
|
0
|
4111
|
|
POST
|
This would be handy to have. Or is this built somewhere and I haven't come across it yet. Thanks!
... View more
05-08-2014
07:53 AM
|
0
|
1
|
885
|
|
POST
|
I'm using pretty much the exact same code and it works great until I search for a string of numbers with a dash (ex: 121548-89). The attached image shows what is happening. It zooms way out and makes the viewable window width narrow and doesn't show the search results. The console error is such: Error: Problem parsing d="" I can't find much information on this. Any thoughts? Thanks!
... View more
04-15-2014
06:02 AM
|
0
|
0
|
1112
|
|
POST
|
I'm not familiar with the data you are using but if you are using multiple regions of data, then I suspect the features aren't exact duplicates. What fields were you using when trying to delete identical features and were the values in those fields exactly the same?
... View more
04-08-2014
04:37 PM
|
0
|
0
|
616
|
|
POST
|
If you could post a sample address that you are trying to geocode that may be helpful. Things I do to make my data 'cleaner' for the geocoder using excel is to trim the sheet (removes leading and trailing spaces), copy the cells and paste the VALUES so to remove all formulas, make sure there are no blank records separating my data and make everything uppercase. Taking out all special characters is something also I consider. It is strange that you get 0% matched, tied, and unmatched. I would copy all addresses to a new csv or excel workbook and try again. If you still can't get your data to geocode, you may want to rebuild your locator. Hope this helps!
... View more
04-08-2014
04:16 PM
|
0
|
0
|
1236
|
|
POST
|
The World Geocode Service takes an ArcGIS Online subscription account. It will let you log in using your global account but won't let you geocode. It will sit at 0%. Could this be the issue?
... View more
04-08-2014
01:17 PM
|
0
|
0
|
1503
|
|
POST
|
Sounds like you need to create a Network Dataset first. If you don't have this loaded into the map document, the network analyst tools will be greyed out.
... View more
02-07-2014
10:52 AM
|
0
|
0
|
1276
|
|
POST
|
I was having this same error and got it resolved. I found a blank record separating my data which I removed. I also had some forumlas in my first sheet which I just copied the data and pasted 'values' to get rid of the formulas. I was then able to geocode my addresses. The strange thing is, on my second page I had formulas combining address fields and it let me geocode them. Anyways, I hope this helps someone out.
... View more
02-06-2014
04:53 AM
|
0
|
0
|
1287
|
|
POST
|
I added in "esri/layers/ArcGISDynamicMapServiceLayer",
"esri/layers/ImageParameters" function(...ArcGISDynamicMapServiceLayer, ImageParameters,...) var layer, map, visible = []; changed... //Use the ImageParameters to set the visible layers in the map service during ArcGISDynamicMapServiceLayer construction.
var imageParameters = new esri.layers.ImageParameters();
imageParameters.layerIds = [0];
imageParameters.layerOption = esri.layers.ImageParameters.LAYER_OPTION_SHOW;
//can also be: LAYER_OPTION_EXCLUDE, LAYER_OPTION_HIDE, LAYER_OPTION_INCLUDE
layer = esri.layers.ArcGISDynamicMapServiceLayer("http://my/MapServer", {"imageParameters":imageParameters});
map.addLayer(layer); function updateLayerVisibility() {
var inputs = dojo.query(".list_item"), input;
//in this application layer 2 is always on.
visible = [0];
for (var i=0, il=inputs.length; i<il; i++) {
if (inputs.checked) {
visible.push(inputs.id);
}
}
//if there aren't any layers visible set the array value to = -1
if(visible.length === 0){
visible.push(-1);
}
layer.setVisibleLayers(visible);
} [HTML]<label class="chkLabel"><input type='checkbox' class='list_item' id='0' value=0 onclick='updateLayerVisibility();'>Interior Space</label>[/HTML]
... View more
01-27-2014
02:37 PM
|
0
|
0
|
1021
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-18-2015 12:38 PM | |
| 1 | 08-28-2015 09:13 AM | |
| 1 | 02-25-2016 03:51 PM | |
| 1 | 09-12-2014 08:32 AM | |
| 1 | 05-21-2015 10:12 AM |
| Online Status |
Offline
|
| Date Last Visited |
09-03-2021
11:21 AM
|