Back to contents pageHow to create a new dataset using the API

How to create a new dataset using the API

Summary

The purpose of this article is to let you see what goes on behind the scenes when you create a new dataset using Site Manager and Location Engine Configuration. The idea is that you use the example application and read the C# source code to find out exactly what is happening.





Prerequisites

None. You can use this article on its own.



Example material

Save this link to get a zip file of the example material


Guide

The example application allows you to create new types and add/remove objects, areas, cells and ownerships using the API. These are the main things that you will need to do when you want to create a new dataset. Don't use the example application with a dataset that is in use. If you want to modify a dataset that is in use, use Site Manager and Location Engine Configuration as required. The example application is intended to show you what goes on behind the scenes, since you can't normally see what happens when you use the GUIs. So, take the time to review the source code in WizardForm.cs.



Back to top