|
POST
|
I wonder if this " return "xy"; " actually modifies the content (attribute) of the feature. Because no errors are reported and the apps working fine but the field is still not changing. Perhaps the correct thing is this: return {
'edit': [{
'classname' : 'WAT_Hydrant',
'updates' : [{
'objectID': hydrant.ObjectID,
'attributes' : {'INSP_STATUS' : 'OOS'}
}]
}]
} from: https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-edit-an-attribute-in-another/m-p/1271016#M67084
... View more
11-05-2024
11:01 PM
|
0
|
0
|
1317
|
|
POST
|
Hi @VinceAngelo , sorry, my bad. I meant 200 thousand rows. Its pretty slow for records this little.
... View more
11-05-2024
05:52 PM
|
0
|
2
|
1250
|
|
POST
|
I update the table on the web map app. I do not edit the spatial, only edit attribute. Even using Field Map, the arcade function is not invoked.
... View more
11-05-2024
01:17 AM
|
0
|
0
|
1367
|
|
POST
|
I want to populate an attribute based on another attribute value using arcgis arcade on a web map / field map. Suppose I have 2 attributes: attribute1 and attribute2. Attribute1 will be updated if Attribute2 has certain value. Here is the code on attribute1: if ($feature.attribute2 != "b") { return "yy"; } else { return "xy"; The formula is correct. But why attribute1 is not updated automatically when attribute2 is updated / inserted (I update the atribute by changing the column value of atribute2) ? Here is the screenshot:
... View more
11-05-2024
12:03 AM
|
0
|
6
|
1381
|
|
POST
|
The source is from another table on the same schema in the same database. I just solved it... Suppose the old table (the original attachment table that the relationship class is mapped to) failed to be loaded. then there is this new table (completely new but with exactly the same schema). I succesfully load the attachment into this new table. So now, I have 2 tabels: one is the old attachment (with a few thousand picture data), second is the new table (with all picture data) The main problem is that the attachment can not be re-synced to a new table. I tried several attempts using all geoprocessing tools relating to attachment. But all fail. Even using Load data (rigtht click on the target table), it gives out error "00117 Attachments are not supported in this Geodatabase release". Funny, these attachment tables are on exactly the same schema in the same database. Then I try to load data using query: insert into schem1.oldtable_attachment select * from schem1.newtable_attachment; It works like a charm
... View more
11-04-2024
05:22 PM
|
0
|
0
|
557
|
|
POST
|
Hi @JamalNUMAN . I encounter the same problem.. I was loading the attachment to feature Class stored in SDE postgresql and failed midway. Then I create another table with the exact same schema and turn the LOGGING of the table off. I load the attachment again into the new table. It is a success. But now there is a problem: how to get the relationship class to read this new table. Several legal attempts (I tried all Geoprocessing Tools relating with Attachment) do not work. I realize that I have 2 tables : one table is half empty table and another is table with successfull import. Then I open PGAdmin and start copying manually (INSERT INTO half_empty SELECT * FROM successfull_table). Now the attachment works again.. Hope that helps. I know it's been a long time but might be useful to someone
... View more
11-04-2024
04:46 PM
|
0
|
0
|
584
|
|
POST
|
hi @BrainIsBrokenNeedGISHelp , my feature layer is not hosted.. it's straight from enterprise SDE. is it still possible to have offline Field map ?
... View more
11-04-2024
03:51 PM
|
0
|
3
|
1701
|
|
POST
|
I am wondering whether Field Map can be used for completely offline survey without having internet connection. This is what I am expecting : Surveyor download the form and the map. Then they begin survey. The results are stored in their own device momentarily. In the end of the day, the results are then send to the server. Is it doable ? thanks
... View more
11-04-2024
12:52 AM
|
0
|
6
|
1774
|
|
POST
|
I try to create Web Map app / Field Map. I want to record the position as well. So i create columns :longx and laty. Both with data type Double. These coloumns will be calculated automatically. I publish the Feature Class as Feature Layer. I want the coordinate to be in the format of something like "-6.223096, 107.099671". So I define the projection of the map using Projected Coordinate System like: WG84 Web Mercator, WGS84, WGS 84 Auxilary. I try using Geographic WGS84 as well. All fail. But When I use Geographic Coordinate UTM it works. I wonder why ? It seems that certain coordinates do not work How can I have the coordinate to be recorded with format like "-6.223096, 107.099671" (is it Decimal Degree ?. I don't have any geographic background) What I am using: Arcgis Enterprise 11.0, Postgresql 17.
... View more
11-04-2024
12:40 AM
|
0
|
1
|
568
|
|
POST
|
I have File Geodatabase on a shared folder somewhere on the server. It contains 200 million rows with attachment pictures. The size is 133 Gb. I want to do a simple thing like "select by attributes" using OR. Why does it take so long ? it has been nearly half an hour and still processing on 4% progress mark (the progress mark does not increase as well).. Here is the attached pic:
... View more
11-03-2024
06:50 PM
|
0
|
6
|
1343
|
|
POST
|
I have successfully (sort of..) exported attachments that contain many photos. Here is what I do in order: 1. Copy the Feature Class. 2. Paste it on the target SDE geodatabase Postgresql. This will copy the whole thing, including the relationship class Error comes up. Not all pictures are copied but the whole objects in the Feature Class are copied. 3. I create a new the attachment table with random name. Then turn it into UNLOGGED (ALTER TABLE mytable SET UNLOGGED;) then start copying. After 4 hours, the whole attachments are copied successfully. No errors. 4. I set the table back to LOG. 5. Rename the attachment table above to the original hoping that it will sync automatically 6. Reindex the table. Then I do random check. Seems that the attachment picture is wrong. One object should have a picture of "mountain", but instead I get "sea". How can I fix the relationship table ? I am using: Arcgis Pro 11.0 and Arcgis Enterprise 11.0 with Postgresql 17 thanks
... View more
11-03-2024
04:45 PM
|
0
|
2
|
607
|
|
POST
|
How to reindex feature class that just been loaded into postgresql ? I load the data using Append tool. I know I can use "rebuild Indexes (Data Management)". But, can I use Postgresql command such as "REINDEX (verbose, concurrently) TABLE dbgis.bnp__attach;" Note: this table is an attachment that contains blob data. It has 200K+ records and each row has around 1MB of blob (picture)
... View more
10-29-2024
08:22 PM
|
0
|
3
|
945
|
|
POST
|
I have Point feature class with 200K data with photos (blob) on it. Each row has around 1MB+ photo in File GDB. So, in total there are around minimum 200K*1Mb of blob data. Now, I want to somehow reduce the photo size for each record upon loading data into SDE Geodatabase. How can I do this ? I have storage limitation on SDE Geodatabase.
... View more
10-28-2024
08:17 PM
|
0
|
2
|
791
|
|
POST
|
Hi @AlixVezina , I tried it but can not find the related Feature Service that I want to count from. Here I am trying to set the Smart Form for feature service AreaA to count the underlying feature service (or map service) PointB. There are no attributes for PointB that are listed. They are not detected. Why ?
... View more
10-23-2024
04:37 PM
|
0
|
1
|
1128
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-25-2024 12:33 AM | |
| 1 | 11-21-2025 12:57 AM | |
| 1 | 11-12-2024 08:22 PM | |
| 1 | 10-13-2024 11:55 PM | |
| 1 | 02-25-2022 05:49 AM |
| Online Status |
Offline
|
| Date Last Visited |
a month ago
|