| FRAMES | NO FRAMES |
Returns the tree of standard geography levels.
Availability: Business Analyst Server.
string StdGeographiesTree (
StdGeographiesTreeParams Parameters
);
| Parameter | Description |
|---|---|
| Parameters | Configuration options. Type StdGeographiesTreeParams. |
Variable of type String containing XML serialized tree of standard geography levels
The example below requests an XML representation of a hierarchical tree of geography levels associated with the Business Analyst Server core dataset.
| C# |
// Instantiate the BAServerHelper class to access analysis methods BAServerHelper baServerHelper = new BAServerHelper(); baServerHelper.ActiveDatasetID = "USA_ESRI"; // Optional parameter string stdGeographiesTree = baServerHelper.StdGeographiesTree(); |