|
POST
|
If you are not worried about the currency of the data (ie don't need your mxd to pull from your source SDE) just repoint the mxd to the previously exported data, change whatever needs to be changed in the mxd, then make the pmf again. As long as the mxd is looking at the exported data (a local geodatabase) the pmf will also point there without having to go through the export steps.
... View more
07-23-2012
08:18 AM
|
0
|
0
|
539
|
|
POST
|
V10.0 SP3 Is there a recommended workflow for the scenario below? I have an extemely large data package from (lets say) a month ago which took all night to create (contains rasters). The source data was SDE, and the package is a filegeodatabase. Now I make a small symbology change in the mxd and recreate the pmf. The mxd and pmf are still looking at SDE. I notice while experimenting with a smaller map (no raster) that the final step in the export package is 'repointing data', I assume this is where it switches the pmf's source data to the new package. long story short, can I make minor changes to the mxd and pmf without having to repackage data? OR switch the datasource in the new pmf to the previous filegeodatabase pack so I can re-distribute just the new pmf, not the whole package? hope that made sense, looking forward to a response, Dave
... View more
07-18-2012
02:07 PM
|
0
|
2
|
2120
|
|
POST
|
I had the same situation. the binding is different for MapTips vs the custom symbol (control template). try adding 'Attributes' to the binding statement Text="{Binding Attributes[AREANAME]}" (any idea how to switch to a different attribute from codebehind based on a user selection?) hope that helped
... View more
05-11-2012
01:53 PM
|
0
|
0
|
377
|
|
POST
|
.............. on a side note, how did you produce the lineage tree diagram? I have not come across this tool, or did you just make it manually from what you saw in your tables? 10.0.3 Thanks,
... View more
03-29-2012
08:34 AM
|
0
|
0
|
3975
|
|
POST
|
Thanks!, I completely overlooked that you can set the version in the connection file.
... View more
02-16-2012
08:10 AM
|
0
|
0
|
651
|
|
POST
|
Could I get some guidance here, I am editting a version of my data and when complete, I would like to run a model to append a few things together into another feature class. I'm trying to figure out how the model knows what version to use. It seems to honor the version that I'm referencing in ArcMap. The model is being ran from ArcMap. Am I now tied to ArcMap for this model, or what version with the model look at if I run it from Catalog, or if I'm running a Python script. Will it always use the default version unless I'm in ArcMap with the edit version loaded? Thanks in advance. (also posted in Desktop General with no response)
... View more
02-16-2012
07:03 AM
|
0
|
3
|
1199
|
|
POST
|
Hello, I have a featuredatagrid that I bind to a featurelayer, no problem. I have added some functionality for the user to query more detailed info in our database, based on the features in the featurelayer. I change the featuredatagrid to view this new data, but my toggle to 'rebind' back to the featurelayer does not update the featuredatagrid until a new selection has been made. Is there a way force the grid show the rebound data. I also notice that in most examples, to bind to a featurelayer the dependencyproperty is graphiclayerproperty, while when switching to my new class we use dp = itemsourceproperty. i would think these should be the same? if (rb.Name.ToLower().Contains("raw"))
{
Binding b = new Binding();
b.Source = Join_LegalAndOwners;
BindingOperations.SetBinding(FGrid, FeatureDataGrid.ItemsSourceProperty, b);
}
else
{
Binding b = new Binding("Layers.[FLParcels]");
b.Source = MyMap;
BindingOperations.SetBinding(FGrid, FeatureDataGrid.GraphicsLayerProperty, b); alternatively, is there a way to temporarily append some new columns to either the featurelayer itself, or to the featuredatagrid. i think not because it is tied so tight to the featurelayer thanks for any pointers
... View more
01-11-2012
11:37 AM
|
0
|
1
|
604
|
|
POST
|
Unfortunately I am still in the dark ages of 2.2 I am taking my results from the Identify and feeding them into the GeometryService AreasAndLengths method, but I think I am about to abort for a few reasons. 1. the service takes too long to return and 2. I don't think I'll be able to reattach the areas to the proper polygon with certainty have you seen a way to attach the results of the AreaAndLengths back onto the features (IList<Graphic>) being passed in? or add to an area property in the DataItem class show in the Identify example?
... View more
12-19-2011
12:52 PM
|
0
|
0
|
466
|
|
POST
|
Hello, has anybody done something similar?... I would like to compare the areas of the features returned from the 'identify' task before I add them to the list. I will create some code to sort the results in order of area, but the problem I have is that for display purposes I have hidded the 'area' field. Is there a function out there that can do an area calculation based on the returned geometry (polygon)? using the rings maybe?..... thanks,
... View more
12-19-2011
10:24 AM
|
0
|
3
|
804
|
|
POST
|
Thanks, Yes it was the description that was confusing me a bit. 'Part or all of a feature' makes it sound like it is somehow using the centroid to grab features that are partially contained. After testing different relationships in ArcMap I see that my assumptions are wrong, and it is the Intersect that I want to use as suggested. Although because my input geomerty uses coincidental lines as my select layer (but maybe not topologically perfect), this will select external polygons that I don't want. I ended up running a negative buffer on my input geometry before the final query with Intersect. thanks again
... View more
11-30-2011
06:59 AM
|
0
|
0
|
1003
|
|
POST
|
Hello, Quick question, I hope..... I am tying a spatial query using esriSpatialRelContians, but it seems like the features that are not completely within, are being missed. The description reads 'part or all' of a feature. Am I overlooking something?.... In the picture, Purple is the boundary (geometry being passed in) and you can see the Cyan is what is returned, but my border polygons are being missed. private void FindParcelsInLSA(ESRI.ArcGIS.Client.Geometry.Geometry geom)
{
QueryTask ParcelByLSA = new QueryTask(string.Format("http://www.{0}.com/rdcoags/rest/services/GIS_App_BASE/MapServer/11", urlClass.RDCO_URL));
ParcelByLSA.ExecuteCompleted += new EventHandler<QueryEventArgs>(ParcelByLSA_ExecuteCompleted);
ParcelByLSA.Failed += new EventHandler<TaskFailedEventArgs>(ParcelByLSA_Failed);
Query q = new Query();
q.ReturnGeometry = true;
q.OutFields.Add("*");
q.Geometry = geom;
q.SpatialRelationship = SpatialRelationship.esriSpatialRelContains;
ParcelByLSA.ExecuteAsync(q);
}
... View more
11-25-2011
10:03 AM
|
0
|
3
|
3561
|
|
POST
|
I have a StaticResource set up to control which server I point to....... any idea why the tiled mapservice throws an exception, while the dynamic service works fine? <esri:ArcGISTiledMapServiceLayer ID="Orthos 2009" x:Name="LayerOrthos2009" Visible="False" InitializationFailed="Layer_InitializationFailed"
Url="{Binding Source={StaticResource Server}, StringFormat='http://www.\{0\}.com/rdcoags/rest/services/gis_app_orthos_2009/MapServer'}"/>
<!--dynamic layers-->
<!--WASTE-->
<esri:ArcGISDynamicMapServiceLayer ID="Waste Reduction" x:Name="layerWASTE" Visible="False" InitializationFailed="Layer_InitializationFailed"
Url="{Binding Source={StaticResource Server}, StringFormat='http://www.\{0\}.com/rdcoags/rest/services/GIS_App_WASTE/MapServer'}"/> more to the point, do you have a workaround that I can use?
... View more
10-26-2011
02:40 PM
|
0
|
1
|
748
|
|
POST
|
disregard, I was instantiating it in the wrong spot and therefore 'detach' was inaccessible.
... View more
10-18-2011
12:30 PM
|
0
|
0
|
309
|
|
POST
|
could someone please post the recommended method to stop the ShowCoordinatesBehavior. I'll little unclear about how to properly use the .detach() i would like the coordinates to stop displaying once the user selects 'length' or 'area' from my dropdown. Thanks,
... View more
10-18-2011
10:46 AM
|
0
|
1
|
1113
|
|
POST
|
Thanks for all the replys, I am not clear on exactly what the proxy is doing, it was copied code that got us past a previous problem, so I will probably have to have a closer look in there (proxy.ashx). I don't think giving you the URL will help because I can see that it works fine directly from the URL (thanks for the test page). Here is our DynamicLayer in XAML, referenceing the proxy page. <esri:ArcGISDynamicMapServiceLayer ID="Waste Reduction" x:Name="layerWASTE" Visible="False"
ProxyURL="../proxy.ashx" Url="http://www.regionaldistrict.com/rdcoags/rest/services/GIS_App_WASTE/MapServer" InitializationFailed="Layer_InitializationFailed" DisableClientCaching="True"/> any more hints would be great
... View more
09-20-2011
07:51 AM
|
0
|
0
|
861
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-02-2016 03:08 PM | |
| 2 | 02-02-2016 02:25 PM | |
| 1 | 03-08-2017 09:24 AM | |
| 2 | 05-23-2018 11:24 AM | |
| 1 | 09-24-2020 05:58 PM |
| Online Status |
Offline
|
| Date Last Visited |
02-08-2023
06:01 PM
|