|
POST
|
The symbols generally look worse in ArcMap than when exported. You can get things pretty close in the symbology property editor by zooming in to 400%. See below for an export to PDF. There are some deviations zoomed into 800%, but I'd say it's pretty good. Exported to PDF (100%): PDF (800%):
... View more
10-02-2015
10:00 AM
|
2
|
1
|
913
|
|
POST
|
You can list feature classes in your gdb. This won't go into feature datasets. If it's in the list, it isn't in a feature dataset. If it's not in the list, presumably it is in a feature dataset (or doesn't exist). Please elaborate if this doesn't address your issue.
... View more
10-01-2015
03:33 PM
|
2
|
4
|
4091
|
|
POST
|
Can you get it to work for a simpler expression (e.g. "EXTRACT(YEAR FROM "DateReported")=2010")?
... View more
10-01-2015
02:27 PM
|
1
|
0
|
2821
|
|
POST
|
Dissolve by both Owner and FID. This will merge together all unique combinations of Owner and FID.
... View more
10-01-2015
09:52 AM
|
2
|
0
|
2374
|
|
POST
|
The quick way to change a projection is to double-click the projection name wherever you happen to be selecting the projection (to bring up the coordinate system properties), make your changes, give it a new name and hit OK. It will be added to a new folder called Custom. To find it easier next time, right-click the custom projection, and Add to Favorites.
... View more
09-30-2015
03:34 PM
|
1
|
0
|
2099
|
|
POST
|
Given enough time, you can do absolutely any statistical tests by hand that a GIS can do for you (kind of defeats the purpose of GIS, though).
... View more
09-30-2015
01:53 PM
|
1
|
1
|
1325
|
|
POST
|
There are many possible solutions to similar errors found here, most of which involve changing your default browser security settings(?).
... View more
09-30-2015
01:45 PM
|
0
|
0
|
922
|
|
POST
|
What have you tried so far? And, have you tried searching for something like "arcgis excel to shapefile"?
... View more
09-30-2015
11:10 AM
|
0
|
0
|
3179
|
|
POST
|
You decide which fields to include in the cursor. In doing so, you also decide the order of the fields in the cursor. Alternatively, you can include all fields by using '*', which will return all fields in the order found in the attribute table. Consider a feature class with many fields, in any order, but you are interested in only "name", "age", and "address". with arcpy.da.UpdateCursor("myFeatureClass",["name","age","address"]) as cursor: # you set cursor field order here
for row in cursor: # loop through each row in the cursor
print row[0] # name
print row[1] # age
print row[2] # address vs. with arcpy.da.UpdateCursor("myFeatureClass",["name","address","age"]) as cursor: # you set cursor field order here
for row in cursor: # loop through each row in the cursor
print row[0] # name
print row[1] # address
print row[2] # age
... View more
09-30-2015
11:07 AM
|
2
|
1
|
3705
|
|
POST
|
I know this is in the Python section, but if all you need is number of days, VBScript handles it much easier (below is for shapefile, but should work similarly for GDB): Now ( ) - [YOURDATE] or years: CInt((Now ( ) - [YOURDATE])/365)
... View more
09-30-2015
09:35 AM
|
2
|
0
|
4735
|
|
POST
|
Line field is the field controlling the line IDs (tells the tool when to end the current line and move to the next line), Sort field sorts the records from first to last (if they aren't in the correct order already) and Close line forces the lines closed (if they aren't already).
... View more
09-29-2015
10:31 AM
|
2
|
0
|
19117
|
|
POST
|
I think you're bound to using a vector solution for this. Luckily, something very similar came up yesterday: Re: Creating variables indicating adjacent sectors Once you've done the self-Spatial Join, run Summary Statistics using MEAN as the statistic on the field for which you want the averages, and Target_FID as the case field.
... View more
09-29-2015
10:23 AM
|
1
|
0
|
2692
|
|
POST
|
Here's a starting point using Python. This only reads your csv and outputs a polygon for all the points. It gets a little more complicated to create separate polygons for each ID, to write out all the attributes, etc. >>> import csv # import csv library
... polys = [] # list to hold polygon geometry
... with open(r'C:\junk\pointcsv.csv', 'rb') as csvFile: # open csv file
... csvFile.readline() # skip header
... csvReader = csv.reader(csvFile) # create csv reader
... polyPoints = arcpy.Array() # array to hold points
... for row in csvReader: # read csv
... polyPoints.append(arcpy.Point(row[2],row[3])) # create point and add to array
... polys.append(arcpy.Polygon(polyPoints,arcpy.SpatialReference(4326))) # create polygon and add to list
... arcpy.CopyFeatures_management(polys, r'in_memory\polys') # write out polygons Unless you're committed to learning Python, your best bet is probably to add your csv as points, convert to line, then convert to polygon.
... View more
09-29-2015
10:18 AM
|
2
|
0
|
19117
|
|
POST
|
Can you elaborate on that? I don't see how simply changing a variable name could have solved anything, unless it was otherwise originally specified.
... View more
09-25-2015
10:20 AM
|
0
|
4
|
2679
|
|
POST
|
Your lat/long are mixed up in the Excel, unless you're mapping a fire station on Antarctica.
... View more
09-24-2015
10:41 AM
|
1
|
0
|
1939
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-25-2015 01:51 PM | |
| 1 | 08-30-2013 02:22 PM | |
| 1 | 04-12-2011 11:19 AM | |
| 1 | 09-17-2021 09:43 AM | |
| 1 | 04-04-2012 12:05 PM |
| Online Status |
Offline
|
| Date Last Visited |
07-15-2023
12:11 AM
|