|
POST
|
I don't really know what was happening, but as I was on a Zoom with Support it "fixed" itself. Support informed me Edge works as a better browser with ExB, and I didn't bother checking this before posting here. But, I did try Chrome and had the same issue. I was using FF when I had the issue. The dev console had some warnings and such, but no errors that I noticed. I guess I'm good now?
... View more
02-19-2026
11:56 AM
|
0
|
1
|
556
|
|
POST
|
At first it was good. The more I built it the slower it got in both the builder and the display. It's to the point now where ExB is acting very buggy, and I can't go on. So, the View bug I'm referring to is this: I started with a Quick Navigation template. I'm up to 8 or 9 views in a Section. The last one I added is acting buggy. I tried deleting it, but it won't go away. I've done all the basic trouble-shooting stuff like undoing, closing out, clearing cookies. I'm temporarily providing a copy here.
... View more
02-19-2026
09:18 AM
|
0
|
2
|
589
|
|
POST
|
I have a *.tif in Pro that I'm publishing to AGOL as a tile. It's not behaving. The CRS of my map in Pro is one thing, so as I share to AGOL I make sure to configure the tiling scheme to ArcGIS Online / Bing Maps / Google Maps. This has been my workflow for all the others. The REST Endpoint of the published tile layer tells me the CRS is 102100, which is the same as the AGOL basemap. So, why does the tile layer land at 0,0 in the webmap? I've deleted it and republished over and over thinking it might be a glitch, but to no avail. How the CRS looks on the Map Service endpoint: Spatial Reference:
102100
PROJCS["WGS_1984_Web_Mercator_Auxiliary_Sphere",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mercator_Auxiliary_Sphere"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",0.0],PARAMETER["Auxiliary_Sphere_Type",0.0],UNIT["Meter",1.0],AUTHORITY["EPSG",3857]] How it looks when you click the Layers endpoint: "spatialReference" : {
"wkid" : 102100,
"latestWkid" : 3857,
"xyTolerance" : 0.001,
"zTolerance" : 0.001,
"mTolerance" : 0.001,
"falseX" : -20037700,
"falseY" : -30241100,
"xyUnits" : 10000,
"falseZ" : -100000,
"zUnits" : 10000,
"falseM" : -100000,
"mUnits" : 10000
}
... View more
02-11-2026
09:04 AM
|
0
|
0
|
236
|
|
POST
|
I'm publishing georeferenced *.tif(s) to AGOL from Pro. The only Layer Type option I seem to have is Tile. I get an error with the other options telling me the "selected layer does not contain a required layer type". Using Tile, the *.tif will publish, but sometimes the symbology changes once in AGOL. It happens to two of the nine *.tifs I'm publishing even with the same symbology settings. Is it just a matter of changing the symbology before I publish? I'm sharing via a right click on the layer > Sharing > Share As Web Layer. For example, here is the *.tif in Pro and the same *.tif in AGOL:
... View more
01-29-2026
07:49 AM
|
0
|
0
|
250
|
|
POST
|
Hi @BethRomero 1. Your app has a search method of "Map extent" set. The solution uses "search radius". Search radius method allows for a map click, and then the clear search button appears. Map extent search method has a button to "search this area" since it's a map extent based search. This update can be made in the Nearby section > search method. 2. Your app has a custom selection fill set. This is a known limit at this time, that the pin and address may draw under the selection fill. To remove the selection fill go to Interactivity > Modify > and disable selection fill. 3. Switching your search method back to "Search radius" will bring back the "clear results" button. 4. Labels - I'm still investigating this one. I see labels showing in my examples but will keep looking into this. 5. At this time, the expanded related result is below the pop-up. Let me know if this doesn't get you closer to what you are expecting. Any updates on #s 2 and 4?
... View more
12-10-2025
12:37 PM
|
0
|
0
|
744
|
|
POST
|
@CodyPatterson Is this a good way to share it within network? The URL will work on a remote machine when testing. Or is it a security risk? if __name__ == "__main__":
app.run(debug=True, port=5000, host='0.0.0.0') EDIT: AH, I see you mentioned this method in your first reply. I didn't know what it meant at the time. But, I'm still wondering if this is a good idea as far as security goes.
... View more
11-24-2025
02:13 PM
|
0
|
1
|
2626
|
|
POST
|
Hi @CodyPatterson I attached the code straight from ch. 15. You just run the app.py file and it gives you the URL in the terminal. The user on the other end would connect to that IP over a port you've designated, and basically would need to send a request Thanks for explaining. I'm still learning when it comes to requests. I'm not grasping the above directions.
... View more
11-24-2025
06:59 AM
|
0
|
0
|
2650
|
|
POST
|
so having it locally would still allow your coworker or friend to connect while on your local network. Thanks for the feedback! How would they connect? I tested by pasting that URL in a browser on a remote machine, but a connection couldn't be established. I'm confused as to how or what I'm supposed to share.
... View more
11-20-2025
02:18 PM
|
0
|
2
|
2744
|
|
POST
|
WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. * Running on http://127.0.0.1:5000 I was hoping to learn a way to share code through an app, as the chapter starts out by saying. But, once completing the chapter I see it's local. Am I missing something?
... View more
11-20-2025
01:41 PM
|
0
|
6
|
2774
|
|
POST
|
My intention is to share a script tool. The help docs explaining the Execution Tab don't go into detail. I've shared a script tool before by putting the python file and tool in the same shared directory. I'm wondering now about embedding it. This seems like a better way because you only have to worry about where the tool is located, and not both the tool and the script. I've tested this method and it seems doable. Is embed intended for sharing?
... View more
11-14-2025
09:26 AM
|
0
|
2
|
1069
|
|
POST
|
Nice. Yeah, it doesn't make a difference if parameter 0 is GetParameter() or GetParameterAsText(). Both work. It's only the Data Type that needed changed.
... View more
11-13-2025
08:46 AM
|
0
|
0
|
2143
|
|
POST
|
@DuncanHornby @TonyAlmeida It worked with the arcpy.GetParameter() function and the Data Type parameter set to String. I used the index 0. I was able to run the tool numerous times on the following files and it deleted all of them: *.zip, *.shp, *.png, *.jpeg. So: if __name__ == "__main__":
#name of zip file with extension
oldzip = arcpy.GetParameter(0)
# output folder
workspace_folder = arcpy.GetParameterAsText(1)
# delete
delete_old_parcels_zip(oldzip, workspace_folder)
... View more
11-13-2025
08:22 AM
|
1
|
1
|
2155
|
|
POST
|
@TonyAlmeida Thanks, that works on its own (without += operator) but embedded in the script tool with the same input as before it runs but doesn't delete and no print statements in tool. I believe the issue lies with the script tool data type parameter for file. I'm going to concentrate on that. Tool interface:
... View more
11-13-2025
07:11 AM
|
0
|
0
|
2165
|
|
POST
|
Two examples of input: oldzip = 'WillCounty_Street.zip'
workspace_folder = r'C:\Users\jpilbeam\test' Thanks for asking. So, the end-user of this tool would input files to delete in the first parameter. The files in the workspace folder could be either a *.zip, *.shp or *.pdf. What I was pointing out was the separate scenarios I've tried . As in, what I've tried was: - setting the Data Type to File - setting the Data Type to File, and File Filter to zip; shp - setting the Data Type to Shapefile - setting the Data Type to folder. --This didn't make much sense, but i tried it anyway.
... View more
11-12-2025
10:49 AM
|
0
|
0
|
2224
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-25-2026 12:25 PM | |
| 1 | 05-04-2026 08:45 AM | |
| 1 | 04-20-2026 01:20 PM | |
| 1 | 07-24-2025 01:27 PM | |
| 1 | 11-13-2025 08:22 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|