|
POST
|
I am not sure what you are trying to do. Are you wanting to truly georeference this image onto a map (meaning that the image will be superimposed onto the map surface and stretched and skewed to make it fit on the ground)? Or are you just wanting your point location (the GPS lat/long) to remain the same but have the image be a TIF instead of a JPG?
... View more
02-02-2021
06:13 AM
|
0
|
0
|
6841
|
|
POST
|
Hi Colin, Thanks for responding. I am using the Esri world imagery hybrid. I have several areas in my manage areas screen and they do have a size for the basemap layers. One of my areas is around 120 MB total: In an area I made today for testing near my office, I made sure the extent of it encompassed my office, so I was not editing outside of the downloaded basemap (but I did not see the basemap at all). I loaded the same map in Collector and took the map offline and it seemed to work as expected in Collector.
... View more
01-29-2021
09:01 PM
|
0
|
3
|
3876
|
|
IDEA
|
Haha, I am not sure why this is the first time this idea has been brought up! I have wondered this for years and yeah, I too have the two different processes. It's a major pain!
... View more
01-29-2021
12:08 PM
|
0
|
0
|
1282
|
|
POST
|
Hi, I created a simple web map with some simple points, lines, and polygons, to collect in ArcGIS Field Maps. I have allowed for offline mapping in every instance that I could in the settings of the map and feature layer. I have pre-made basemap areas to download too: But, to test this on my Andoid phone (Samsung Galaxy S10), opened Field Maps, downloaded my offline basemap, then disabled my WiFi and data connection. I could open the map but there is no basemap. I could start to collect a point and take a photo but when I go to submit it, I get the error of: "Your feature couldn't be saved". What else do I need to do to get these maps working in the field offline?
... View more
01-29-2021
11:07 AM
|
0
|
5
|
3903
|
|
POST
|
I am not sure if this is related or not but when I try to use Web AppBuilder Developer Edition on my computer, I get this error: But then I can click on Advanced and then "Proceed" to my "unsafe" destination.
... View more
01-29-2021
06:36 AM
|
0
|
1
|
2999
|
|
POST
|
Well heck, that is way easier! Tabular joins would work way better than relying on GPS locations!
... View more
01-28-2021
01:35 PM
|
0
|
0
|
2964
|
|
POST
|
Xander, I wonder if there is a way to use Python and arcpy to solve an issue like this when I have attributes of red, green, and blue in my table... But I do not know enough Python to make it through! Looking at this information: https://pro.arcgis.com/en/pro-app/latest/arcpy/mapping/symbol-class.htm There is a snippet showing: import arcpy, os, sys
relpath = os.path.dirname(sys.argv[0])
p = arcpy.mp.ArcGISProject(os.path.join(relpath, "Symbol.aprx"))
m = p.listMaps('Map')[0]
lyr = m.listLayers("Study Areas")[0]
sym = lyr.symbology
sym.renderer.symbol.applySymbolFromGallery("Extent Transparent Wide Gray")
sym.renderer.symbol.color = {'RGB' : [255, 0, 0, 60]}
sym.renderer.symbol.outlineColor = {'CMYK' : [25, 50, 75, 25, 100]}
sym.renderer.symbol.size = 3
lyr.symbology = sym
p.saveACopy(os.path.join(relpath, "SavedOutput.aprx")) Would someone know a way to change that line of "sym.renderer.symbol.color = {'RGB' : [255, 0, 0, 60]}" to something like "sym.renderer.symbol.color = {'RGB' : [$feature.red, $feature.green, $feature.blue, 60]}"? Or would that still present the same problems where the 'legend' in the TOC does not update?
... View more
01-28-2021
01:33 PM
|
0
|
1
|
6079
|
|
POST
|
Wow, it didn't even dawn on me that we were in the Survey123 forum. This makes way more sense now (I totally thought I was in the ArcGIS Pro forum... whoops!). That is a tall order and one that I am not sure can be accomplished with Survey123. I would rely on @Anonymous User or @JamesTedrick to answer a complex question like that. For me personally, I would have to do this in two steps. One, take the survey and throw those survey points into ArcGIS Pro. Two, I would do an operation like Spatial Join with a large enough tolerance (like "within a distance" of 30 feet) to join the building centroids to the survey points. Hopefully the buildings are spaced out enough to grab these spatial survey points, but that is how I would accomplish this.
... View more
01-28-2021
11:36 AM
|
0
|
2
|
2968
|
|
POST
|
Xander, Thanks for sharing that. I tried messing with the symbology in the map viewer beta but you're right, it is just for points at the moment. I did use my rgb values and assigned them as symbology (using Arcade with the expression of: "rgb(" + Text($feature.igds_color_red) + "," + Text($feature.igds_color_green) + "," + Text($feature.igds_color_blue) + ")" But, like we have seen before, it just changes the symbology on the map itself and not in the TOC (this is 2.7). When I published that to AGOL, it did not take my new symbol colors. ArcGIS Pro 2.7 view: AGOL view: I suppose that I will have to manually change the colors of all my line types!
... View more
01-28-2021
10:36 AM
|
0
|
4
|
6090
|
|
POST
|
I am not entirely sure on what you are asking. By having your survey points use the centroids, what do you need exactly? Do you need the centroids to have x and y attributes that give the lat and long? If so, performing the Add XY tool can do that: https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/add-xy-coordinates.htm
... View more
01-28-2021
10:29 AM
|
0
|
4
|
2970
|
|
POST
|
Xander, Thanks for writing that and responding. This method works on a manual basis where I have to go and assign each color. But not sure that is sustainable for a large dataset. Plus, my symbology in the TOC is not updating which makes me think it might not publish correctly in AGOL. In this screenshot: (removed screenshot since it would not let me post. It is attached as an image) The centerline line is blue as it should be ("rgb(0,0,255)"). But in the TOC the centerline is the default light blue assigned in the original random symbology. The same goes for the outer green lines - rgb(0,255,0). They show as a light green (box culverts) in the TOC. Each line type I have has a red, green, and blue value. I was hoping to do an arcade expression to create the "rgb(red,green,blue)" value and apply to all my features at one time. Is that not possible (to where it will reflect in the TOC in order for me to publish correctly to AGOL)? I have another layer I need to apply the same method to and it has 70 different symbol types (all indicated by r,g,b) that I need to apply. By hand this would take too long! Thanks! (upload didn't work, trying to copy and paste smaller screenshot: ) Whoops! Sorry for the double post. I am not sure what happened there...
... View more
01-28-2021
06:54 AM
|
0
|
6
|
6097
|
|
POST
|
Xander, Thanks for writing that and responding. This method works on a manual basis where I have to go and assign each color. But not sure that is sustainable for a large dataset. Plus, my symbology in the TOC is not updating which makes me think it might not publish correctly in AGOL. In this screenshot: The centerline line is blue as it should be ("rgb(0,0,255)"). But in the TOC the centerline is the default light blue assigned in the original random symbology. The same goes for the outer green lines - rgb(0,255,0). They show as a light green (box culverts) in the TOC. Each line type I have has a red, green, and blue value. I was hoping to do an arcade expression to create the "rgb(red,green,blue)" value and apply to all my features at one time. Is that not possible (to where it will reflect in the TOC in order for me to publish correctly to AGOL)? I have another layer I need to apply the same method to and it has 70 different symbol types (all indicated by r,g,b) that I need to apply. By hand this would take too long! Thanks!
... View more
01-28-2021
06:52 AM
|
0
|
0
|
6098
|
|
POST
|
Carolyn, I believe this document should walk you through to exactly what you need to do: https://support.esri.com/en/technical-article/000021849 I hope this helps!
... View more
01-28-2021
06:30 AM
|
0
|
6
|
2974
|
|
POST
|
@XanderBakkerand @KoryKramer was this ever resolved? I am using 2.7 and it still seems to not follow the procedures outlined in the help documentation.
... View more
01-28-2021
06:13 AM
|
0
|
9
|
10288
|
|
POST
|
Who is the video hosted through and can you share the story map here?
... View more
01-28-2021
06:07 AM
|
0
|
0
|
1142
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 4 | 2 weeks ago | |
| 2 | 2 weeks ago | |
| 1 | 02-09-2026 03:32 PM | |
| 2 | 02-05-2026 07:06 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|