|
POST
|
Today (7/19) I'm unable to add kudos.... No kudos for you...
... View more
07-19-2021
07:11 AM
|
1
|
2
|
1862
|
|
POST
|
Did you activate the clone as your go to environment in Pro?
... View more
07-18-2021
09:17 AM
|
0
|
1
|
2135
|
|
POST
|
As Dan suggests arcpy and or ArcGis Pro aren’t your best choices. Do a Google search on ‘python linear regression’. You’ll find several resources to get you started.
... View more
07-18-2021
09:13 AM
|
0
|
0
|
4153
|
|
POST
|
Below is an attribute rule I fire when I create a a site address point . I don't use arcade for calculations as I prefer Python, but you get the gist of an If/Else and returning a value. This expression basically looks to see if a new point intersects an underlying feature layer; If it does (line 5) it grabs the value in the ZIP_MOD_ID field, other wise it returns null... // Zip Left Right
var zip = FeatureSetByName($datastore,"MSD.SLCOMSD.ZipcodesMSD",["ZIP_MOD_ID"], true)
var intersectLayer = Intersects(zip, Geometry($feature))
if (Count(intersectLayer) > 0) {
var layer = First(intersectLayer);
return layer.ZIP_MOD_ID;
} else {
return null;
}
... View more
07-16-2021
07:45 AM
|
1
|
0
|
5125
|
|
POST
|
I don’t see you returning a value to your expression. I’m responding from my phone so I don’t have anything I can grab for an example. I’ll try to remember you in the morning. Another thing too, and just like in python, the continue/pass in this case may be syntactically correct but you need to return an actual value instead.
... View more
07-15-2021
06:04 PM
|
0
|
2
|
5135
|
|
POST
|
@ShanaBritt : I am unable to replicate the problem now. The rematch process works just fine. I cannot explain it but I did do a re-install of ArcGIS Pro 2.7.2 because I encountered some problems after installing 2.8. Maybe I had a bad install? Stranger things have happened. Some good news though: I believe I have isolated the problem when rematching and it returns you to the first record after you make an edit to the Single Line Input Just now I tried to rematch a selected set of records, and I was bounced back to #1 when ever I made an edit. If I clear the selection, I can adjust the Single Line Input and continue along. The data I am trying to geocode has tons of records where the ADDRESS field is Null. If I first geocode the entire table I get something like 3500 unmatched records. I then select where ADDRESS is not Null and that leaves me with only 270 to rematch. That's manageable, but not so much if I'm constantly getting bounced back to #1.
... View more
07-15-2021
04:17 PM
|
0
|
2
|
2321
|
|
POST
|
I opened your url in an incognito window and it worked. I then closed it, and logged out of the forum page. But when I log back in, I'm faced with the same problem. It's time for beer...
... View more
07-15-2021
03:59 PM
|
1
|
1
|
1743
|
|
POST
|
Not sure what that is doing: that url takes me right back to the main page.
... View more
07-15-2021
03:50 PM
|
0
|
1
|
1748
|
|
POST
|
I'd like to search the Ideas space for a particular string. I enter the string in the search bar, and of course it it finds a bazzillion records. When I select the 'Type of Post' pulldown menu, I can't check Ideas. Is there a way to search Ideas for a given string?
... View more
07-15-2021
03:35 PM
|
0
|
5
|
1762
|
|
POST
|
Dusting this off @ShanaBritt ... ...then geocode the table of addresses using Single Field for the input address fields. I misunderstood what you are suggesting here, thinking that I should create a locator with a single field of reference. When ever I geocode a table, that table has one field: ADDRESS and all the values are in the form of: 1234 S MAIN ST 4576 S MAIN ST # 101 I may have Null values here and there, but they typically are all filled correctly:
... View more
07-15-2021
01:30 PM
|
0
|
0
|
2322
|
|
POST
|
By appending a few at a time, you are basically sifting through the features. Depending on how many features the problem child has this can/will be an arduous task. Nothing sexy about data clean up, but obviously it's essential.
... View more
07-15-2021
10:29 AM
|
0
|
0
|
2597
|
|
POST
|
Well shoot: sounds like you've got your bases well covered. What if..... You create another line feature class that has the same schema as the problem child and use the new one in your topology. The idea is to append features from the problem child to the new one a dozen or so at a time and see if/when you hit your wall.
... View more
07-15-2021
09:50 AM
|
0
|
2
|
2601
|
|
POST
|
Running “Repair Geometry” on the offending feature class and validating topology – no success What type of GDB is the data stored? Repair Geometry only works for File Geodatabase features. That said, I wonder of you have some null geometries that a causing the problem in that feature class.
... View more
07-15-2021
09:31 AM
|
0
|
4
|
2607
|
|
POST
|
What is the 'print' statement you are using? Replace that with 'return' and see if that works for you: if ($feature["USER_RECEIPT_NU"] == 8967){
return('')
}
else{
return($feature["USER_ID_NUMBER"])
} I just whipped this up on some data I have in AGOL...
... View more
07-15-2021
09:17 AM
|
0
|
0
|
1956
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-11-2018 07:12 AM | |
| 1 | 05-17-2021 11:18 AM | |
| 1 | 06-29-2021 11:42 AM | |
| 1 | 07-05-2012 07:49 AM | |
| 1 | 09-03-2016 06:16 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-19-2026
11:56 AM
|