|
POST
|
Have you tried storing them in a geodatabase after you draw them? It sounds like you're wanting to draw graphics on the screen, but you're wanting them to behave as a feature class. You could create an in-memory workspace or a geodatabase to a known location on disk within your code and reference.
... View more
12-06-2015
08:38 AM
|
0
|
3
|
1414
|
|
POST
|
Could you upload your layer package? Is there a particular column that is always missing?
... View more
12-05-2015
10:59 PM
|
0
|
0
|
323
|
|
POST
|
When editing data in an enterprise geodatabase you should start the edit session using the StartMultiUserEditing method of the IMultiuserWorkspaceEdit interface. As a result of the data being versioned it will automatically implement the undo and redo stacks. While editing the data I believe the changes will be stored in the A&D tables. The information will be committed to the versioned view after stopping the edit operation. More information about this process can be seen on the following page: Editing with the geodatabase API http://resources.arcgis.com/en/help/arcobjects-net/conceptualhelp/#/Editing_with_the_geodatabase_API/00010000010s000000/
... View more
12-05-2015
10:58 PM
|
0
|
0
|
849
|
|
POST
|
You uploaded a layer (*.lyr) file and a csv file. The layer file is only a pointer to the data and does not contain your actual data. Could you upload your data as a layer package or could you give an example of a zip code that isn't matching? What are the types of the fields you're trying to match and are you sure that the values match exactly. For example, if the zip codes are being handles as strings "92373" is not equal to "92373 " (i.e. number with a space behind it).
... View more
12-05-2015
05:28 PM
|
2
|
0
|
2298
|
|
POST
|
Are you saying that you want to leverage 64 bit background gp, but you still want to block the UI thread so that everything finishes executing before you click the next button? Have you tried wiring into the ToolExecuted event. You could include a variable in your synchronous logic that checks for a flag that isn't set to true until the ToolExecuted event has been fired (i.e. the asynchronous task is complete) and block the UI thread. Otherwise, could you place all of your logic into the same tool and run it all within the asynchronous task? Running a geoprocessing tool using background geoprocessing http://resources.arcgis.com/en/help/arcobjects-net/conceptualhelp/#/Running_a_geoprocessing_tool_using_background_geoprocessing/00010000015z000000/
... View more
12-05-2015
02:12 PM
|
0
|
1
|
565
|
|
POST
|
Currently this isn't possible within the arcpy site package. Although you can inherit the symbology from an existing layer file or use python to change the renderer for the layer, you cannot create the symbology from scratch and apply it to the layer. To accomplish this you'd need to utilize ArcObjects. Within ArcObjects you could create the symbol, add it to a renderer and set the renderer for the layer. How to make a line fill symbol http://resources.arcgis.com/en/help/arcobjects-net/conceptualhelp/index.html#/How_to_make_a_line_fill_symbol/0001000000s4000000/ Working with layers and renderers http://resources.arcgis.com/en/help/arcobjects-net/conceptualhelp/index.html#/Working_with_layers_and_renderers/000100000468000000/
... View more
12-05-2015
01:58 PM
|
1
|
4
|
1918
|
|
POST
|
This sample should help get you started. ArcGIS Runtime for Android Nearby Sample https://github.com/Esri/arcgis-runtime-samples-android/tree/master/Nearby About the sample The purpose of this sample is to leverage your devices GPS position to zoom to your location on the map. When you click on the either of the buttons on the action bar, coffee denoting local coffee shops or pint glass denoting bars, the respective shops in your area are displayed on the map. Check device setting to make sure that location services are enabled for the app.
... View more
12-05-2015
01:40 PM
|
1
|
0
|
658
|
|
POST
|
Is this what you're needing to do? Draw Polyline Snippet http://resources.arcgis.com/en/help/arcobjects-net/componenthelp/index.html#//0049000000nr000000
... View more
12-05-2015
01:31 PM
|
1
|
5
|
1414
|
|
POST
|
Do you have the same problem if you write a desktop console application and use the above code to get the data table? I'm not entirely familiar with your workflow, but I'm wondering if your application is being affected by the deprecation of DCOM. You can review the following document for more information to determine if this applies to your current workflow. Deprecation Plan for ArcGIS 10.1 and ArcGIS 10.2 http://downloads2.esri.com/support/TechArticles/W28703_DEPRECATION_PLAN_FOR_ARCGIS_10_1_and_10_2__Updated_for_10_2_1d_final.pdf I've listed the information it displays about DCOM below. ArcGIS 10.1 for Service will no longer support local connections (DCOM connections). ArcGIS 10.1 for Server will be a web services (REST, SOAP, and OGC) server only. This will have an impact on the following: Custom developed applications form business partners and users using fine-grained ArcObjects through DCOM will not be supported. Thanks to the recent enhancements in server object extensions, developers can now migrate custom business logic written at the web application (web ADF) level to custom ArcGIS for Server services. Development against fine-grained ArcObjects continues to be fully supported following the server object extension pattern for extending ArcGIS for Server services. Esri has been recommending this approach for some time already due to its simplicity and improved performance. Visit the following discussion (blogs.esri.com/esri/arcgis/2011/04/24/considerations-for-arcgis-server-developers-a-look-towards-10-1/) for details on alternatives to non-pooled services and local (DCOM) connections.
... View more
12-05-2015
01:23 PM
|
1
|
1
|
683
|
|
POST
|
The Select Layer by Location tool requires a Layer object as input so there shouldn't be any need for you to create a layer file on disk. The MakeFeatureLayer tool would be used to create the layer object for you. The reason why the select tool needs the layer object is because you can only apply a selection against a layer object. For example, say that you have a point feature class and you want to select the point with OID 3. To do this you would need to open ArcMap, add the data to the map, and then select the point. When you added the data to the TOC of the map document you've essentially created a layer object, which you can apply selections against. I would think that if you want to calculate the area of data based on where you clicked within ModelBuilder you'd want to use a FeatureSet. The FeatureSet would essentially allow you to use the tool's dialog to create a point feature on the fly (i.e. when the FeatureSet parameter is active it would allow you to click on the map and it would create points there without you having to either create a feature class or start an edit session). You would use these points to select the intersecting polygons that you want to calculate the areas against. If you wanted to update the source data you could use the CalculateField tool to calculate the area in the units you're needing or you could make a copy of the data and perform the calculation there. I would assume at the simplest your model would look as shown below.
... View more
12-05-2015
11:14 AM
|
1
|
1
|
3986
|
|
POST
|
ArcGIS as a platform has clients available for both environments. Is there a particular thing that you're needing to do so that we can better determine which environment you'd need to utilize? We would need to know what you're needing to accomplish and how you're expecting your users to consume it. For example, Desktop Mapping Applications ArcMap (Windows Only) Engine (.NET for Windows Only and Java/C++ for Windows or Linux) ArcGIS for Professionals (Windows Only) ArcGIS Runtime for .NET (Windows Only) ArcGIS Runtime for Java (Windows, Linux, Ubuntu) ArcGIS Runtime for Qt (Windows, Linux) Web Applications ArcGIS API for JavaScript (Practically anywhere you can install a web browser) Flex API (deprecated...do not use this if you don't have to) Silverlight API (deprecated...do not use this if you don't have to) Mobile Applications ArcGIS Runtime for iOS/MacOS (MacOS to develop...iOS or MacOS to consume) ArcGIS Runtime for Android (Windows or Linux to develop...Android to consume) AppStudio (Windows, OSX, Ubuntu to develop...can be consumed in Windows, OSX, iOS, Ubuntu, and Android) Note: Build apps in one language (i.e. C++ & QML) and deploy to multiple. Xamarin (Windows to develop...can be consumes in iOS, Windows, and Android) Note: Build apps in one language (i.e. .NET) and deploy to multiple. ArcPad (Windows Only) ArcGIS for Windows Mobile (Windows Only) ArcGIS Collector (Android or iOS) Server Applications ArcGIS for Server (Windows or Linux) Geoportal (Windows or Linux) Geodatabases SQL Server (Windows Only) Oracle (Windows or Linux) PostGreSQL (Windows or Linux)
... View more
12-04-2015
03:16 PM
|
2
|
0
|
1168
|
|
POST
|
I don't believe that this is going to be easily possible within a label expression because it'd require that you scan the entire table to get the counts and then come back to the row where you needed to generate the label? I'd assume that you could probably add logic to the label expression, but this would probably only slow down the map rendering to the point it'd be unusable because you'd be crawling the entire feature class for each label rendered every time you refreshed the map. Would it be possible for you to add a field to your data where you could calculate this value and then you could label based on that field?
... View more
12-03-2015
07:57 PM
|
1
|
0
|
1157
|
|
POST
|
You may also want to check this out. ArcPad - And Introductio | Esri Video http://video.esri.com/watch/2680/arcpad-_dash_-an-introduction
... View more
12-03-2015
09:43 AM
|
0
|
0
|
936
|
|
POST
|
ArcPad is essentially designed to collect feature/attribute data in the field. You could collect the polygons using the GPS or you could digitize them with a pen on the screen. Steps to create polygon features with a GPS http://resources.arcgis.com/en/help/arcpad/10.2/app/#/Steps_to_create_polygon_features_with_a_GPS/00s1000000qp000000/ Creating a polygon feature using the Rectangle, Ellipse, Circle, or Freehand tool http://resources.arcgis.com/en/help/arcpad/10.2/app/#/Creating_a_polygon_feature_using_the_Rectangle_Ellipse_Circle_or_Freehand_tool/00s1000000t0000000/ Creating a polygon using the Polygon tool and the pen http://resources.arcgis.com/en/help/arcpad/10.2/app/#/Creating_a_polygon_using_the_Polygon_tool_and_the_pen/00s1000000rm000000/
... View more
12-03-2015
09:38 AM
|
0
|
1
|
936
|
|
POST
|
Also, how did you add the geodatabase data to the map? Did you by any chance use IPropertySet in ArcObjects to connect to the workspace?
... View more
12-03-2015
09:17 AM
|
0
|
1
|
1366
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 01-19-2016 04:45 AM | |
| 1 | 09-24-2015 06:45 AM | |
| 1 | 09-15-2015 10:49 AM | |
| 1 | 10-12-2015 03:07 PM | |
| 1 | 11-25-2015 09:10 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|