|
POST
|
Still does not work in 2.9.3 - Copy Features works but not Make Feature Layer. Code runs fine in 2.4.2. Code runs fine in 2.9.3 when ran in the interactive widow. If fails when run in a Toolbox. Tempcopy = arcpy.CopyFeatures_management(ParOrionLayer, "memory/tempParReg")
arcpy.MakeFeatureLayer_management(Tempcopy, "memory/tempO") Traceback (most recent call last):
File "<string>", line 91, in execute
File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\__init__.py", line 1287, in Describe
return gp.describe(value, data_type)
File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\geoprocessing\_base.py", line 384, in describe
self._gp.Describe(*gp_fixargs(args, True)))
OSError: "memory/tempO" does not exist
Failed to execute (PDFTool). With addLayer ParOTempcopy = arcpy.CopyFeatures_management(ParOrionLayer, "memory/tempParReg")
ParOrion = arcpy.MakeFeatureLayer_management(ParOTempcopy, "memory/tempOrion")
m.addLayer(ParOrion, "TOP") File "<string>", line 85, in execute
File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\utils.py", line 191, in fn_
return fn(*args, **kw)
File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\_mp.py", line 1843, in addLayer
return convertArcObjectToPythonObject(self._arc_object.addLayer(*gp_fixargs((add_layer_or_layerfile, add_position), True)))
ValueError: memory/tempOrion
... View more
06-16-2022
08:40 AM
|
3
|
0
|
7244
|
|
IDEA
|
User error and incorrect information from ESRI Tech support. This is already implemented.
... View more
05-16-2022
09:21 AM
|
0
|
0
|
944
|
|
IDEA
|
Both Enterprise portal and/or AGOL using a server feature service. It's when I try and create a Form. According to this: https://doc.arcgis.com/en/field-maps/android/help/configure-the-form.htm Note: Adding basic form elements is not currently supported in ArcGIS Enterprise.
... View more
05-13-2022
07:30 AM
|
0
|
0
|
975
|
|
IDEA
|
I need to be able to edit a Feature Service in Field Maps Smart Forms. Currently I get the message "Basic elements are not available Contact your administrator". ESRI Tech support says this in a known limitation. We were able to do this with Collector and Survey123. It seems like a major thing to miss before rolling out Field Maps and discontinuing support in Collector.
... View more
05-12-2022
08:35 AM
|
2
|
4
|
1009
|
|
POST
|
Have you tried managing the templates before publishing? Just set the template property of the MXCREATIONSTATE attribute to 1 before publishing. This is how I manage something very similar. I am not sure how it handles edits if they already have a different value, but this could probably be handled in the in the domains of the database and setting the properties of split/merge policy to default. You will also need to change the default value of feature class' field value too. Do all this before publishing as well. https://pro.arcgis.com/en/pro-app/latest/help/editing/create-a-feature-template.htm Edit: Here is an example. To not confuse you, the Template Properties I did in pro, and the others I used old school ArcCatalog.
... View more
03-25-2022
10:39 AM
|
1
|
2
|
1530
|
|
POST
|
Could you not use an if statement? If the value of 0 is returned use this template that doesn't include mediainfo, else use this other template that includes mediainfo.
... View more
01-19-2022
09:23 AM
|
0
|
0
|
2770
|
|
POST
|
In the new MapView do: zoom: 1 Play around with the value until you get the desired zoom level.
... View more
01-19-2022
09:09 AM
|
0
|
0
|
784
|
|
POST
|
It might be that you are using a different theme or version. You can set the symbology to whatever you desire. /// Style the Sketch Symbol
const fillSymbolsketch = {
type: "simple-fill",
color: [255,10,2, 0.5],
outline: {
color: [230,0,0],
width: 1
},
style: "frontward-diagonal"
};
// Construct sketch graphics layer
const sketchlayer = new GraphicsLayer({
symbol: fillSymbolsketch,
title: "Sketch Layer",
listMode: "hide"
});
// create the sketch widget
const sketch = new Sketch({
layer: sketchlayer,
view: theView,
position: "top-left",
layout: "vertical",
index: 5,
// graphic will be selected as soon as it is created
creationMode: "update"
});
... View more
01-19-2022
08:35 AM
|
0
|
0
|
642
|
|
POST
|
Is there a way to limit authentication using OAuth 2.0 to specific users? It seems to me using any of ESRI's authentication solutions allow anyone that has an Online login, even those outside my organization, access to the application. I must be missing something! Any help is greatly appreciated. The goal is to have both public access and registered user access buttons. The difference in what they can do/see will be handled in the code depending on which button they push. I want to allow access to the registered users to not be just anyone with an Online login, only specific users.
... View more
01-19-2022
07:19 AM
|
0
|
0
|
622
|
|
POST
|
I was able to achieve what I needed to do with .esri-sketch__tool-section.
... View more
12-02-2021
10:52 AM
|
0
|
0
|
1129
|
|
POST
|
In 4.19 the buttons for the sketch widget css were .esri-sketch__button. Now in 4.21 they are just buttons. This is making it really hard to resize the sketch buttons. I can resize the panel(.esri-sketch__panel), but the buttons remain the same. I might be missing something. Can someone tell me how to resize just the sketch buttons in 4.21?
... View more
12-02-2021
09:01 AM
|
0
|
1
|
1161
|
|
POST
|
Thanks. This is a simplified problem, I have many attributes I need to query. ESRI is logging it as an enhancement instead of a bug, even though it is a basic very simple sql statement, so it might be a long time until it gets fixed. They need to update their documentation that supportsOutFieldSQLExpression is not supported currently with rest endpoints.
... View more
11-19-2021
11:35 AM
|
0
|
1
|
1799
|
|
POST
|
According to the documentation as of 10.9, hosted feature services support SQL statements. https://developers.arcgis.com/rest/services-reference/enterprise/query-feature-service-layer-.html Hosted feature services on a relational data store support SQL expression for the outFields parameter when supportsOutFieldSqlExpression, under advancedQueryCapabilities, is true. Hosted feature services in ArcGIS Online already support this functionality. https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html If specifying outFields as expressions on a feature service-based FeatureLayer, the service capabilities advancedQueryCapabilities.supportsOutFieldSQLExpression and useStandardizedQueries must both be true. But a very simply expression does not work. PartyName LIKE '%driscoll%', on this layer: https://www.jfksgis.us/server/rest/services/Hosted/Parcel_hosted/FeatureServer/0/ The SQL query works fine in Pro and for Online services: https://services1.arcgis.com/tpr1e2h7Rmn9C5oc/ArcGIS/rest/services/JFKS_GIS_ParcelOrion_Public_V4/FeatureServer/0 So is this not actually supported in server 10.9?
... View more
11-19-2021
09:12 AM
|
0
|
3
|
1848
|
|
POST
|
I believe they are Sony cameras, but I am not sure what type. If it is not on the list, find one similar, figure out the specs of the camera, and enter them manually.
... View more
07-15-2021
01:40 PM
|
0
|
2
|
2618
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | a week ago | |
| 1 | 2 weeks ago | |
| 1 | 04-12-2021 09:58 AM | |
| 2 | 03-18-2025 10:32 AM | |
| 1 | 07-28-2020 11:56 AM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|