POST
|
I am trying to create a trigger on a versioned geodatabase, I created the trigger before registering the GDB as versioned; it worked well. However, when registering it as versioned GDB, the trigger does not work, and I am not able to create a trigger on the _evw view. Is their a way to attach a trigger to the versioned GDB that is immediately fired when inserting/updating features? Any help is appreciated! Hani
... View more
03-23-2016
03:32 PM
|
1
|
10
|
7143
|
POST
|
I am using ArcGIS Desktop & Server 10.3.1 with SQL Server 2014
... View more
03-03-2016
01:27 PM
|
0
|
1
|
790
|
POST
|
Is there a way to dissolve features dynamically based on a field using a certain Shape.ST() function for a feature class in enterprise GDB? If yes, what is this function? Thank you
... View more
03-02-2016
01:13 PM
|
0
|
4
|
2800
|
POST
|
I have a feature service that include a layer with its related stand alone table, I use the following code to download the layer to my android device: private void download() { // a- Create the GeodatabaseTask from URL // I- Define the Dialog dialog2 = ProgressDialog.show(mMapView.getContext(), "Download Data", "Downloading data to your local device"); dialog2.setCanceledOnTouchOutside(true); dialog2.show(); // II- Create the GDB Task gdbsync= new GeodatabaseSyncTask(url, null); gdbsync.fetchFeatureServiceInfo(new CallbackListener<FeatureServiceInfo>() { public void onError(Throwable e) { // TODO Auto-generated method stub showToast("Unable to get service information! Please Check Internet Connection"); dialog2.dismiss(); } public void onCallback(FeatureServiceInfo objs) { // TODO Auto-generated method stub if(objs.isSyncEnabled()){ creategdb(objs); } } private void creategdb(FeatureServiceInfo objs) { // TODO Auto-generated method stub /*GenerateGeodatabaseParameters params = new GenerateGeodatabaseParameters (objs, mMapView.getExtent(), mMapView.getSpatialReference());*/ GenerateGeodatabaseParameters params = new GenerateGeodatabaseParameters(objs.getLayerIds(), mMapView.getExtent(),mMapView.getSpatialReference(), false, SyncModel.GEODATABASE); //GenerateGeodatabaseParameters params = new GenerateGeodatabaseParameters(objs); // Define a callback that is triggered when the task is finished CallbackListener<String> gdbresponse = new CallbackListener<String>() { public void onError(Throwable e) { // TODO Auto-generated method stub dialog2.dismiss(); //showToast("An Error Happened while downloading the data!"); showToast(e.getCause().toString()); } public void onCallback(String objs) { // TODO Auto-generated method stub updatefeaturelayer(path); dialog2.dismiss(); } }; GeodatabaseStatusCallback statuscallback =new GeodatabaseStatusCallback() { public void statusUpdated(GeodatabaseStatusInfo status) { // TODO Auto-generated method stub } }; submit(params,path,statuscallback,gdbresponse); } }); } However, the layer's data is only downloaded without the related stand alone table. How can I download the related table along with the layer?
... View more
03-01-2016
05:23 AM
|
0
|
1
|
2209
|
POST
|
Thanks for the response Michael, May you please elaborate more how I can do this? Right now, I am able to download spatial data
... View more
03-01-2016
02:33 AM
|
0
|
2
|
605
|
POST
|
Is there a way to download a stand alone table from a feature service as .geodatabase file? Any help is appreciated
... View more
02-29-2016
02:41 PM
|
0
|
5
|
3376
|
POST
|
Thanks a lot for the valuable input Artemis. It worked perfectly with me!
... View more
02-28-2016
01:43 PM
|
0
|
0
|
484
|
POST
|
I have a feature service that contains feature class for parcels and its related table (both are sync enabled) when I download the data to my android device for offline use (as in this guide), I just get the feature class without the related table. How can I download the related table also? Any Help is appreciated!
... View more
02-28-2016
01:41 PM
|
0
|
1
|
3128
|
POST
|
I've developed an android app that finds the shortest route between two points with the driving directions in a spinner that lists the driving directions for the route. My next step is making use of these driving directions: I added the current location of the device as a point that is located via LocationManager, when the location changes, the point's location changes. More specifically, this point moves on the shortest route since I use this route to reach the destination point. With the point moving on the shortest route as I drive through this route, I want to link my location with the route, so when I am on an intersection and according to the shortest route I should turn right (my location point is on the intersection) a guiding driving direction appears that says "Turn right", at the next intersection I should turn left, and so another driving direction at that intersection says "Turn Left" Simply, making the location point connected to the shortest route and its associated driving directions as in google maps, Garmin GPS Any suggestion about the workflow that should be implemented here and its associated code? Any help is highly Appreciated! Best, Hani
... View more
02-23-2016
01:16 PM
|
0
|
0
|
1906
|
POST
|
How can I make the mapview rotation-aware: make the mapview rotate when I rotate my device?
... View more
02-23-2016
12:49 PM
|
0
|
2
|
2329
|
POST
|
No, it was registered with the Geodatabase, and this should insure non-duplicates
... View more
02-15-2016
07:10 AM
|
0
|
1
|
625
|
POST
|
I have a table registered with an enterprise GDB, and I can open it and explore its records, when I copy this table to a file GDB, it starts copying but an error that says "a row with this OID already exists" What might be the issue here? Thank you in advance, Hani
... View more
02-14-2016
11:00 PM
|
0
|
3
|
2432
|
POST
|
Thats exactly what I'm looking for Many thanks Joshua!
... View more
02-12-2016
08:46 AM
|
0
|
0
|
2719
|
POST
|
Is there a way to derive the area of intersection resulted by the intersection of two features after performing "SHAPE.StIntersects()"?
... View more
02-12-2016
03:46 AM
|
0
|
6
|
6574
|
Title | Kudos | Posted |
---|---|---|
1 | 04-21-2020 01:11 PM | |
1 | 10-28-2014 12:17 PM | |
1 | 12-04-2014 12:23 AM | |
1 | 02-22-2015 11:47 PM | |
1 | 03-23-2016 03:32 PM |
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|