|
POST
|
There may be dumpfiles at C:\Users\<username>\AppData\Local\ESRI\ErrorReports which you can share with support. Succes!
... View more
02-01-2023
03:21 AM
|
0
|
0
|
1170
|
|
POST
|
Hi Nico, So I have this dji pro 4 v2 with a screen attached controller. Do I understand correctly that I can not use site scan on an ipad? If that is the case, how can I upload a flightplan to the drone? Thanks in advance for your answer. Kind regards, Bert (owning a Pro4 and sitescan)
... View more
01-02-2023
05:06 AM
|
0
|
3
|
1264
|
|
POST
|
and then I asked: "can you write a python script to backup all layers in an arcgis online organisation" response was: import requests
import json
# Set the base URL for the ArcGIS REST API
base_url = "https://www.arcgis.com/sharing/rest"
# Set the organization's name and the username and password of an account with privileges to access the organization's content
org_name = "your_organization_name"
username = "your_username"
password = "your_password"
# Use the ArcGIS REST API to authenticate the user and get an access token
auth_url = f"{base_url}/generateToken"
auth_params = {
"username": username,
"password": password,
"client": "referer",
"referer": f"https://{org_name}.maps.arcgis.com",
"f": "json"
}
auth_response = requests.post(auth_url, auth_params)
auth_response_json = auth_response.json()
access_token = auth_response_json["token"]
# Use the ArcGIS REST API to search for all layers in the organization
search_url = f"{base_url}/search"
search_params = {
"q": "type:\"layer\" AND owner:{org_name}",
"token": access_token,
"f": "json"
}
search_response = requests.get(search_url, search_params)
search_response_json = search_response.json()
# Iterate through the search results and download each layer
for result in search_response_json["results"]:
# Get the layer's ID and URL
layer_id = result["id"]
layer_url = result["url"]
# Use the ArcGIS REST API to export the layer as a GeoJSON file
export_url = f"{base_url}/content/items/{layer_id}/data"
export_params = {
"token": access_token,
"f": "geojson"
}
export_response = requests.get(export_url, export_params)
# Save the GeoJSON file to a local file
with open(f"{layer_id}.geojson", "w") as f:
f.write(export_response.text) And it ended with
... View more
12-18-2022
11:38 PM
|
0
|
0
|
10842
|
|
POST
|
I'm trying AI ChatGPT, impressive: Keep in mind i'm using natural language and this was it's first response. As a single gis person in my company all assistance is welcome. (https.openai.com)
... View more
12-18-2022
11:30 PM
|
5
|
16
|
13148
|
|
POST
|
HI, New Site Scan user here, we have just received the license and I wonder why I see four Esri Staff? Is this supposed to happen? Thanks for your time. Bert
... View more
12-13-2022
03:48 AM
|
0
|
4
|
1575
|
|
POST
|
Survey123 connect 3.16.106 I can update the marker in the geopoint part of the form using symbol=pin.png in body::esri:style after adding the png to the media folder. Works like a charm. But I would like to update the blue markers in the inbox map so they cover less of my underlying symbology. I've found a style column in the settings tab but symbol=pin doesn't seem to work. Does anybody know how to do this? Is it possible at all? Thanks for your time, Bert
... View more
11-15-2022
02:29 AM
|
0
|
3
|
1876
|
|
POST
|
Hi Chris, Yes, removing the table from the webmap also removes all 'related stuff' Thank you.
... View more
11-14-2022
11:26 PM
|
0
|
0
|
1507
|
|
POST
|
I have field workers using a tree assessment survey123 with a tree feature class and related table with their inspections. They use a field map to orientate themselves because the map function in Survey123 is very limited. I want the popup to show last inspection date and status. In the map viewer on my desktop this shows up as expected: (last inspection date and status are fields in the feature layer, copied from the inspections table during creation) But in Field maps this shows all kind of extra related fields, including the option to add inspections (Which will confuse my fieldworkers and mess up my symbology) Field maps popup of the same webmap: So I would like to know how I can disable viewing the related records in the popup of fieldmaps without disabling the popup completely. Making the feature layer and table read only is not an option since they should be able to add inspections using survey123 Thank you for your time reading this, Regards, Bert
... View more
11-14-2022
06:45 AM
|
0
|
3
|
1542
|
|
POST
|
Hi Stuart, Did you ever find a solution to this? have a nice day, Bert
... View more
10-31-2022
01:03 AM
|
0
|
0
|
324
|
|
POST
|
(Pro 3.0.2) Last year I made a custom arcade expression for my symbology: worked fine and it still does. Yesterday I joined the feature with an excel table, shows up as expected after import symbology. I copied that joined table 'feature class to feature class' to have a permanent feature including the joined data and imported the symbology once again but I can't get it to work: nothing shows in my map. After the original imported expression didn't work I tried this (following set-custom-expressions-for-symbology 😞 but nothing visible in the map, after some time this shows up in the symbology pane: what am I missing here? Solved: After more errors like the one above: I manually re-created the expression: which renders perfectly now, I fail to see the difference, no idea what actually happened Have a nice day! Bert
... View more
09-28-2022
12:37 AM
|
0
|
0
|
587
|
|
POST
|
We are in the process of deciding whether to use Sitescan or Drone2Map. My issue at the moment is Chrome crashes quite fast when using Sitescan, (looking at orthomosaic, showing elevation data for example). I'm also confined to a Citrix environment. Are there any recommended browsers or Citrix settings for using Sitescan? Thanks in advance for your time. Regards, Bert
... View more
08-29-2022
03:11 AM
|
0
|
1
|
737
|
|
POST
|
someone mentioned to install dotnet desktop in another post on geonet. That might be an idea to test.
... View more
07-18-2022
01:56 AM
|
0
|
0
|
484
|
|
POST
|
Hi Josh, My legend aligns exactly as your example but I find that confusing. Having the patch align with the text (Antartica, Carribean) inbetween lines (Asiatic Russia, Central America, Central Asia) or with the middle line (Australia/New Zealand). I would much more prefer to align the patch with the first word in the description, how can I do that? I'm using Pro 2.9.3, thanks in advance for your time. esri helpdesk suggests I can convert to graphic and edit the graphic. Does not sound like a neat solution... Bert
... View more
06-08-2022
10:28 PM
|
0
|
0
|
4547
|
|
POST
|
I want to minimise user input so I use this arcade to auto-fill the date in a form Test result is as expected, so I looked at the app. And that is what I would like to see in the app as well, So we move outside and collect polygons. Back in the office -using PRO- the date is somewhere yesterday: (following records are created on may 11th) I have more records and they are all antidated about a full day. What am I missing here? Field Maps 22.2.0 build 736 ArcGIS PRO 2.9 patch 3 Thanks for you time. Bert
... View more
05-11-2022
07:17 AM
|
1
|
2
|
866
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 10-08-2025 03:45 AM | |
| 1 | 10-01-2025 06:55 AM | |
| 1 | 07-01-2025 05:46 AM | |
| 1 | 06-02-2025 05:19 AM |