|
POST
|
I am about to embark on a survey project using Field Map. The data are stored on postgresql 16 using Enterprise 11.0. What settings / configurations should I consider ? What values do I set into ? The survey will involve: - 70 surveyor using mobile phone accessing Field Map. Probably will have 20-30 concurrrent insert to database. - point Feature Class that contain data to be inserted. There are around 30 cloumns to be filled in. This will contain some photos too, small size around 10 - 50 kb. Editing attributes will happen here, including insert photos (small size, 10-50kb). - Polygon Feature Class that contain photos and 4 attributes only for confirmatory process. This will be used as guidance only, no editing here. - QC processes using arcgis pro. this will access geodatabase directly and accessing survey data via feature service. This will compare the newly inserted data and the old data. There will be around 5 - 10 people doing the QC. Here is the current configuration:
... View more
11-11-2024
08:51 PM
|
0
|
4
|
1735
|
|
POST
|
Yup. Thats correct @VinceAngelo . I eventually copy the data into my laptop. It's much faster now. Shared folder does not work that fast.
... View more
11-11-2024
08:41 PM
|
0
|
0
|
2114
|
|
POST
|
I create a blob colomn on a Feature Class. I have populated this colomn by the value from another table using normal query (update ajt_gis.point SET gbr = (select data from ajt_gis.point__attach) where objectid = 2; Actually I want to conduct a survey with this scenario : This survey involves viewing the old picture by the surveyor to make sure that they are in the right place. Then the surveyor will take another picture (new picture) of the building. So the data has 2 pictures : old and new. The Old one is stored in the blob colomn of Feature Class whereas the New one is stored in the attachment. Is it possible ? How do I possibly view this blob colomn on the Feature Class using web map / arcgis desktop / apps by arcgis ? I know I can view the picture by using attachment. I am using Enterprise 11.0 with Postgres 16
... View more
11-10-2024
09:13 PM
|
0
|
0
|
659
|
|
POST
|
I want to assign A User or A Group to a Web App with editing feature. I want this User / Group to have certain access to content. How do I manage this ? I have difficulties in understanding the relation between User Type and User Role. Does access to Web App with editing feature depend on the Role or User Type ? Thanks I am using Geoportal 11.0
... View more
11-08-2024
12:26 AM
|
0
|
1
|
1367
|
|
POST
|
How to check if editing and calculation are enabled ? My service is a feature service with update geometry and attribute enabled...
... View more
11-06-2024
01:40 AM
|
0
|
1
|
2140
|
|
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
|
2147
|
|
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
|
2169
|
|
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
|
2197
|
|
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
|
2211
|
|
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
|
944
|
|
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
|
1316
|
|
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
|
3475
|
|
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
|
3548
|
|
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
|
851
|
| 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 |
02-04-2026
05:39 PM
|