|
POST
|
I'd suggest rephrasing your question better. It may just be my lack of understanding, but I have no idea what you are asking.
... View more
07-10-2020
11:16 AM
|
0
|
1
|
891
|
|
POST
|
What do you want to happen if two events happen in the same year? Can you give an example row in your dataset?
... View more
07-10-2020
11:15 AM
|
0
|
1
|
2633
|
|
POST
|
import arcpy
#path to input shapefile to be transferred to fgdb feature dataset
in_shp = r'C:\myshapefile.shp'
#path to output fc within feature dataset
#will likely error if .shp and feature dataset have different projections
out_fc = r'C:\mygdb.gdb\myfeaturedataset\myfeatureclass'
#run copy features tool
arcpy.CopyFeatures_management(in_shp, out_fc)
... View more
07-10-2020
06:29 AM
|
1
|
2
|
6794
|
|
POST
|
Run it through an iterator or use the Search Cursor to return the SHAPE@XY token for each feature.
... View more
07-09-2020
06:11 AM
|
0
|
1
|
3968
|
|
POST
|
Perhaps it's erroring on NoData values, run a Con or reclass to turn them to 9999 etc.? Also it's a 3 band image? that may be the issue.
... View more
07-09-2020
05:33 AM
|
1
|
2
|
4117
|
|
POST
|
Spatial Join the intersection polygon with the original, use a Merge Rule of All to get both intersecting feature's info. Append this to your existing or Merge the datasets after the join.
... View more
07-09-2020
05:28 AM
|
0
|
0
|
1528
|
|
POST
|
Sure, what I'd suggest is getting the geometry of each of your polygons using a script. If your polygons are a square grid you could easily resize it by getting the feature centroids for each square and create a new point grid. Then buffering them by a value ( if your length is 2km, buffer the centroid by 0.75km then use the feature envelope to polygon tool to get the rectangular extent. If the features are not square, you would need to get the coordinate pairs which construct the polygon using a cursor (script thing). i.e. if your feature has coordinates (clockwise from top left) { (4, 16), (32, 16), (32, 8), (4, 😎 } you would want to change them to: (25% difference between them) {(11, 14), (25, 14), (32, 10), (4, 10)}
... View more
07-08-2020
01:27 PM
|
1
|
3
|
3968
|
|
POST
|
Strip out the online content, this sounds like a cause - not the solution but at least it identifies the issue. Try the MXD Doctor utility. Give more details on your export settings etc.
... View more
07-08-2020
12:18 PM
|
0
|
1
|
3148
|
|
POST
|
Do you need an iterator? Select by attribute on your layer (Zone = '1' etc) and copy features to produce the 17 zoning types? I'm sure there's a better way but I would script it, and actually find Model Builder more confusing.
... View more
07-08-2020
12:13 PM
|
0
|
0
|
1968
|
|
POST
|
You may want to look at the Integrate—Data Management toolbox | Documentation tool, but beware of the Caution note - i.e. Make a copy of your data first or run it in an edit session or both.
... View more
07-08-2020
12:05 PM
|
0
|
0
|
1852
|
|
POST
|
If you're in projected space it should be easy to run a search cursor to grab the SHAPE@XY for each polygon and perform the next steps to use an insert cursor to create new geometries.
... View more
07-08-2020
11:36 AM
|
0
|
5
|
3968
|
|
POST
|
I might initially try to save the output from the Imagery Classification to an FGDB to see if a raster attribute table is produced for you to then input.
... View more
07-08-2020
02:44 AM
|
0
|
4
|
4117
|
|
POST
|
Hi Nekola, I'd recommend having someone check your English and/or modify your question with more details in order to get a response.
... View more
07-04-2020
03:57 AM
|
0
|
0
|
1224
|
|
POST
|
you should be able to do this with a Relate with the feature and table, or create a tool or script to run an arcpy.da.UpdateCursor or InsertCursor.
... View more
07-04-2020
03:53 AM
|
0
|
0
|
5347
|
| Title | Kudos | Posted |
|---|---|---|
| 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 | |
| 1 | 09-10-2025 02:35 PM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|