|
POST
|
So your taking data from the shapefile and writing it to Excel? Can it be a new Excel file or do you have to write it into the existing Excel file?
... View more
06-03-2021
11:31 AM
|
1
|
2
|
5376
|
|
POST
|
@BriamR wrote: @BlakeTerhune The process that you propose to me in python sounds interesting, could you help me with the way or an example to be able to achieve it. Thank you Here's a snippet to change the file extension with Python. I would put that in a try/finally block to ensure it gets changed back to the correct file extension when the script exits. However, I'm still not completely clear on what exactly you're trying to do. Are you updating the fields of existing records in the shapefile or creating new records? If they are new records, what are you using for geometry (X,Y)?
... View more
06-03-2021
11:15 AM
|
1
|
4
|
5383
|
|
POST
|
I just tested changing the file extension from xlsm to xlsx and ArcMap was able to read the data. If you're comfortable, you could use Python to change the file extension, read the data, then change the file extension back when finished.
... View more
06-03-2021
09:08 AM
|
1
|
0
|
5453
|
|
POST
|
The documentation says Excel Workbooks (.xlsx) and Microsoft Excel 5.0/95 Workbook (.xls) formats are supported as input. A quick test with an .xlsm file seems to support this. ArcMap doesn't even show the .xlsm file to interact with. You'll have to save the Excel file as a supported format.
... View more
06-03-2021
09:03 AM
|
2
|
1
|
5459
|
|
POST
|
It seems that simply removing the apiKey and logging in manually allows the search widget to work normally. I'm not sure why this is happening. Hopefully someone else has an idea. EDIT: That apiKey is supposed to be private so I recommend redacting that.
... View more
06-02-2021
07:52 AM
|
1
|
0
|
929
|
|
POST
|
Try Geometry toJSON() For a regular 2D polygon, you'll get something like this {
"rings" : [[[-97.06138,32.837],[-97.06133,32.836],[-97.06124,32.834],[-97.06127,32.832],
[-97.06138,32.837]],[[-97.06326,32.759],[-97.06298,32.755],[-97.06153,32.749],
[-97.06326,32.759]]],
"spatialReference" : {"wkid" : 4326}
}
... View more
06-01-2021
07:01 AM
|
0
|
0
|
2476
|
|
POST
|
Looks like that error is referring to a field you have listed as APLIC that maybe doesn't exist in one of the feature classes.
... View more
05-27-2021
10:48 AM
|
0
|
0
|
2635
|
|
POST
|
None is not a valid keyword in SQL; try null instead. Also, I'm not sure if you can use the geometry property "token" fields in the where clause. You might have to use shape instead. select = 'SHAPE is not null'
... View more
05-27-2021
10:45 AM
|
1
|
0
|
2640
|
|
DOC
|
SetLogMetadata is a big one for us. We have many scripts running as scheduled tasks doing maintenance work every night. The metadata for these tasks was building up and slowing everything down. We now do arcpy.SetLogMetadata(False) for everything running as a scheduled task.
... View more
05-27-2021
10:04 AM
|
0
|
0
|
8139
|
|
POST
|
You can use the AND or OR operator to combine the SQL statements depending on what you're trying to achieve. sql_expression = "({}) and ({})".format(SQL1, SQL2) or sql_expression = "({}) or ({})".format(SQL1, SQL2)
... View more
05-27-2021
09:36 AM
|
3
|
1
|
1419
|
|
POST
|
I would also like to add that you probably want to be using "PYTHON_9.3" as the expression_type parameter for CalculateField.
... View more
05-24-2021
12:09 PM
|
0
|
0
|
2533
|
|
POST
|
Are you able to apply this solution you found to this discussion?
... View more
05-24-2021
08:00 AM
|
1
|
0
|
2238
|
|
POST
|
Sorry, I should have clarified that we have the ArcGIS License Manager running on an internal server that all machines can access. I have no trouble configuring ArcGIS Pro to use the concurrent use licenses. The problem is currently I have to set that license configuration for each different user on the same computer running ArcGIS Pro. I would like to be able to configure the licensing option in ArcGIS Pro once and have it apply for all users on that computer.
... View more
05-22-2021
07:44 AM
|
0
|
0
|
6040
|
|
POST
|
By default, ArcGIS Pro expects to use named user license but can be configured to start with concurrent use licensing. This works fine but the configuration for starting with concurrent use license seems to only be effective for the user who was logged in when it was configured. Is there a way to set ArcGIS Pro to start with concurrent use licensing for all users of the computer?
... View more
05-21-2021
03:18 PM
|
1
|
7
|
6105
|
|
POST
|
@jaykapalczynski I mentioned before that using Dissolve seems like it would get you the output you want. Have you tried that?
... View more
05-21-2021
01:05 PM
|
0
|
2
|
2315
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 10-23-2025 03:53 PM | |
| 1 | 04-28-2026 07:25 AM | |
| 1 | 03-19-2026 08:59 AM | |
| 1 | 02-12-2026 01:37 PM |