POST
|
Want the ability to set the required components for item detail style meta data (or any metadata style) when users publish content/add items to our Organization. Currently we are trying to retroactively control sharing ability based on item completeness score. Would be nice to make certain components or all components a requirement at the point of creation. This is a duplicate post of: Control Required Item Detail Metadata for an Organ... - Esri Community
... View more
03-24-2025
08:51 AM
|
1
|
0
|
225
|
IDEA
|
https://community.esri.com/t5/arcgis-online-ideas/control-required-item-detail-metadata-for-an/idi-p/1594459 I just posted this as well. Would love to see this happen.
... View more
03-13-2025
08:25 AM
|
0
|
0
|
174
|
IDEA
|
Simply looking for the ability as an Administrator to set the required components for item detail style meta data when users publish content/add items to our Organization. Currently we are trying to retroactively control sharing ability based on item completeness score. Would be nice to make certain components or all components a requirement at the point of creation.
... View more
03-11-2025
12:44 PM
|
11
|
2
|
477
|
POST
|
user.update(categories = ["/Categories/States/Colorado"]) @TheisenThis finally started working for me. Seems like it just takes a minute at times for it to show in the org level categories.
... View more
10-15-2024
10:05 AM
|
0
|
1
|
1188
|
POST
|
Got it to apply finally. Here is what worked for me using the user.update() user.update(categories = ["/Categories/States/Colorado"]) I was trying to apply a category that was nested I suppose...
... View more
09-14-2023
09:40 AM
|
1
|
1
|
1727
|
POST
|
So in other words it indicates that it should work and it does sort of...but not really
... View more
09-14-2023
06:21 AM
|
0
|
0
|
1950
|
POST
|
This works on the actual user but I am having issues getting it to actually add it to the categories listed in my Organization level Members page.
... View more
09-14-2023
06:14 AM
|
0
|
4
|
1950
|
POST
|
What I am seeing is that the score is pretty much always 100 if using the World Geocoder. Of course you can create a view off of that but must share it publicly for those not logged in to use it. This is not an option for us. Using the world geocoder basically finds a match for anything. There has to be a better way to catch bad addresses?
... View more
03-14-2023
03:56 PM
|
1
|
1
|
2029
|
POST
|
Looks like the empty service is due to some date fields not being of type datetime and one of them being a Timestamp value in the excel sheet so I think this is the issue.
... View more
02-18-2022
01:03 PM
|
0
|
1
|
2634
|
POST
|
Python API 1.9.1 I am seeing something similar to a few other posts where publishing from a SDF like sdf.spatial.to_featurelayer() creates the layer but there are no features or there is some other problem. I have followed the https://developers.arcgis.com/python/sample-notebooks/html-table-to-pandas-data-frame-to-portal-item... example but in my case I only need to produce the SDF from known Lat Long fields so I use the following code basically I have tried all the methods out there and all produce broken services or services with features that only show up in the map viewer classic? sdf = pd.read_excel("combined gis.xlsx")
#used this as a work around to try instead of the from_xy() same result lat longs are backward in my sheet
sdf['SHAPE'] = sdf.apply(lambda row : arcgis.geometry.Geometry({'x': row['Long'], 'y': row['Lat'], 'spatialReference': {'wkid': 4326}}), axis=1 )
sdf.spatial.set_geometry(sdf['SHAPE'])
#used this but produces a empty service but the sdf plots fine in the map in my browser
# sdf = dataframe1.spatial.from_xy(dataframe1, x_column='Long', y_column='Lat')
print(len(sdf))
#filtered features with 0,0 in case that was causing a problem
sdf = sdf[sdf.Lat != 0]
print(len(sdf))
print(sdf.spatial.sr)
# print(sdf)
#the import just creates an empty service
# fc = gis.content.import_data(sdf)
#this also creates an empty service
lyr = sdf.spatial.to_featurelayer('EMPTY USELESS LAYER', gis)
#sdf plots fine in the jupyter notebook browser
map1 = gis.map()
map1.add_layer(sdf)
map1 This workflow has never worked for me and so I have always just saved things locally to a feature class in FGDB then published from there. If anyone has any ideas I am listening! from_xy is simple enough but there is something happening when I try to import it or publish it - maybe with the projection? Maybe I am missing something simple. I have looked at all samples and people have had similar issues but this scenario is even more basic than most and it doesn't work. Thanks!
... View more
02-17-2022
02:52 PM
|
0
|
4
|
2682
|
POST
|
I am seeing something similar where publishing from a SDF like sdf.spatial.to_featurelayer() creates the layer but there are no features. I have followed the https://developers.arcgis.com/python/sample-notebooks/html-table-to-pandas-data-frame-to-portal-item/ example but in my case I only need to produce the SDF from known Lat Long fields so I use the following code basically I have tried all the methods out there and all produce broken services or services with features that only show up in the map view classic? No Idea. sdf = pd.read_excel("combined gis.xlsx")
#used this as a work around to try instead of the from_xy() same result lat longs are backward in my sheet
sdf['SHAPE'] = sdf.apply(lambda row : arcgis.geometry.Geometry({'x': row['Long'], 'y': row['Lat'], 'spatialReference': {'wkid': 4326}}), axis=1 )
sdf.spatial.set_geometry(sdf['SHAPE'])
#used this but produces a empty service but the sdf plots fine in the map in my browser
# sdf = dataframe1.spatial.from_xy(dataframe1, x_column='Long', y_column='Lat')
print(len(sdf))
#filtered features with 0,0 in case that was causing a problem
sdf = sdf[sdf.Lat != 0]
print(len(sdf))
print(sdf.spatial.sr)
# print(sdf)
#the import just creates an empty service
# fc = gis.content.import_data(sdf)
#this also creates an empty service
lyr = sdf.spatial.to_featurelayer('EMPTY USELESS LAYER', gis)
#sdf plots fine in the jupyter notebook browser
map1 = gis.map()
map1.add_layer(sdf)
map1 This workflow has never worked for me and so I have always just saved things locally to a feature class in FGDB then published from there. If anyone has any ideas I am listening! from_xy is simple enough but there is something happening when I try to import it or publish it - maybe with the projection? Maybe I am missing something simple. I have looked at all samples and people have had similar issues but this scenario is even more basic than most and it doesn't work. Thanks!
... View more
02-17-2022
02:39 PM
|
0
|
0
|
928
|
POST
|
Earl Medina or Trevor McDonald I have the WMTS layer rendering fine in the beta Map Viewer but when I zoom in and back out its seems like it stops rendering the tiles that it had previously been rendering. data={"operationalLayers":[{
"templateUrl":f'{templateUrl}?api_key={api_key}',
"copyright":"Planet",
"fullExtent":{
"xmin":f'-{extent}',
"ymin":f'-{extent}',
"xmax":extent,
"ymax":extent,
"spatialReference":{"wkid":102100}
},
"id":"WebTiled_54", "title":"TestWebTiled",
"type":"WebTiledLayer",
"layerType":"WebTiledLayer",
"tileInfo": {},
"wmtsInfo": {
"url": f'{lyr.dataSource}',
"layerIdentifier": "Combined scene layer",
"tileMatrixSet": "GoogleMapsCompatible23"
},
"visibility":True,"opacity":1
}],
"baseMap":{"baseMapLayers":[{"id":"defaultBasemap", "layerType":"ArcGISTiledMapServiceLayer","url":"https://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer", "visibility":True,"opacity":1,"title":"Topographic"}],"title":"Topographic"},"spatialReference":{"wkid":102100,"latestWkid":3857}, "authoringApp":"WebMapViewer","authoringAppVersion":"4.3","version":"2.1"} Any thoughts on this based on the text parameters?
... View more
11-05-2020
07:37 AM
|
0
|
0
|
4460
|
BLOG
|
Not certain this will solve your issue but for a prefix be sure that your prefix itself does not include an underscore '_' since this is being added by the script after whatever prefix you choose. The fact that it is saying the tables already exist should not cause the tool to fail it should instead check the existing feature class and filter existing features.
... View more
09-10-2020
04:47 PM
|
0
|
0
|
7256
|
BLOG
|
https://community.esri.com/docs/DOC-15393-sync-feature-service-to-sde-py3x
... View more
09-02-2020
09:45 AM
|
1
|
0
|
7256
|
Title | Kudos | Posted |
---|---|---|
1 | 03-14-2023 03:56 PM | |
1 | 03-24-2025 08:51 AM | |
11 | 03-11-2025 12:44 PM | |
1 | 09-14-2023 09:40 AM | |
1 | 09-02-2020 09:45 AM |
Online Status |
Offline
|
Date Last Visited |
07-24-2025
12:28 PM
|