|
POST
|
Have you made any headway on this issue? I am having a similar problem rotating fittings. I've been using AA for years (with the same exact rule for symbol rotation) but after upgrading to 10.4.1 and AA version 7.15.2016 the Junction_Rotation method is not working as expected, instead it writes 0 for the rotation value.
... View more
12-16-2016
06:07 AM
|
0
|
1
|
3117
|
|
POST
|
Thanks for the suggestions. My python skills are not ready to quickly tackle this issue. If I had 40 hours to play with I'm sure I could make it happen, but that's not the case for this one. Thanks again. If anyone else has suggestions please let me know. ET GeoTools has a Generalize tool that works about 60% of the time but that still also requires hitting individual features.
... View more
11-29-2016
04:16 AM
|
0
|
1
|
6531
|
|
POST
|
Yup a straight line is exactly what I want. This is for a water utility when a bunch of service connections are snapped to a line. If you move the line endpoints you wind up with a funky looking water line, unless you manually adjust all of the vertices where the services are snapped to the line. If you delete all of the middle vertices the geometric network retains the service snapping while giving you a nice straight line. I just need to figure out hot to do it efficiently. Delete vertices takes too long when there are thousands of features.
... View more
11-28-2016
12:32 PM
|
0
|
4
|
6531
|
|
POST
|
I'm looking for a simple way to delete all of the "interior" (non endpoint) vertices in a line. It can't be a GP tool that writes a new output, I need to modify the existing features. Generalize wont work because the data is in a geometric network that I cannot delete and recreate. Ideally I could select multiple lines and have them processed with a single button click. Is there anything out there that will do this?
... View more
11-28-2016
12:14 PM
|
0
|
9
|
10531
|
|
POST
|
What steps did you follow to cause the issue? Uploaded a new photo from and Android device using google account authorization What was the expected result? I would expect the photo location to be imported from the photo metadata What was the result you observed? The app asks the user to input the location. After entering the lat/long from the photo metadata an error message is shown stating "The location you searched for cannot be found...." A place name or address are the only acceptable location inputs. Provide a link to your story (be sure to share it publicly) http://arcg.is/2avVGoE
... View more
08-03-2016
11:08 AM
|
1
|
3
|
2223
|
|
POST
|
My initial question was not clear, my apologies. I'm creating a map book street index, for display purposed only. All of those values are within a string for a single record, so I'm trying to sort within that one string. I can alter the grid to add leading zeros (A01 instead of A1) but I'd rather avoid that if possible. My screen shot doesn't show any numbers smaller <10 but they're mixed in here and there.
... View more
08-01-2016
04:45 AM
|
0
|
2
|
7522
|
|
POST
|
My field had values like B3, M4, S5, E26, E10, E9, E11 (all within one field). I need to naturally sort so the values look like this: B3, E9, E10, E11, E26, M4, S5 I've tried the following code as suggested here, but it gives me an error stating "The value type is incompatible with the field type". If anyone has some suggestions I'd be interested! BTW I used this in Field Calculator import re def sorted_nicely( l ): """ Sorts the given iterable in the way that is expected. Required arguments: l -- The iterable to be sorted. """ convert = lambda text: int (text) if text.isdigit() else text alphanum_key = lambda key: [convert(c) for c in re.split( '([0-9]+)' , key)] return sorted (l, key = alphanum_key)
... View more
07-28-2016
11:26 AM
|
0
|
8
|
13633
|
|
POST
|
I'm exporting DDP as jpg images and I'd like to essentially create a custom world file for each page (I would need the N,S,E&W data frame midpoints in DMS). It's easy to get those values on my layout via dynamic text but I'd really like to have the coordinates readily available as text. Has anyone done this? Can I simply grab these data frame parameters for each page during the export process and write them out to a file? At the end of the day what I really want to do is drop these images in google earth and save as a KMZ. The caveat is that images can be no more than 1mp each so I need to tile all of my areas of interest then import to GE and georeference in that environment. Having the coordinates of the image extents makes it much easier to georeference the images in google earth (copy/paste). Alternate questions, is there an easier workflow that I'm missing?
... View more
07-25-2016
03:38 PM
|
0
|
0
|
1549
|
|
POST
|
Not sure what happened to the missing post but I did see all of the text via email notifications. Thanks Dan Patterson and Freddie Gibson for explaining the functions and finding a solution to my problem. This part by Freddie covered the initial problem. After some more thinking over the weekend I had a small suspicion that this might be the case (not returning int because the data is stored as a string). Thanks for confirming. Looking at your screenshot I'd assume your LeftPart field is a Text field because it allows you to store values other than numbers and decimals. As a result, even if the value in the field were '1234' the type would always return string because the values are stored as strings and not a numeric type (e.g. int, float, double).
... View more
07-18-2016
06:14 AM
|
0
|
0
|
2098
|
|
POST
|
Thanks, I'm sure this will be helpful in the future.
... View more
07-15-2016
01:21 PM
|
0
|
0
|
2098
|
|
POST
|
Thanks Dan, I appreciate the detailed response. I did find isinstance and started playing with it. What I'm really after is flagging non-integer values in a field. I'm parsing out house numbers from an address string and I want to flag any value that is not an integer for further review. Due to the nature of the data it's stored in a string field. def gettype(LPart):
return isinstance(LPart,int)
gettype( !LeftPart!) Calling the above function to populate the LType field gives the results shown above, but I would expect the last 3 rows to return 1 since they are integers. Is is returning false because the data is coming from a string field? Also, I see you are passing more arguments than just "int", I can't find any documentation on the classinfo argument, can you elaborate on that? Thanks, Rob
... View more
07-15-2016
01:20 PM
|
0
|
1
|
2098
|
|
POST
|
In field calculator this expression runs without an error, but it doesn't return a value. What am I doing wrong? type(!MyField!)
... View more
07-15-2016
12:06 PM
|
0
|
7
|
3911
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 3 | 2 weeks ago | |
| 1 | 03-20-2026 04:14 AM | |
| 1 | 07-01-2025 05:11 AM | |
| 1 | 06-13-2022 11:18 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|