|
POST
|
There's some certificate/PKI stuff you can specify also in GIS(.. https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#gis but well out of my depth there, good luck!
... View more
11-15-2020
09:28 AM
|
0
|
1
|
4467
|
|
POST
|
Hi, What is the projection of the second shapefile? You can project it to the same as the 'big' shapefile. I guess the pictures will explain it better but they just show as 'virus scan in progress' for me and I can't open them. I'd certainly say you could find triangles and quadrilaterals easily enough by looking at the geometries, but 'perfect' squares and triangles would have to be fuzzy-matched in a more complex process as they are unlikely to be digitized exactly. Bringing projection geometry shifts into the mix could also warp the features.
... View more
11-15-2020
06:42 AM
|
0
|
5
|
5516
|
|
POST
|
Looks like your URL could be wrong. Something like portal = r"https://dave.geo.com/portal/home"
... View more
11-15-2020
03:34 AM
|
1
|
5
|
4500
|
|
POST
|
I'm not entirely getting your workflow, but the OBJECTID is usually mangled in certain geoprocessing workflows (e.g. where datasets are combined, joined etc.) and when dealing with tables in relational databases. Without elaborating a bit more, the only thing I could think of is exporting to something like a shapefile, deleting the old OBJECTID field (shapefile has an FID field now), then exporting back to an FGDB. However I appreciate you may have millions of records or complex relationship classes etc.
... View more
11-14-2020
11:27 AM
|
0
|
0
|
985
|
|
POST
|
You've not given much away about the data you're using. https://pro.arcgis.com/en/pro-app/help/data/imagery/raster-display-ribbon.htm 'Rendering' 'Symbology' and 'Classify' are key terms on that page to look for. 'Classify' will allow you to create the elevation value ranges which are matched to a chosen colour or 'Colour Ramp'.
... View more
11-14-2020
10:50 AM
|
1
|
0
|
2726
|
|
POST
|
ArcMap seems to have a parcel division tool: https://desktop.arcgis.com/en/arcmap/10.3/manage-data/editing-parcels/dividingparcelsbyarea.htm though I've never done parcel fabrics and can't give any more advice on this. If you can get a go on pro: https://pro.arcgis.com/en/pro-app/tool-reference/data-management/subdivide-polygon.htm seems like a good option. Would love to see the code behind these tools, this seemed like a very complex ask for irregular polygons.
... View more
11-14-2020
05:39 AM
|
0
|
0
|
907
|
|
POST
|
Can you share the parameters of the iterate feature selection? I would guess it's not iterating over the fields properly if you don't get more than 1 output. You could buffer all the data by the width field then run the iterate feature selection on that to then export as new shapefiles, if that doesn't work then you know it's the iterator at fault. I don't use model builder, so I don't quite get the 'width to buffer distance' coming from the iterator, shouldn't you just specify the 'width' field as a parameter in the buffer (or is that what it shows?).
... View more
11-14-2020
03:38 AM
|
1
|
3
|
4080
|
|
POST
|
You may find that resetting your application profile does the trick: https://community.esri.com/t5/arcgis-desktop-installation/resetting-your-arcgis-application-profile/ta-p/913597 if not, you can revert to the old one by deleting normal and renaming normal_old back to normal. %APPDATA% may actually be locked down depending on your organisation, and you may need to get an IT person to do this for you.
... View more
11-14-2020
03:20 AM
|
1
|
1
|
5913
|
|
POST
|
It's a bit of a blunt instrument, but you could run a generate near table https://pro.arcgis.com/en/pro-app/tool-reference/analysis/generate-near-table.htm then filter the results in excel etc. i.e. get rid of matches where PlaceName is not the same. Model builder you would do something like iterate feature selection on the place points, but it gets complicated by having to filter the home locations by workplace at the same time.
... View more
11-13-2020
01:24 PM
|
0
|
2
|
4944
|
|
POST
|
Portal 10.6.1 ArcGIS Web App Builder standard Hi all, I've got 3 pre-defined queries in a simple filter (WAB filter widget) point feature with a 'type' column, all features are either type A, B or C filter 1 - Type is A filter 2 - Type is B filter 3 - Type is C the filter works fine when only one is turned on by the 'switch' The problem is when they get combined e.g. I turn filter 1 and filter 2 on is that they mutually exclude each other. expected functionality - Type A and B are both displayed, type C is not. actual functionality - Nothing displays I get that this is very likely that the 2 queries are being combined with an 'AND', but am I missing some option to do this as an 'OR'. Thanks
... View more
11-13-2020
10:50 AM
|
0
|
3
|
2040
|
|
POST
|
Does your shapefile display properly in Arc? does running the check geometry tool return anything funky? Can you show the projection info etc also.
... View more
11-12-2020
05:19 AM
|
0
|
1
|
1994
|
|
POST
|
There's functionality to reference a Print service within a print widget in Portal. Print widget—Portal for ArcGIS | Documentation for ArcGIS Enterprise Configure your own custom template to be consumed as a print service: Publish a print service with custom layouts from ArcMap—ArcGIS Server | Documentation for ArcGIS Enterprise
... View more
11-10-2020
02:21 PM
|
0
|
2
|
2672
|
|
POST
|
I've never done a field calculation in Pro I admit, but unless the syntax has changed quite a bit here's my take on it: Ensure the python parser is used. I've also added an else to catch where condition 1 and 2 are not met (which I believe is a possibility) expression = calc(!Other!, !F25_29!) def calc(field1, field2):
if field1 >= 1 and field2 >=1:
result = field1 + field2
elif field1 <1 and field2 < 1:
result = 0
else:
result = -9999
return result
... View more
11-10-2020
01:20 PM
|
0
|
0
|
758
|
|
POST
|
For the sake of efficiency, it might be better to verify the data first (perhaps use bookmarks or map series navigation to go through them, or create a locator from the feature to easily search). Then export the entire map series on the verified data. (or just export the entire series and do the validation from the pdf's? although of-course I'm not sure if the validation is that simple). It's a step in the right direction to automate the map creation, but why have a tool to do it individually still? There's also the python option of replicating the Map Series functionality. If you give more info on the task, there might be some other processes that can be automated, although the user may not be as delighted at this as you may expect.... Map series—ArcGIS Pro | Documentation
... View more
11-10-2020
01:05 PM
|
0
|
1
|
3446
|
| 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
|