|
POST
|
Thank you for your reply. In my opinion, yes that would be a good enhancement idea. If you want to make the suggestion, please share the link here and I will give a thumbs-up.
... View more
06-03-2020
06:48 AM
|
1
|
0
|
4332
|
|
POST
|
Hi Joe, I have the same quesiton. Have you found something for this?
... View more
06-02-2020
12:35 PM
|
0
|
2
|
4332
|
|
POST
|
I am using arcpy v10.6.1 to update, in an edit session, a table stored on a Geodatabase Enterprise installed on Postgres. The python code is used via a toolbox in ArcMap Times to times, I have this weird error when running the tool: Runtimeerror: The operation was attempted on an empty geometry import arcpy, os
WORKSPACE = os.path.join(r"C:\\", "Script", "Connections", "PostgrSQL.sde")
SURVEY_FC = os.path.join(WORKSPACE, "SoumissionsEncombrants")
edit = arcpy.da.Editor(WORKSPACE)
edit.startEditing(False, False) #this line raises the error
edit.startOperation()
#here I use an update cursor on SURVEY_FC table
edit.stopOperation()
edit.stopEditing(True) The error is raised by the edit.startEditing(False, False) line I have try to set the edit.startEditing multiuser and undo parameters to True, but the same error is raised randomly. I have to close and re-open ArcMap/ArcCatalog and run the tool again to make it works. What could be the cause of the error?
... View more
06-02-2020
12:02 PM
|
0
|
0
|
1448
|
|
POST
|
I want to create categories based on dates, but the dataset is not filtered correctly when using pre-defined dates range like current week, next week or last week. For instance, current week does not include feature dated of 5/31/2020 8:00 PM. This feature is filtered in the last week category and those dated of 6/7/2020 8:00 PM are filtered in the current week instead of the next week. In the doc, its written that the current week start sunday at 12:00 AM. Date-based filter conditions—ArcGIS Dashboards | Documentation <<Week—A week starts at 12:00:00 a.m. on Sunday and continues for 7 consecutive days, ending at 11:59:59 p.m. on the seventh day, which is Saturday.>> Why the starting week date is not sunday at 12:00 AM in my dashboard?
... View more
06-01-2020
07:34 AM
|
2
|
6
|
4047
|
|
POST
|
I would like to write a definition query expression to get features where a date field is in the current week (starting Sunday ending Saturday) I have difficulties to imagine how using CURRENT_DATE would help me in that case. I want the definition expression to returns the same features from Sunday to Saturday. My feature class is stored in PostGreSQL (ArcGIS Enterprise)
... View more
05-27-2020
10:01 AM
|
0
|
2
|
2122
|
|
POST
|
I have a problem using an Arcade expression to create categories in order to style the features symbols in a web map on ArcGIS Online I want to style a feature symbol if a field value is greater than of 0. If the field value is 0, I want to use another field values as categories. I am using this Arcade expression: function get_symbol_cat() {
if ($feature.matelas_quantite > 0) {
return "matelas"
} else {
return Text($feature.collectefaite)
}
}
get_symbol_cat() However, when I go to the symbol styling menu, there is only the category "matelas" and "other" available. The categories of $feature.collectefaite are not available. This is really weird, because if I slightly modify the Arcade expression using greather than 1 instead of 0. It's working. function get_symbol_cat() {
if ($feature.matelas_quantite > 1) {
return "matelas"
} else {
return Text($feature.collectefaite)
}
}
get_symbol_cat() Any idea what could be wrong? Thank you P.S.: There is 385 features in the layer, 135 where $feature.matelas_quantite is greater than 0 and 250 where $feature.matelas_quantite is equal to 0.
... View more
05-26-2020
06:31 AM
|
0
|
1
|
922
|
|
POST
|
Hi Rachel, I did install the patch but the problem remains. Any other suggestions?
... View more
04-09-2020
07:15 AM
|
0
|
0
|
1498
|
|
POST
|
Thank you Rachel for your reply. I'll try installing the patch and see if the problem is solved.
... View more
03-18-2020
08:10 AM
|
0
|
0
|
1498
|
|
POST
|
Hi, I encounter a problem when using the suggest method of a geocode service hosted on ArcGIS Server Enterprise v10.6. If there is an apostrophe in the address name, the suggest method have difficulties to return suggestions. For instance, in the location table, I have addresses such: 351 RUE DE L'ERABLIERE When I use the suggest method with the text ERABLIERE, I dont have any result. When I use L'ERABLIERE, I have many results. If I use LERABLIERE, without the apostrophe, I have also many results. I would like to be able to use ERABLIERE and got results. Is there something I can do?
... View more
03-17-2020
09:42 AM
|
0
|
3
|
1563
|
|
BLOG
|
Hi! Is the Survey123 API source is available on github or elsewhere, or it is only CDN for now? Is there a way to host the whole survey123 application on our own server like we can do it with GeoForm? As I can see this API is very limited and we still cannot have access to the survey directly using javascript because it is embedded inside an iframe. Thank you very much for this! That will be very useful.
... View more
03-12-2020
06:29 AM
|
0
|
0
|
18748
|
|
IDEA
|
You could do something like this to make the script run completely only when published on server: from platform import node
if node() == 'your_server_machine_name':
#here you put your gp service script When you run the script with empty input parameters on your desktop, there will be no output so no default value when published to the server
... View more
03-11-2020
10:24 AM
|
0
|
0
|
3907
|
|
POST
|
Contrary to what the documentation said, the font file does not need to be installed in the server C:\windows\fonts directory when you publish the service. It seems the font is stored in the mxd per symbol. A workaround I have found is: switch the custom font that was updated to Arial or any windows font. save the mxd publish the service to ArcGIS Server switch back to the updated custom font save mxd publish the service to ArcGIS Server
... View more
02-20-2020
07:44 AM
|
0
|
0
|
2145
|
|
POST
|
I wonder if it is possible to change the displayField of a feature class that is returned from a Feature Service in ArcGIS Server Enterprise I am using ArcMap v10.6.1 Thank you.
... View more
02-12-2020
10:31 AM
|
0
|
1
|
1502
|
|
POST
|
I can't do that, that's a production server and the service is not published into Portal. I have noticed that the font finish to be updated on ArcGIS Server after many delete/update/publish tries, but I can't find a reliable way to update it.
... View more
02-06-2020
12:07 PM
|
0
|
0
|
2145
|
|
POST
|
Hi Jonathan, do you mean restarting the Map Service or the whole server? Yes, I have restarted the Map Service many times. I have deleted and republished it many times too.
... View more
02-06-2020
10:56 AM
|
0
|
2
|
2145
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-13-2025 05:45 AM | |
| 2 | 06-03-2024 10:33 AM | |
| 2 | 05-14-2025 10:45 AM | |
| 2 | 04-12-2022 07:00 AM | |
| 1 | 02-26-2025 05:37 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|