Hello all, this is my first question in GeoNet.
I want to create a web map inside our ArcGIS Enterprise. This map will contain the following features,
What are the best options for this. The ArcGIS Enterprise has both Server and Portal 10.6 in separate machines, federated and hosting server defined with limited resources. arcgisenterprise dynamic table
Solved! Go to Solution.
Thanks Sunbeam Rahman.
since your answer to #3 is yes, I'd say add new daily forecast data to 'pest status' table (instead of adding them in newly created tables). Depending on how far in the past you want your users to go back in time, you can periodically remove older records from that table to keep the size of the table manageable. If you have both 'UnionCode' and the date-time fields indexed, pulling 5000+ records from a table and joining them to another shouldn't be a big issue for an enterprise database these days.
pls read the following help topic:
Temporal data in separate tables—Help | ArcGIS for Desktop
since your table gets updated daily, pls read this help as well: Calculating the time extent of your data—Help | ArcGIS for Desktop
pls let me know if you have any question.
Any ideas? Anyone?
have few questions:
1. The 'pest status' table has 5000+ rows referencing the admin polygons using the key 'UnionCode'
2. the new data is a separate table with the same 'UnionCode'. This means all 5000+ rows have an update everyday (every administrative polygon gets a pest forecast that changes with weather), this means everyday a new table. If this changes are to be inserted in the same table the table will get huge
3. yes, the user has the freedom to roam in any time in the past
Thanks Sunbeam Rahman.
since your answer to #3 is yes, I'd say add new daily forecast data to 'pest status' table (instead of adding them in newly created tables). Depending on how far in the past you want your users to go back in time, you can periodically remove older records from that table to keep the size of the table manageable. If you have both 'UnionCode' and the date-time fields indexed, pulling 5000+ records from a table and joining them to another shouldn't be a big issue for an enterprise database these days.
pls read the following help topic:
Temporal data in separate tables—Help | ArcGIS for Desktop
since your table gets updated daily, pls read this help as well: Calculating the time extent of your data—Help | ArcGIS for Desktop
pls let me know if you have any question.
Thanks @Tanu Hoque. I have few more queries,
1. It all depends on your use case. If you were to store a year worth of daily forecast data, you'd end up having a table with close to 2 million records. If you index datetime and unioncode fields, then database should be able to pull out 5000+ records for a single day and join them admin boundaries pretty fast (of course it'd also depends on the capacity of the machine that is hosting your database). I think you need to do some trial outs to find out at what point database performance does not meet your expectation. Pls keep in mind that when you share that out as a map service, there may be more than one users hitting the database.
Regarding aggregation: if i'm not mistaken, you want to use the daily forecast data, therefore aggregation would not help much (in fact it might be relatively expensive). If your data were like hourly or bi-hourly forecast, and you'd want to visualize them using dynamically computed daily forecast, yes, then you could have gone with the aggregation approach I described in the blog post.
2. my understanding is that both admin boundary and pest-status tables are in the same database, right? if so, you can follow the same steps that described in the help topic I specified earlier to join.
you can use query layer too, there won't be any performance difference between query layer and doing joins in arcmap (as described in the help topic).
3. popup should work with map's current time.
hope this helps. pls let me know if you have any question.