POST
|
Hello Asaf EvenPaz i generate a tpkx in arcgis pro 2.4. i create a test survey in connect because i wanted to add the tpkx file so when people download the survey with the tpk file for the offline map purposes i create a media folder and added the file there but did not worked. i download the survey to survey123 and create a map folder and added the file but i have this message how can i add the tpkx file now in connect so when i download the survey i came with the offline map file? this is the tpk file i used map.zip - Google Drive regards, diego llamas
... View more
12-02-2019
12:55 PM
|
0
|
2
|
909
|
POST
|
Recover data from a mobile device Troubleshoot—Survey123 for ArcGIS | Documentation
... View more
11-15-2019
11:38 AM
|
0
|
0
|
428
|
POST
|
Hello, I am having some problems with my old android device and I am not able to send data from it to AGOL. Is it possible, if I have the arcgis folder from the Android device in my PC, Can I get the data that i was not able to sync to AGOL so I do not lose data? if this is possible, where in the arcgis forlder that I copied from the device i will find that data? can I access this data with Pro or ArcMap? Thanks, Diego Llamas
... View more
11-15-2019
11:16 AM
|
0
|
1
|
454
|
POST
|
Hello, I would like to know if is possible to configure the image of the map when I export a report in survey123.arcgis.com for a larger scale. this is my default scale in the report And i would like that by default this scale be shown is it possible? how can this be reach? Regards, Diego Llamas
... View more
11-12-2019
11:55 AM
|
0
|
1
|
414
|
POST
|
Hello, We did an Enterprise implementation in Azure using Cloud builder. With cloud builder the VM is created automatically. My question is, after cloud builder is done and create the VM, is there any repercussion if we add this VM to the domain after Enterprise is running fine? Regards, Diego Llamas
... View more
11-12-2019
09:32 AM
|
0
|
0
|
269
|
POST
|
Ok, so I have this layer in a web map with point features that represent a type of incident. Each incident has a date of occurrence (a column with a date format named fecha) associated to it with no information on time (dd/mm/yyyy). I want the web map to filter the layer so that it only shows incidents that occurred this year by editing its JSON file (using AGOL Assistant) and inserting a dynamic date SQL Query. Here is what I’ve been trying to use: (EXTRACT(YEAR FROM fecha) = EXTRACT(YEAR FROM CURRENT_DATE)) The query filters the layer by equating the year from the DATE column (fecha) to the year corresponding to the current date. The query works, but it returns all the incidents that occurred on the current year (2019) except for December 31 of that year. However, it also includes the incidents occurring on December 31 of the previous year (2018). I don’t know if someone has already experienced this and if there’s a workaround.
... View more
10-25-2019
06:07 AM
|
1
|
1
|
945
|
POST
|
Hello James, any chance you have the Enhancement number for this? Regards, DLL
... View more
10-10-2019
01:37 PM
|
0
|
1
|
1255
|
POST
|
We've noticed that when we install an ArcGIS Pro Add-In (Crime Analysis), it creates a path within the user's files. When we place a tool from this add-in inside a model and try to run it with another user or from another computer, we run into an issue: the model won't run because the Crime Analysis tool was placed as the first user and the connection to that tool needs to be established again (the path in File Explorer). Is there any other way to install an add-in that won't depend on users, so anyone that has Crime Analysis installed can run the model from their user?
... View more
09-25-2019
08:04 AM
|
0
|
0
|
400
|
POST
|
Hi, Phillip Thank you for your response. We got to the office this morning to find this serious issue. We found that Survey123 Classic (https://play.google.com/store/apps/details?id=com.esri.survey123classic) does not have the issue, since it is a previous version of Survey123. I tried the 3.6.69 version through Testflight but the issue persists. This means we're still stuck on iOS devices which do not offer a previous version of the app, and the beta doesn't seem to fix the problem.
... View more
08-06-2019
07:51 AM
|
0
|
1
|
2235
|
POST
|
Hello, I created a WCF Web Service that uses ArcGIS .NET SDK 10.2.7. In the web service I am calling a secured geoprocessing task. Before calling the geoprocessing task I’m logging in to the portal using IdentityManager so I have access to the secured geoprocessing task. However the call to the geoprocessing task SubmitJobAsync is returning a status of New and jobID null. The result should return a status of Submitted along with a JobID. The geoprocess is created with ArcGIS Server 10.7. I wasn’t able to find any documentation regarding that case and how to deal with it. Code snippet for login: public async Task GenerateToken() { try { var opt = new GenerateTokenOptions(); opt.TokenAuthenticationType = TokenAuthenticationType.ArcGISToken; //orig var cred = await IdentityManager.Current.GenerateCredentialAsync(config.PortalAuthentication.ServiceUri, config.PortalAuthentication.username, config.PortalAuthentication.password, opt); //test //var cred = await IdentityManager.Current.GenerateCredentialAsync(config.PortalAuthentication.ServiceUri, // config.PortalAuthentication.username, // config.PortalAuthentication.password); IdentityManager.Current.AddCredential(cred); } catch (ArcGISWebException webExp) { Debug.WriteLine("Unable to authenticate : " + webExp.Message); } catch (Exception exception) { Debug.WriteLine("Unable to authenticate : " + exception.Message); } } Snippet for geoprocessing task call: public async Task<string> CallingMaps(string template, string array, string geo, string ctrl) { DBConnection connection = new DBConnection(); string storePath = string.Empty; try { //List<Objects.OrderItemCatastral> allCat //var serviceURL = "http://mapas.gmtgis.net/arcgis/rest/services/Geoprocesos/ProductosCartograficos/GPServer"; //string taskName = "Mapas de Catastro"; var gp = new Geoprocessor(new Uri(config.MapasCatastral)); //Set up the parameters var parameter = new GPInputParameter(); var layoutTemplate = new GPString("Layout_Template", template); var pageRange = new GPString("Page_Range", array); var georef = new GPString("Georef_info", geo); var control = new GPString("Control", ctrl); parameter.GPParameters.Add(layoutTemplate); parameter.GPParameters.Add(pageRange); parameter.GPParameters.Add(georef); parameter.GPParameters.Add(control); //Execute task with the parameters collection defined above var result = await gp.SubmitJobAsync(parameter); while (result.JobStatus != GPJobStatus.Cancelled && result.JobStatus != GPJobStatus.Deleted && result.JobStatus != GPJobStatus.Succeeded && result.JobStatus != GPJobStatus.TimedOut && result.JobStatus != GPJobStatus.Failed) { try { result = await gp.CheckJobStatusAsync(result.JobID); Debug.WriteLine(result.JobStatus +" Catastral "); await Task.Delay(5000); } catch (System.Threading.Tasks.TaskCanceledException) { //connection.LogTransaction(ctrl, "ThreadAbortEsception"); Debug.WriteLine("Cancel Exception"); connection.UpdateFailedCad(ctrl, array, "false"); } } if (result.JobStatus == GPJobStatus.Succeeded) { var outParam = await gp.GetResultDataAsync(result.JobID, "Output_File") as GPDataFile; if (outParam != null && outParam.Uri != null) { //OficialCatUri = outParam.Uri; string fileName = @"\" + template + ".pdf"; try { storePath = MakeStoreFolder(ctrl, fileName); string save = LoadUriPdf(outParam.Uri, storePath, fileName); Objects.path = storePath; } catch (Exception e) { //Debug.WriteLine("Error: ", e.ToString()); connection.LogTransaction(ctrl, e.Message); Objects.path = "Error"; } } } else { if (result.JobStatus ==GPJobStatus.Failed){ return "failed"; } if (result.JobStatus == GPJobStatus.TimedOut) { return "time out"; } } } catch (Exception e) { connection.LogTransaction(ctrl, e.Message +" "+ ctrl); } return storePath; } Values returned by result after calling await gp.SubmitJobAsync(parameter): However if I call the geoprocessing task from rest endpoint it works and sends the correct output. Is there something wrong with the authentication or the code? Should I deal with status New and no JobID or any ideas on how do I fix this situation? do i need to migrate to a newer version of the sdk? Regards, Diego Llamas
... View more
07-12-2019
11:30 AM
|
0
|
1
|
625
|
POST
|
My colleague found them! Thank you for your assistance.
... View more
06-28-2019
05:41 AM
|
1
|
0
|
1484
|
POST
|
Leo, thank you for your reply. Unfortunately, your recommendation did not work. It was the method we thought we could do it, but the filter uses a custom widget instead of a Select from Dojo.
... View more
06-28-2019
05:38 AM
|
0
|
0
|
834
|
POST
|
Hello, I am not good with python, I am new. I am trying to synchronize changes from a replica between databases and i want this to run automatically every day with a task scheduler. In esri help i found this sintaxis Sintaxis SynchronizeChanges_management (geodatabase_1, in_replica, geodatabase_2, in_direction, conflict_policy, conflict_definition, reconcile)
And I did this script:
message = "Sync replicas CRIMPRDB to cdprdb01...";print message
# Process: Synchronize Changes (80)
arcpy.SynchronizeChanges_management(crim-oradb-01-sde:oracle$crim-oradb-01/cdprdb, "MAPUSER.CD_PARCELAS", cdprdb01-sde:sqlserver:cdprdb01-cdprgis, "FROM_GEODATABASE1_TO_2", "IN_FAVOR_OF_GDB1", "BY_OBJECT", "DO_NOT_RECONCILE")
message = "---Sync de replica CRIMPRDB to cdprdb01 successful";print message
arcpy.AnalyzeDatasets_management(input_database="Database Connections/gisadmin@cdprdb01.sde", include_system="NO_SYSTEM", in_datasets="cdprgis.GISADMIN.Parcelario/cdprgis.GISADMIN.Parcelario;cdprgis.GISADMIN.Parcelario_Web/cdprgis.GISADMIN.ParcelasContactos;cdprgis.GISADMIN.Parcelario_Web/cdprgis.GISADMIN.ParcelasContactos04242019_1", analyze_base="ANALYZE_BASE", analyze_delta="NO_ANALYZE_DELTA", analyze_archive="NO_ANALYZE_ARCHIVE")
arcpy.Compress_management(in_workspace="Database Connections/sde@cdprdb01.sde")
arcpy.RebuildIndexes_management(input_database="Database Connections/gisadmin@cdprdb01.sde", include_system="NO_SYSTEM", in_datasets="cdprgis.GISADMIN.Parcelario/cdprgis.GISADMIN.Parcelario;cdprgis.GISADMIN.Parcelario_Web/cdprgis.GISADMIN.ParcelasContactos;cdprgis.GISADMIN.Parcelario_Web/cdprgis.GISADMIN.ParcelasContactos04242019_1", delta_only="ALL")
print"Indices Reconstruidos para Parcelario"
message = "--Replica Sync Completed Succesfully";print message My doubt is with geodatabase 1 and 2 part, where do I get the connections? how do I write those? I found this in my syn changes wizard and I wrote those, Is that correct? Thanks for your help! Diego Llamas George Thompson
... View more
06-27-2019
10:40 AM
|
0
|
2
|
672
|
POST
|
Hello Xiaomeng Zheng tried to change my database to use Portal user store, but when i did that it gave me an schema error so I revert it again. Do I need to recreate my database? and export and import my workflows created ? I will check the wfm web app the authentication mode. Thanks for your help! Diego Llamas
... View more
06-19-2019
01:36 PM
|
0
|
1
|
919
|
POST
|
Hello, I am using Workflow manger (WFM) web and desktop and it was working fine with ArcGIS Server, but we implement ArcGIS Enterprise and after we federate Server with Portal ( the security now, as we know is managed by Portal), I am not able to access to WFM Web page. We are getting this error. WFM database was created using a database user and WFM service and AOI service was created connected to WFM administrator using the DB user used to create the WFM schema. What do I need to do to be able to access WFM web if my Server is federated? if I remove federation, WFM web works fine. Regards, Diego
... View more
06-17-2019
12:05 PM
|
0
|
3
|
1159
|
Title | Kudos | Posted |
---|---|---|
1 | 10-25-2019 06:07 AM | |
1 | 03-23-2017 10:16 AM | |
1 | 03-02-2017 11:24 AM | |
1 | 08-26-2015 08:55 AM | |
2 | 05-20-2020 12:47 PM |
Online Status |
Offline
|
Date Last Visited |
09-16-2024
04:36 PM
|