POST
|
Check the domains assigned to your fields. We encountered the same error (and only on Win10, not Android or iOS) and were able to resolve it after we found a DATE field in the feature class that had incorrectly been assigned a coded value domain. We removed this domain from the DATE field and the error was gone.
... View more
10-09-2017
07:09 AM
|
1
|
0
|
38
|
POST
|
Hi, Try: Verify you have your Service with Sync capability in the operations allowed (in service Capabilities in Server Manager) and the option to work offline in the Service definitions (in AGOL). In your enterprise GDB you have added global IDs to your mobile component (dataset) and have at least archiving enabled. In Collector do not save credentials to Login.
... View more
11-30-2016
02:24 AM
|
0
|
0
|
17
|
POST
|
One thing I did notice... if you are using ArcGIS Server 10.3 you will not be able to make edits and sync them back to the server and using versioned data. Versioned data editing and offline is supported with ArcGIS Server 10.3.1. You can read about the required setup here: FAQs—Collector for ArcGIS | ArcGIS
... View more
08-12-2016
10:33 AM
|
3
|
0
|
32
|
POST
|
After searching a long time the answer found: change your line: if key.firstChild.data == "{}" .format(recycleStartTime) : key.nextSibling.firstChild.data = '04:00' to: if key.firstChild.data == "{}" .format(recycleStartTime) : if key.nextSibling.firstChild == None: x = doc.createTextNode("04:00") key.nextSibling.appendChild(x)
... View more
07-14-2017
07:21 AM
|
3
|
0
|
50
|
POST
|
Sorry, I just realized that where_clause doesn't use the utm_field variable I had set up. Line 5 from the code above should be: where_clause = "{} LIKE '{}%'".format(utm_field, utm_prefix_filter)
... View more
05-11-2016
09:30 AM
|
1
|
0
|
6
|
POST
|
The easiest option would be to build a script tool to use the arcpy.da.walk method to walk through your geodatabase and delete each item found. arcpy.da.walk http://desktop.arcgis.com/en/desktop/latest/analyze/arcpy-data-access/walk.htm If you wanted to accomplish this in ModelBuilder you could build a series of submodels with the different iterators that could delete different types of data. A quick tour of using iterators http://desktop.arcgis.com/en/desktop/latest/analyze/modelbuilder/a-quick-tour-of-using-iterators-for-iteration-looping-.htm The catch with using the iterators within ModelBuilder with be that 1) not all types are available within the given set of iterators and 2) without using a script tool for the deletion logic it'd be hard to catch errors that would stop the model (i.e. deleting features that you don't have permissions to, items that can't be deleted because they participate in a relationship, etc.)
... View more
08-28-2015
09:56 AM
|
2
|
0
|
19
|
POST
|
Situation: Need to get the attributes/values of a field <COD> from an Attributes Table of a Feature Class (picture attached - attr_table) using another field <COD_SYMB> (which acts as a key-field) of that same Attributes Table? In ArcMap, <COD_SYMB> is the field selected in Layer Properties for the "Value Field" in the Symbology by categories (match to symbols in a style : picture attached - layer_prop). Code values for the symbology are loaded from a S tyle File created a priori (picture attached - style_file). In the Style File ---> field/column "Name" contains the same values of those inserted previously in the field <COD_SYMB> so they can match. In the Layer properties we have then: the field/column "Label" shows the attributes of <COD_SYMB>. And the field/column "Value" contains the color codes ---> <COD_SYMB>. In terms of style symbolization, need to compute a way (function/method) to replace the Label with <COD_SYMB> values by the field <COD> and its values.... I n other words, when values/codes of field <COD_SYMB> are read, a method reads the correspondent values/codes in the field <COD> and returns them as Label field. Any help? I'm working on ArcGIS 10.3. Note: Is there a way to convert the Symbology by Style into UNIQUE_VALUES to apply this: UniqueValuesSymbology—Help | ArcGIS for Desktop ---> desktop.arcgis.com/en/desktop/latest/analyze/arcpy-mapping/uniquevaluessymbology-class.htm ? Message was edited by: Eduardo Abreu-Freire
... View more
08-27-2015
05:12 AM
|
0
|
0
|
2545
|
POST
|
Actually GDB (SDE) was not empty in terms of domains (did right-click on connection.sde and checked domains). After run a script to delete GDB domains the XML export + import worked fine!
... View more
08-25-2015
07:16 AM
|
2
|
0
|
58
|
POST
|
If it is python code you are looking for you could have a look at: Get coded-value descriptions when accessing data with cursors | ArcPy Café ... and this thread: Batch export coded value domains to table There are some remarks included in this document: Some Python Snippets ... and the help provides samples on subtypes and domains: ListDomains—Help | ArcGIS for Desktop ListSubtypes—Help | ArcGIS for Desktop
... View more
08-20-2015
11:25 AM
|
1
|
0
|
34
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:25 AM
|