IDEA
|
Good day, It looks like the attributes rules are stored at the database level in the Parcel Fabric for ArcGIS Pro. This means we would have to import them in all the databases we have. We have over fifty geodatabases (one for each UTM and MTM zones) that we need to import all the rules in them. It would be nice to have the capability to reference a "Master database" for our attribute rules that all database would use. If we make a change to a rule, all databases would get it. We would not forget to update one. Thank you,
... View more
2 weeks ago
|
3
|
0
|
71
|
POST
|
Good day, The previous data model allowed to have "Open Parcels" in ArcMap. Is there the same concept in the Parcel Fabric in ArcGIS Pro? We are receiving surveys that are for partial boundary surveys and we were using "open parcel" to manage the measurements for these. Thank you,
... View more
2 weeks ago
|
1
|
2
|
57
|
POST
|
Good day, Currently in ArcMap, we are using the CadastralXML format to create our parcels in the Parcel Fabric. We are using the "Extended Attributes" to attribute our lines and parcels all at once. We are also making extensive use of the "Attribute Assistant" to help in our processes. Is there a similar process to import and create parcels all in one step with properly attributed lines and parcels in ArcGIS Pro? Something like a "batch import" with proper attributes? We are currently receiving our parcel data from the surveyors in CAD format on specific layers. I am trying to conceive how we are going to import that data in the Parcel Fabric in ArcGIS Pro with minimal intervention from our editors. Thank you,
... View more
2 weeks ago
|
1
|
1
|
44
|
POST
|
... Layer myLayer = null; String sName = "ABC123"; Map map = MapView.Active.Map; IEnumerable<Layer> matches = map.GetLayersAsFlattenedList().Where(l => l.Name.IndexOf(sName, StringComparison.CurrentCultureIgnoreCase) >= 0); int index = 0; if (matches.Count() == 1) { myLayer = matches.FirstOrDefault(); //index = position??? map.RemoveLayer(myLayer); } How do you insert it at the same location I originally found it ? myLayer = LayerFactory.Instance.CreateGroupLayer(MapView.Active.Map, index, sName); Thanks,
... View more
06-10-2020
08:20 AM
|
0
|
1
|
79
|
POST
|
I know that you can probably do it using the GP tools, but you need to know the join name. How can you do it without knowing anything about the layer and just insure that you don't have any joins on it? Regards,
... View more
09-20-2019
07:58 AM
|
0
|
1
|
143
|
IDEA
|
In ArcObjects, the IVersionEvents2 has the OnBeginReconcile method that fires at the beginning of the Reconcile process. It would be nice to have the same for the Post process. I would like to have this function to enable or disable tools prior to run the Post command.
... View more
08-16-2016
12:26 PM
|
5
|
0
|
197
|