|
POST
|
import arcpy
from arcpy import env
env.workspace = r"Z:\ArcGIS\Projects\Other.gdb"
p = arcpy.mp.ArcGISProject('current')
m = p.listMaps()[0]
fcList = arcpy.ListFeatureClasses()
for fc in fcList:
dropFields = ['add new filedname here', 'aandefirm','accountid','ACTIVEFLAG','andefirm','appended','As_BuiltDa','ASBUILTDATE','AsBuiltDwg']
arcpy.DeleteField_management(fc, dropFields)
print (fc + ' Dropped standard fields!') What is the exact logic of how you want it to drop specific fields for specific features?
... View more
05-08-2023
01:33 PM
|
0
|
8
|
7887
|
|
POST
|
The custom one is also in feet. I'd have a strong suspicion that this is either a user-created system or more-likely a system used by a spatial database like Oracle etc. which has then been exported as a feature class. The underscores in the name also likely come from the geometry metadata from that database - rather than being an Esri thing. If it was an Esri system it should have an Esri WKID rather than 'custom'.
... View more
05-08-2023
09:01 AM
|
0
|
1
|
3297
|
|
POST
|
https://developers.arcgis.com/arcade/function-reference/featureset_functions/#distinct
... View more
05-08-2023
06:34 AM
|
1
|
0
|
1011
|
|
POST
|
Is the data from an enterprise GDB? Some databases can have very slight differences (usually legacy before EPSG standardisation I guess) in definitions of ellipsoid/datum/degree precision etc. I'd have a look at the parameters for both and look for any differences.
... View more
05-08-2023
05:56 AM
|
0
|
3
|
3312
|
|
POST
|
Double click on the layer in the table-of-contents (or right click -> properties) to open the layer properties window. Then go to the 'Source' tab at the top. There you can see the data source the layer is reading from https://desktop.arcgis.com/en/arcmap/latest/map/working-with-layers/repairing-broken-data-links.htm If you need to see the sources for all layers in the MXD or across multiple MXDs you can use a simple python script https://community.esri.com/t5/python-questions/script-to-print-all-data-layer-names-and-sources/td-p/203713
... View more
05-08-2023
03:28 AM
|
0
|
1
|
4020
|
|
POST
|
You can see ArcMap release improvements from 10.6 - 10.8 here https://desktop.arcgis.com/en/arcmap/latest/get-started/introduction/whats-new-in-arcgis.htm I'd google 'What's new in ArcMap 10.5' to find an archived version of the 10.4 to 10.5 enhancements/additions. Note that 10.4 is now out of support https://support.esri.com/en-us/products/arcmap/life-cycle and the recommendation is to move to ArcGIS Pro https://www.esri.com/en-us/arcgis/products/arcgis-pro/resources/migrate . My understanding/personal opinion is that 10.8.x will just be kept on life support for the next few years with no further enhancements, just patches etc.
... View more
05-07-2023
11:18 AM
|
1
|
1
|
5179
|
|
POST
|
Is this 3D data or all the strata polygons in the same plane (overlapping strata polygons)? With the assumption I guess that the borehole would be at a depth to intersect any of the strata i.e. no strata polygons are at a depth which the borehole wouldn't get to? If you want a physical output table you could use https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/tabulate-intersection.htm which will give you a count of intersections for each strata type, with a new row/record created for each strata type. To get that table in the format you've described, you can then use https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/pivot-table.htm to transform those rows into columns.
... View more
05-07-2023
02:52 AM
|
0
|
1
|
1944
|
|
POST
|
ArcGIS Pro? Topology toolset doc here - https://pro.arcgis.com/en/pro-app/2.9/tool-reference/data-management/an-overview-of-the-topology-toolset.htm click on each tool and go to Licensing Information at the bottom of the page. Each tool appears to be available at Standard and Advanced (not Basic). https://pro.arcgis.com/en/pro-app/latest/get-started/license-levels.htm references Standard required. N.B. you refer to a Basic/Standard license due to expire, the licensing levels are Basic, Standard, Advanced. This is also true in ArcMap.
... View more
05-06-2023
11:31 AM
|
0
|
0
|
1133
|
|
POST
|
What is the coordinate system of your input city boundary and what is the projection of your map/project? For the buffer tool, I'd set the 'Method' to 'Geodesic'. When you measure your buffer, ensure the measurement option is also specified as 'Geodesic'. I'm thinking you have a Web Mercator of Plate Caree projection for your project/layout and are at a latitude where you're experiencing relatively large planar measurement inaccuracies. For the fishnet tool, it does not matter how you've set up any project settings to only show imperial. It's likely your input data coordinate system is in metric metres. If so, the cell size width and height will be in metres. The simplest way around this would be to use a cell height/width of 1609.34. However it seems strange that your measurement is accurate for the fishnet but not the buffer. It would be good to see your input data coordinate system, your project/map coordinate system/projection, and any screenshots of your inputs into the tools and the measurements taken after.
... View more
05-06-2023
10:06 AM
|
0
|
0
|
1778
|
|
POST
|
There's various ways to do this but the simplest one-off solution would be what Andreas has suggested in building a Mosaic Dataset and using the footprints to select by location.
... View more
05-05-2023
09:44 AM
|
0
|
0
|
956
|
|
POST
|
If it's embedded apps in your Experience Builder then you'd want to check out how to skip the login as shown here https://doc.arcgis.com/en/experience-builder/latest/configure-widgets/embed-widget.htm - 'share authentication' heading at the bottom of the page.
... View more
05-05-2023
09:41 AM
|
0
|
0
|
1240
|
|
POST
|
What you're likely seeing is an inaccurate transformation. What version of ArcMap are you using? Go to the data frame properties and click on the 'Transformations' button as per https://digimap.edina.ac.uk/help/gis/transformations/transform_arcgis/ or when you first get the coordinate system warning popup on adding in the WGS84 data - select the correct transformation of OSGB1936_TO_WGS84_7. Depending on your arcmap version you may have to download the _7 transformation separately.
... View more
05-05-2023
08:36 AM
|
1
|
3
|
2977
|
|
POST
|
Are groupID and categoryName variables you've assigned earlier in your code? Doesn't make sense to pass them as strings if so import arcgis
gis = arcgis.gis.GIS("https://www.arcgis.com", "username", "password")
dashboardItems = gis.content.search(query=f"group:{groupID} AND categories:'{categoryName}'",
item_type="Dashboard",max_items=9999)
... View more
05-02-2023
02:47 PM
|
0
|
1
|
1185
|
|
POST
|
https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-2-4-how-to-replace-null-values-stored/td-p/507419
... View more
05-02-2023
12:44 PM
|
0
|
0
|
3283
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-17-2023 12:44 PM | |
| 1 | 06-13-2025 01:08 PM | |
| 1 | 09-25-2025 03:19 PM | |
| 1 | 09-24-2025 02:35 PM | |
| 1 | 09-17-2025 02:42 PM |
| Online Status |
Offline
|
| Date Last Visited |
07-06-2026
06:42 AM
|