|
POST
|
You came to the right place but what is the error message Shaw? Do you try to run Arcgis Pro? You can check your laptop's resources here : https://pro.arcgis.com/en/pro-app/latest/get-started/arcgis-pro-system-requirements.htm
... View more
05-23-2023
06:50 AM
|
1
|
0
|
800
|
|
POST
|
I'm still learning Maria 🙂 but i've managed to fly and import pictures from the drone's SDcard directly into the iPad using a cardreader and thus upload them to sitescan cloud. Copying pictures from the drone to the iPad using sitescan on the iPad proved to be very, very slow and noisily. Almost holidays now, I will be back 22th of May and we'll take it from there. Bert
... View more
05-03-2023
04:10 AM
|
0
|
0
|
1673
|
|
POST
|
This project (drone flying) has all kinds of delays but the most recent problem is I do have serious trouble uploading the images. Last week I flew and gathered 160+ images. I could see them on the iPad but got an error when trying to upload to sitescan cloud. While being logged in as admin with an operator role. Now I return to work and I can't even find the pictures in my sitescan flight. It's as if I didn't fly at all (I could find the images in a folder on the drone's SDcard so I didn't dream this 🙂 Also, browsing through the filesystem of the iPad I can see the folder with the pictures. Why don't they show up in sitescan flight then? What am I doing wrong? Kind regards, Bert
... View more
04-10-2023
11:20 PM
|
0
|
0
|
1726
|
|
POST
|
We ended up buying an SDK controller (original controller for sale). Everything is fine now. Buyer beware if you order a Phantom 4 RTK, make sure the package comes with an SDK controller. Bert
... View more
04-03-2023
03:20 AM
|
0
|
0
|
1468
|
|
POST
|
I hope this helps someone in a similar situation; I'm new to a Phantom 4 RTK, SDK controller with iPad air & Sitescan. Unable to connect to the RTK service while testing near my office. Turns out the iPad prefers wifi (heavily filtered) over 4G. Switching off wifi so 4G is the only connection possible solved this. Took me some time to figure this out, kudo's to the supplier and my IT guys. Regards, Bert
... View more
03-08-2023
12:08 AM
|
2
|
0
|
934
|
|
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
|
1441
|
|
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
|
1580
|
|
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
|
12360
|
|
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
|
15308
|
|
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
|
1907
|
|
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
|
2274
|
|
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
|
2029
|
|
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
|
2064
|
|
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
|
494
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 12-09-2025 05:56 AM | |
| 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 |