|
DOC
|
@OliviaE the File Geodatabase is empty when I download and extract the Zip. Can you upload another copy?
... View more
10-30-2024
01:21 PM
|
0
|
0
|
17919
|
|
DOC
|
Hi @OliviaE, no, the size of the data should not be an issue. Can you share your service to an AGOL group and invite my account (jskinner_rats)? I can take a look to see if anything jumps out at me.
... View more
10-30-2024
10:48 AM
|
0
|
0
|
17929
|
|
POST
|
If you specify Add Field Values as Suffix it will handle duplicates by adding an _1, _2, etc.
JakeSkinner_2-1730240653065.png
JakeSkinner_1-1730240612848.png
... View more
10-29-2024
03:23 PM
|
1
|
0
|
1908
|
|
POST
|
Hi @nate0102,
Could you post your code? Below is an example I was able to get to work:
from arcgis.gis import GIS
# Variables
username = 'jskinner_rats'
password = '********'
itemID = '5b86f23053fc40aebb7197ce735a4dfc'
# Connect to portal
print("Connecting to AGOL")
gis = GIS("https://www.arcgis.com", username, password)
# Reference Table
print("Referencing table")
fLayer = gis.content.get(itemID)
editTable = fLayer.tables[0]
addFeatures = [
{
'attributes': {
'lga': 'test',
'scientificName': 'Acacia longifolia',
'classificationLocal': 'Very High Priority',
'localScientific': 'Acacia longifolia'
}
},
{
'attributes': {
'lga': 'test',
'scientificName': 'Amaryllis belladonna',
'classificationLocal': 'High Priority',
'localScientific': 'Amaryllis belladonna'
}
}
]
# Add record
print("Adding records")
for record in addFeatures:
editTable.edit_features(adds=[record])
print(result)
print('Finished')
... View more
10-29-2024
06:43 AM
|
0
|
1
|
1734
|
|
POST
|
Hi @SamBelisleLID1990, take a look at the Export Attachments tool, which is new at ArcGIS Pro version 3.3. This tool provides options on how to handle the name format of the exported attachments:
JakeSkinner_0-1730206441629.png
... View more
10-29-2024
05:54 AM
|
0
|
2
|
1928
|
|
POST
|
Try running the Append with the 'NO_TEST' option for the schema_type parameter.
... View more
10-25-2024
09:57 AM
|
1
|
0
|
1617
|
|
DOC
|
Hi @stevetaylor_perth,
No, the version discrepancy should not be an issue for web maps.
... View more
10-25-2024
05:39 AM
|
0
|
0
|
37394
|
|
POST
|
Hi @CW-GIS can you post an example of your fieldmap file?
Also, have you seen the example of using Field Mappings in the following example?
... View more
10-23-2024
12:22 PM
|
1
|
0
|
1455
|
|
DOC
|
@StuartMoore yes, there is an Environment Variable set to True in this script to preserver GlobalIDs:
JakeSkinner_0-1729687387786.png
... View more
10-23-2024
05:43 AM
|
0
|
0
|
18034
|
|
DOC
|
@Jay_Gregory the best way to find out would be to publish a sample service and test your script. I incorporated the upsert option so the feature service is not truncated. This is helpful if the Append operation fails, you are not left with an empty feature service.
... View more
10-22-2024
12:39 PM
|
0
|
0
|
18054
|
|
POST
|
Hi @Jay_Gregory, I've recommended the following script to several users who have had success. Just today I updated it to include upsert functionality.
... View more
10-17-2024
11:17 AM
|
1
|
1
|
2059
|
|
POST
|
Hi @RobinRutten_ams, which AGOL Assistant are you using? I recommend the new one as it allows you to view the Item Resources:
JakeSkinner_0-1729086154439.png
I wrote some migration tools that copy a Story Map from Org to another that may be helpful. You can take a look at the Copy Story Maps.py script to see how to update the Item Resources, and also how to publish the Story Map.
... View more
10-16-2024
06:44 AM
|
1
|
0
|
1311
|
|
POST
|
Hi @AFackler_NAPSG,
Try the following:
from arcgis.gis import GIS
# Variables
agolAdmin = 'jskinner_rats'
agolPassword = '*******'
agolUser = 'fielduser'
# Connect to AGOL
print('Connecting to AGOL')
gis = GIS('https://www.arcgis.com', agolAdmin, agolPassword)
print("Assign Locating Sharing license")
user_license = gis.admin.license.get('ArcGIS Location Sharing')
ent = 'locsharing'
user_license.assign(username=agolUser, entitlements=ent)
... View more
10-14-2024
05:54 AM
|
1
|
1
|
1219
|
|
POST
|
Hi @cweirpatrickco, do you have any AGOL imagery basemaps (i.e. World Topographic Map, World Hillshade) added to the Pro map you are trying to package? If so, these will need to be removed to run the tool successfully.
... View more
10-14-2024
03:57 AM
|
0
|
1
|
1447
|
|
DOC
|
@neomapper can you share the AGOL service to a Group and invite my AGOL account (jskinner_rats)? I can take a look.
... View more
10-07-2024
06:37 AM
|
0
|
0
|
18164
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-08-2026 12:27 PM | |
| 4 | 05-07-2020 05:14 PM | |
| 1 | 03-25-2026 04:16 AM | |
| 1 | 03-16-2026 01:00 PM | |
| 1 | 12-22-2025 10:39 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|