Introduction to Modgen

PDF Version (PDF, 365.73 KB)

Introduction

Modgen was designed to facilitate microsimulation model programming. Its purpose is to remove as many obstacles to microsimulation model creation as possible. Some of these obstacles are:

  • Interface programming
  • Documentation
  • Simulation engine programming
  • Bilingualism

Modgen eliminates all these obstacles as it provides the interface and the simulation engine, is bilingual and facilitates documentation. Obviously, this list is not exhaustive and is only given as an example.

One benefit of using Modgen to create microsimulation models is that there is no need to hire programmers to program them. Modgen takes care of most of the programming. What remains is usually simple enough that a person with no advanced knowledge of programming can do it. Having in-depth knowledge of programming can even be detrimental since the developer then has to limit himself to a programming style that will be understood by the analyst responsible for the model.

Also, it is not necessary to understand in detail what Modgen does in order to be able to use it. However, it might be useful to have a general idea of what it does, and providing such information is the purpose of this document.

Modgen installation

There are two products, and thus two installation programs, associated with Modgen. These products are:

  • Modgen Prerequisites 12
  • Modgen 12

Here is what each of those products contains and a description of what they do.

Modgen Prerequisites 12

In general, Modgen Prerequisites 12 contains everything necessary for models to run on a machine. If a developer wants to distribute a model, model users must install Modgen Prerequisites 12 before installing the model. This product contains:

  • Modgen model user licence
  • Modgen model user documentationThis documentation is of concern primarily to users of the model's interfaces. It does not give any model creation assistance. This documentation includes:
    • The Modgen 12 Guide to the Visual Interface
    • The Modgen Prerequisites 12 Release Notes
  • Cleaner applicationThis application cleans up the temporary files left on a machine when a model simulation fails. If a simulation ends successfully, no temporary files will remain. It is installed with Modgen Prerequisites 12 and is run in each new Windows session. It is also possible to run the application manually but you must avoid doing this when a simulation is in progress.
  • Modgen automated serverA component that allows other programs to read scenario parameter file records.
  • Microsoft PrerequisitesSome files provided by Microsoft that are needed to run Modgen models.

Modgen 12

In general, Modgen 12 contains everything needed for model development, although Visual Studio 2015 or 2017 is also required (but not included in Modgen 12!) Specifically, this product contains:

  • Modgen prerequisites
  • Modgen model creation licence
  • Everything necessary to create new models:This includes the Modgen precompiler, the Modgen library and header files.
  • Documentation for model developers:This documentation is of interest to model developers. It provides concrete assistance on model creation, syntax to be used, etc. It includes:
    • Modgen 12 Developer's Guide
    • Modgen 12 Release Notes
  • Integration with Visual Studio capabilities

Modgen components

Three main components make up Modgen. These are:

  • The Modgen precompiler
  • The Modgen library
  • The automated server

The first two components are used together to create models and are described in this document. The automated server, which makes it possible to access functions that read from and write to parameter files, will not be discussed here.

As a reminder, the chart below shows the links among the files needed to create executable simulation model files as part of an application. It also shows the inputs/outputs that executable model files need.

Chart showing the executable simulation model
Description: Chart showing the executable simulation model

The Modgen Precompiler takes the source code (.mpp files) and produces the following C++ files:

  • actors.h
  • actors.cpp
  • tabinit.h
  • tabinit.cpp
  • model.h
  • model.rc
  • parse.inf

These files, along with the Modgen Library, are compiled by the C++ Compiler to create an executable. This executable reads .sce and .dat files and produces tables.

Note that Modgen is not independent from Visual Studio. Model developers must have the appropriate version of Visual Studio to be able to create models (Visual Studio 2015 or 2017, at least the Standard Edition, for Modgen 12).

Precompiler

The precompiler is the executable file "Modgen.exe". The Modgen language in which developers write models is an extension of the C++ language. Before being compiled, model code must be converted to C++ code. That is what the precompiler does. It reads the .mpp files containing the model code and creates equivalent .cpp files, along with special files needed for model creation. Here is a more detailed description of what Modgen does at the precompilation stage:

  • Checks that the syntax is correct for every Modgen language element. The C++ syntax is then checked by the C++ compiler.
  • Checks that essential functions such as "Simulation" are in the model code.
  • Figures out the actors and creates the classes by bringing together all the actor declarations scattered throughout the .mpp files.
  • Figures out the desired tables and creates classes for tables.
  • Figures out the relationships among states and other symbols (derived states, events, tables) and creates the code necessary to maintain those relationships.
  • Creates the code necessary to update the time for each actor.
  • Creates an internal structure allowing the model to create a model help system independently as needed.

Note that this list is not exhaustive. The precompiler is called automatically when a model is built.

Library

The Modgen library contains the entities that all models have in common. At compilation time, links are made with the Modgen library to incorporate it into the model's executable file. In this way, each model is an independent executable file. Amongst other things, the library contains:

  • The interface for all Modgen models
  • The simulation engine
  • The help generator

The C++ language requires certain header files in order to incorporate the library into models. These files are installed with Modgen. In addition to the Modgen library, there are other Microsoft libraries and header files supplied with Visual Studio and incorporated into models.

Bilingualism

Canadian law requires that all software applications created by a Government of Canada agency be bilingual - i.e. that English and French be treated equally. Since Modgen is a software application created at Statistics Canada, it must be bilingual. However, in Modgen's case, more than one level of bilingualism is required. In fact, Modgen is an application that allows other applications to be created. It is thus not only necessary for Modgen to be bilingual, but also that it allows bilingual applications to be created.

Precompiler

Modgen itself is bilingual. English and French are treated as equally as possible. The language chosen must be given in an argument on the precompiler's command line.

Example:

c:\Program Files\StatCan\Modgen 12\Modgen.exe -EN

In practice, the Modgen precompiler is called when building a model. The language used by Modgen can be changed using and utility installed with Modgen called Langue Modgen.

Models

Modgen contains everything needed for model interfaces to be bilingual - i.e. in English and French. In addition, model developers can very easily use languages other than English and French. All that is necessary is to translate one of the files containing all the Modgen character strings (ModgenEN.mpp or ModgenFR.mpp) and include it as a module in the model.

Even though Modgen is bilingual, an interface will only have the language(s) defined in the model. To make a model bilingual, it must be defined as bilingual. Here is how to define the languages used by the Government of Canada:

// These are the languages in which the model can be viewed. 
languages 
{
	EN,	// English
	FR	// Français
};

Remember that all models distributed by the Government of Canada must be bilingual. This might not be clear if a model is a software package or a data product. However, it makes no difference since in both cases it must be fully bilingual if it is produced by a Government of Canada agency.

Modgen model elements

Modgen can be used to create two different kinds of models:

  • Case-based modelsA case-based model is a model where the simulation takes place case by case. A case typically consists of a main actor with, if required, secondary actors surrounding the main actor. However, in some models, there can be more than one main actor per case if, for example, a case simulates a family. The number of cases to be simulated is defined as a run control parameter. The "LifePaths", "PopSim" and "Pohem" models are examples of case models.
  • Time-based modelsA time-based model is a model in which a population, together, is simulated over a certain time. The duration of the simulation is then defined as a run control parameter. The "CVMM" and "HIVMM" models are examples of time-based models.

Model content

Case-based models and time-based models are made up of Modgen symbols. It is these symbols and the relationships among them that control the simulation. A short description of each symbol type is given here. For a more detailed description, please refer to the Modgen 12 Developer's Guide.

Actors

First, Modgen models simulate the lives of actors. An actor may be any entity the model developer wishes to simulate - a person, a dwelling, a pension plan, etc.

Actors are defined by their:

  • States
  • Events
  • Functions
  • Hooks
States

States describe actors' characteristics. There are two major kinds of states in Modgen models:

  • Simple states
  • Derived states
Simple states

Simple states are states whose values are not maintained automatically by Modgen. Rather, the values of simple states are changed in the code created by the model developer. Simple states should only be changed inside an event or a function called inside an event.

Example:

int age_int ;	//EN Integer age

Simple states may have an initial value. To distinguish them from derived states, initial values are assigned to simple states using curly brackets.

Example:

int age_int = {0} ;	//EN Integer age 
Derived states:

Derived states are states whose values are given as an expression in the declaration. Modgen maintains the value of these states throughout the simulation. Normally, these states are derived from other states, which explains their name.

Example:

//EN Year
	MODELED_TIME modeled_year = COERCE(MODELED_TIME, year);

In addition to simple expressions like the one in the example above, there are also functions that model developers may choose to use to create derived states.

Example:

//EN Age at year start 
int	age_debut_annee = value_at_latest_change(annee, age_int); 
Type

Generally, states are declared to be of type:

  • Integer (int)
  • Real (float or double)
  • Logical (logical)
  • Time (TIME)
  • With a type created in the model (classification, range, partition)
Events

Events play a key role in Modgen models since it is by executing events that simulation is done. Each event is made up of a pair of functions:

  • a function to determine the time of the event
  • a function to determine the consequences of the event

Event times are updated as needed. When a time must be recalculated, Modgen re-evaluates the value of the event time function. It assumes that event times must be recalculated when:

  • one of the states used in an event time function changes its value
  • the event occurs.

An event time function should not affect the actors. That implies that states can never be changed inside an event time function. The Modgen precompiler ensures that that does not happen.

The opposite is true for event functions. Functions that determine the consequences of events are in fact what are executed when events occur. It is inside event functions that states are changed. States should never be changed outside an event or a function called by an event function once initialization has been completed. Again, Modgen ensures that that does not happen.

Functions

Functions that are members of an actor may be used to generalize sections of code that will be used in one or more events. In general, a function should be created when a section of code will be used in several places. In that case, using a function simplifies maintenance since when the code has to be changed, it need only be changed in one place. Not using functions in those cases increases the risk of introducing bugs. Sometimes, we might want to use a function even if the code is not reused, either because it might be reused eventually or to increase modularity.

In addition to functions created by the model developer, there are two functions that actors must have. These are the "Start" and "Finish" functions.

"Start" function

There must be a "Start" function for each actor. It is called once for each actor when the actor is created. It contains the actor's initialization, including the initialization done by Modgen. Note that a state initialized in the "Start" function neither affects tables nor derived states such as "entrances()". For that reason, it is better to do those initializations in the "Start" function and not in the function that creates the actor. If the model developer has no initialization to do and does not include the "Start" function, Modgen creates a function containing only the initialization of states to the default values set by Modgen.

Example 1:

actor Personne  //EN Person
{
	void Start();	//EN Starts the person actor
};
void Personne::Start()
{
}

Example 2:

actor Personne  //EN Person
{
	//EN Starts the person actor
	void Start( int nObs, logical lImmigrant, double dTempsDebut, 
		logical lEnfant, Personne *prMere ); 
};  

/*NOTE(Personne.Start, EN)
	Function which starts the person actor.
*/
void Personne::Start( int nObs, bool bImmigrant, TIME tTempsDebut, bool bEnfant) 
{
	immigre_apres_recensement = bImmigrant;
	num_recense = nObs;

	ne_apres_recensement = bEnfant;

	time = CoarsenMantissa(tTempsDebut);
...
	vivant = TRUE;
	emigrant = FALSE;
   
	// Year 
	annee = (int) time;
};

In the example above, the states "vivant" and "emigrant" should have been initialized when they were declared. In general, states initialized in the "Start" function are states whose values are not constant but may depend, for example, on values given as arguments to the function.

"Finish" function

There is also a "Finish" function to contain everything that must be done when an actor is deleted. For example, we might want all actors to which an actor is linked to be deleted also. If the model developer has nothing in particular to do before an actor is deleted and omits the "Finish" function, Modgen automatically creates a basic function. Note that Modgen deletes all links to other actors when the "Finish" function is called but does not call those actors' "Finish" functions.

Example:

actor Personne  //EN Person 
{
	void Finish();	//EN Ends Person actor 
};  

void Personne::Finish()
{
    // Empty for now
}
Hooks

Hooks are used to link functions to events or to other functions. This makes it possible to divide events or functions into different sections belonging to different models.

In particular, many hooks are used with the "Start" and "Finish" functions to do initialization related to a module inside this module itself. By default, all hooks are inserted at the end of functions. If we want all hooks to be inserted elsewhere, we can do this by defining "IMPLEMENT_HOOK" at the appropriate place in the function.

Here is an example where hooks are inserted at the start of the function:

/* NOTE(Person.Finish,EN) 
Function which cleans up the actor once finished.
*/
void Person::Finish()
{
	Person *prChild = {NULL};
	int nIndex = {0};

	IMPLEMENT_HOOK();
...
	if ( tentative && sex == FEMALE ) 
	{
		mlChildren->FinishAll();
		mlChildrenAtHome->FinishAll();
		mlBiologicalChildren->FinishAll();
	}
}

Note that in the case of the "Finish" function, it makes more sense to have the hooks at the start of the function since the actor's properties are no longer valid at the end of it.

It can also happen that we want to insert hooks at a different place from the others. In that case, we create an intermediate function to which hooks are attached and call that function at the proper place.

Example:

actor Person	//EN Core individual
{
	void Start( ...);	//EN Function which initializes Person actor
	void StartClockHere();	//EN Start Clock dummy function
};

/* NOTE(Person.StartClockHere,EN) 
Dummy function which allows the clock to be initialized prior to all other hooked functions and derived functions.
*/
void Person::StartClockHere()
{
}

void Person::Start( ... )
{
...
	time = birth;
	StartClockHere(); 
...	
	year_of_birth = year;
	month_of_birth = month_of_year;
	day_of_birth = day_of_month;
...	
}

In this example, the "StartClockHere" function will be executed immediately after the time is initialized. The other "Start" function hooks are only executed at the end of the function. This makes it possible for them to use clock states such as "year", "month", etc. to initialize other states. The "StartClockHere" function does not contain code but rather associated hooks:

actor Person	//EN Core individual
{
	//EN Initialize the clock at birth of actor
	void StartClock();

	hook StartClock, StartClockHere;
};

It is the "StartClock" function, defined in another module, which contains the code that initializes the clock and its states such as "year", "month", etc.

Actor sets

Actor sets are collections of actors maintained dynamically by Modgen. This means that membership in an actor set is handled by Modgen based on criteria provided by the model developer. Actor sets can be multidimensional. Dimensions of actor sets are specified using states of the actors. For each combination of values of the dimensions of an actor set, subsets of actors are created. Modgen automatically ensures that each actor can only belong to one such subset. To find out more about actor sets, you can refer to the Modgen Developer's Guide.

Links

Links define relationships among actors of the same or different types. There can be links between one actor and a single other actor, one actor and several actors, or several actors and several actors. In all cases, Modgen automatically creates and maintains reciprocal links. This means that a model's code need only assign one of the links and the reciprocal link will be altered to reflect the change.

Examples of links:

// Declare the one-to-many link for family membership
link
	Person.lFamily		//EN Family
	Family.mlMembers[]	//EN Family members 
;

// link between children and parents 
link 
	Person.mlChildren[]	//EN Children
	Person.mlParents[]	//EN Parents 
;

// link between person and spouse
link Person.lSpouse;	//EN Spouse

For more information on links, you may refer to the Modgen 12 Developer's Guide.

Parameters

Parameters give model users a certain amount of control over simulations. They should be used everywhere the developer wishes to give control of a model to the user. Allowing model users to specify hazards to control various aspects of a simulation, for example, gives them an opportunity to explore different scenarios.

There are two main kinds of parameters:

  • parameters
  • model-generated parameters
Parameters

This is the most frequent kind. Parameters are used when users are to enter values. Parameter values are found in .dat files. Users thus control the values of these parameters directly.

Example:

parameters 
{
	//EN total mortality hazards (m total) 
	double MortHazard[MODELED_AGE][SEX];
};
model-generated parameters

These are parameters that must be derived, often from other values given in parameters. For each model-generated parameter, there must be corresponding code in the "PreSimulation" function, as illustrated in the following example.

Example:

parameters 
{
	//EN Residual mortality hazards
	model_generated double 
		ResidualMortHazard[MODELED_AGE][SEX];
};

Tables

Modgen models produce output in the form of tables. There are two different table types:

  • tablesA model's cross-tabulated tables generate a simulation's aggregated results.
  • user tablesThese tables are misnamed. It is not model users who are referred to but Modgen users - in other words, model developers!User tables allow model developers to create code to calculate the value of each cell. For each user table, code must be placed in a "UserTables" function to control the table's contents. Typically, this code reads and combines values from various tables to create other tables.

Table and parameter groups

Modgen allows some symbols to be grouped together. These groups are mainly used to group symbols in model interfaces but are also described in the model's help generated by Modgen. There are three kinds of symbols that can be grouped:

  • model parameters
  • model-generated parameters
  • tables and user tables

Membership of a symbol in a group must be specified in the group's declaration. Note that a group itself can contain another group of the same kind, thus giving the model developer the ability to create a hierarchy.

Example of a parameter group:

parameter_group DEMOGRAPHY  //EN Demography parameters 
{
	HasardMortalite, HasardNatalite, AgeMaximal, ProbabiliteGarcon, VariationFecondite
};

Example of a table group:

table_group DemographyTables { //EN Demography tables 
    BirthRates,
    Population,
    Population5Year
};

Types

Type symbols are support symbols. They are not essential to simulations since they do not play any specific role in the running of a model. However, they are everywhere since they are used to define other symbols such as states and parameters. They are also used to give labels to tables. There are three kinds of type symbols:

  • Classifications
  • Ranges
  • Partitions
Classifications

A classification is a set of levels or categories with their labels.

Example:

classification LANGUE2 
{
	//EN francophone
	L2_FRANCO,
	//EN non francophone
	L2_NON_FRANCO
};
Ranges

These are integer number ranges.

Example:

range AGE_NATALITE {15, 49} ;	//EN Age for birth rates
Partitions

Set of boundary points for continuous (or discrete) state variables.

Example:

//EN Age groups 
partition GROUPE_AGE 
{ 
	5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 
	80, 85, 90, 95, 100 
};

The descriptions presented here are taken from the Modgen 12 Developer's Guide. You can refer to it for a more complete description.

Course of a model simulation

In addition to the symbols contained in them, models are also made up of sets of general functions that control their execution. The process described here is for that of a case-based model. However, most of what is described here also applies to time-based models. Note that this section does not deal with the issue of parallel processing that is incorporated into Modgen.

Parameter reading

The first step of a case or time-based model simulation is to read the parameters. It is not necessary to create a global function in the model code to manage parameter reading or interactive modification. That is provided by Modgen.

Parameter validation

Modgen includes functions that allow developers to validate and change the values of the parameters provided by users. For more information on those functions, you can refer to the Modgen 12 Developer's Guide.

Presimulation

After the parameters are read, the presimulation phase begins. This phase will not do anything at all unless the model developer has defined one or more "PreSimulation" functions. Note that it is possible to create more than one "PreSimulation" function to increase modularity. In a future version of Modgen, it will even be possible to specify the execution order of a model's "PreSimulation" functions.

Normally, "PreSimulation" serves to calculate the model-generated parameters. At this stage, there is still just one simulation thread so the model-generated parameters can be changed without there being any risk of conflict between the different simulation threads. Moreover, a "PreSimulation" function cannot change actors since they have not yet been created.

Example:

parameters 
{
	//EN total mortality hazards (m tot) 
	double MortHazard[MODELED_AGE][SEX];

	//EN cause-specific population death hazards for disease X (m(x))
	double MortHazardX[MODELED_AGE][SEX];

	//EN cause-specific population death hazards for disease C (m(c))
	double MortHazardC[MODELED_AGE][SEX];

	//EN Residual mortality hazards
	model_generated double 
		ResidualMortHazard[MODELED_AGE][SEX];
};

void PreSimulation()
{
	int nAge = {0};
	int nSex = {0};
	int nTime = {0};

	for (nAge = 0; nAge < SIZE(MODELED_AGE); nAge++)
	{
		for (nSex = 0; nSex < SIZE(SEX); nSex++)
		{
			// Calculate residual mortality hazard
			ResidualMortHazard[nAge][nSex] = 
				MortHazard[nAge][nSex] 
					 MortHazardC[nAge][nSex] 
					 MortHazardX[nAge][nSex];
		}
	}
}

Simulation

Once the presimulation has ended, the simulation phase begins. The model must contain a "Simulation" function. Typically, for case-based models this will simply be a loop calling the "CaseSimulation"function for each model case.

Example:

void Simulation()
{
	long  lCase = 0;
	for ( lCase = 0; lCase < CASES() && !gbInterrupted && !gbCancelled && !gbErrors; lCase++ )
	{
		StartCase(); 
		CaseSimulation(); 
		SignalCase();
	}
}

The "Simulation" function is more complicated for time-based models since it also has to create an initial population. It must also contain the events loop found in the "CaseSimulation" function described below for case-based models.

Note that this function is included in models created using a Modgen model creation wizard.

CaseSimulation

In case-based models, Modgen does not require a function called "CaseSimulation". However, using such a function simplifies the code. This function is responsible for the simulation of one case and starts by creating the case's starting actor. It is inside this function that the events loop controlling the simulation of the case should be found.

Example of an events loop:

// event loop for current case 
while ( !gpoEventQueue->Empty() ) 
{
		
	if ( gbCancelled || gbErrors)
	{
		// in case of errors, close case and destroy all actors 
		gpoEventQueue->FinishAllActors();
	}
	else 
	{
		// advance time to next event 
		gpoEventQueue->WaitUntil( gpoEventQueue->NextEvent() );
	
		// execute next event 
		gpoEventQueue->Implement();
	}
}

This loop is at the heart of model simulation and should only be changed with great care. Note also that it is included in models created by one of Modgen's model creation wizards.

In fact, this loop controls the Modgen simulation engine. Within the simulation engine, there is an events queue that maintains the wait time for each model event. This queue is ordered in such a way that events are executed in a specific order. The simulation engine within Modgen executes the events in the following order:

  • The event with the smallest wait time is executed first
  • If times are the same, the event with the highest priority is executed first
  • If their priorities are the same, events are executed in alphabetical order
  • If their names are also the same, the event of the actor first created in the simulation is executed first.Note that events with the same name have to be associated with different actors, since a given event can only be found once for each separate actor in the events queue.

PostSimulation

If needed, model developers may also define a "PostSimulation" function. If it is defined, this function is run after the simulation phase but before data is tabulated. This function is only rarely used. However, if global variables are used in a model, it might be useful to reinitialize them in this function. Then, if the user restarts a simulation without shutting the model down, the global variables are initialized to the same values as in the first simulation.

Tabulation

The last phase produces the tables. This expression is however misleading since tabulation takes place in Modgen as the model runs. In this phase, the tables produced during that simulation run are simply saved in the output database.

However, user tables are calculated at this stage before being saved in the database. It is at this stage that the "UserTables" functions, created by the model developer to calculate the values in the user tables, are executed.

Share this page
Date modified:

Appendix: Creating a new Modgen database file

Overview

If you want to make a biography using different actors and/or states, you will need to create a new database using Modgen.  The creation of the database file occurs with the execution of a Modgen simulation model and, therefore, requires some knowledge of the Modgen simulation environment.  The name, location, and contents of this special file are controlled as follows:

  • the filename, its location within the directory structure, and the number of simulated lifetimes contained within the database file are defined through a Modgen scenario and its Scenario Settings dialog box.  Modgen manages model run outputs by using the scenario name followed by a bracketed identifier indicating the type of Modgen output and an extension indicating the type of file. For tracking outputs, the convention used is: scenario_name(trk).mdb.

  • the set of actor/states to be displayed by BioBrowser must first be listed in the model variable trackingfacility within the Modgen source code for the specific simulation model. This set including the tracking filter for each actor are required by the model at compile time and can not be dynamically set at run time.

Scenario settings

There are a variety of Modgen scenario settings which determine the nature of each specific simulation.  The scenario settings are discussed in complete detail in the Modgen User’s Guide.  However, there are three main settings which must be understood in order to create an appropriate database file for the Biographical Browser.

  • In the Scenario/Settings/General tab, select "MS Access tracking". This setting tells Modgen that, in addition to the other outputs specified, a tracking database file is requested as output for this model run.
  • For case based models, select the number of cases in the Scenario/Settings/General tab. As a general rule, it is important to specify a small number here since all of the simulated cases which meet the tracking filter will be included in the database file. The size of this file can become very large, very quickly depending on the number of cases and states included. In addition, variable tracking will slow the simulation down considerably.
  • For time based models, select the time-units in the Scenario/Settings/General tab.

The demonstration file accompanying this release, demo(trk).mdb, contains 20 cases (which for this model corresponds to 20 simulated lifetimes of a person actor whose dominant state is True). It was created from the Statistics Canada model, LifePaths.

Modgen model state tracking

The tracking facility provided by the Modgen language controls the type of actors to be included in the database file along with the list of states which are to be analyzed with BioBrowser.

The track command must be included in one of the .mpp files which contain the Modgen model code which define the simulation model.  If the analyst wishes to change the type of actors to be tracked, or change the complement of the states to be output, then the Model must be re-compiled.  This is discussed further in the Modgen Developer’s Guide.  This guide should also be consulted by readers who are unfamiliar with the concepts outlined in the syntax and examples which follow.

Syntax of the Track Command

                track actor_name [filter] { state_or_link , ... , state_or_link } ;

It is important to remember that only one track definition is allowed for each actor in the model.  In addition, the filter specifies if and when an actor’s states or links are to be output to the database file.

Example

In this example, the states which describe the person are only output to the database file when he/she is married or remarried (the dominant characteristic is discussed in the Modgen Developer’s Guide).  Therefore, if the person was married at age 25, divorced at age 40, and re-married at age 50, then the database file would only contain information on this person from the ages of 25 through 40; and 50 to the age at death.  There are nine states which describe the characteristics of the individuals stored in the database file.  The last two items of the track definition are not variables but links to other individuals associated with this person.  In this case, the database will contain information on the nine variables defined in the track command on the person’s spouse and children if they are present.

track Person
[ dominant || mar_status == MARRIED || mar_status == REMARRIED ]
{
      es_state,
      ed_level_ep,
      sex,
      dominant,
      employed,
      mar_status,
      marstat_legal,
      fte_earnings,
      children_at_home,
      lSpouse,
      mlChildren
};

Example

In this example the date of birth and sex states for a child actor are output to the database file once the child is established in a family (the tentative characteristic is discussed in the Modgen Developer’s Guide.

track Child [ !tentative ]
{
      date_of_birth,
      sex,
      mlParents
};

Contents of the database file

The MS Access file produced by a Modgen simulation contains a data table called History and the following dictionaries organized hierarchically:

ActorDic - actor dictionary.
ActorStateDic - tracked state dictionary.
ActorLinkDic – tracked linked actor dictionary.
TypeDic - state type dictionary containing a pointer to a specific dictionary below.

The dictionaries for each state type are as follows:

SimpleTypeDic - for simple state types e.g.integer, double, float.
LogicalDic - for logical states.
ClassificationDic and ClassificationValueDic - for classification states and their values.
RangeDic - for range type states.
TypeDic - for linked actors.

Any dictionary with textual identifiers will contain 1 record for each language implemented in the specific Modgen model, as indicated by LanguageDic.

In addition, a file version table called VersionInfo will indicate the version of the tracking file. The BioBrowser uses this version to maintain backward compatibility if the tracking database design is changed.

The History table contains one record for each tracked state at one point in time. A record is added to this table, each time a tracked state changes for each tracked actor. The History table fields used by BioBrowser are: an object identifier, time, a state identifier, and a value for the given state.  The ShowData window contains a subset of records from this table. Since the object identifier is common across all records in the ShowData window, its value is shown in the window caption.

Share this page
Date modified:

Confidentiality: Statistics Canada is prohibited by law from publishing any statistics which would divulge information obtained from this survey that relates to any identifiable business without the previous written consent of that business. The data reported on this questionnaire will be treated in confidence and used for statistical purpose only. The confidentiality provisions of the Statistics Act are not affected by either the Access to Information Act or any other legislation.

Authority: Collected under the authority of the Statistics Act, Revised Statutes of Canada, 1985, Chapter S19. Completion of this questionnaire is a legal requirement under the Statistics Act.

Purpose: The purpose of the survey is to identify the amount of grain used and the stocks of grain held by processors. These data are valuable for accurate calculations of grain production, total grain stocks and farm cash receipts which are used by farmers, the grain trade and governments.

July 31, 2009

Instructions:

  1. Please report stocks held in your company's elevators in metric tonnes. Include imports.
  2. Please report the quantities of grain used in your plant. Report the quantities purchased from farmers and the quantities purchased from companies separately.
  3. Please keep a copy of this report for your file and return a copy to Statistics Canada within one week.
  4. You may return this questionnaire by mail in the enclosed envelope or by facsimile. Statistics Canada advises you that there could be a risk of disclosure of your information if you choose to return it by fax, e-mail or other electronic means. Upon receipt of your information, Statistics Canada will provide the level of protection required by the Statistics Act. Address the facsimile report to the Grain Marketing Unit, Agriculture Division. The Agriculture Division facsimile number is (613) 951-3868.
  5. If you have any questions, please telephone (613) 951-8714. Thank you.
  • Stocks at July 31
    • Total (Metric tonnes)
  • Industrial use - Amount used in manufacturing from August 1, 2008 to July 31, 2009
    • Purchased from farmers (Metric tonnes)
    • Purchased from companies (Metric tonnes)
  1. Wheat (excluding durum)
  2. Durum wheat
  3. Canola
  4. Corn
  5. Other grains (specify)
  • Contact person
  • E-mail address
  • Telephone no.

Standard Drainage Area Classification

diagram showing the Hierarchy of drainage areas

* Note: The Standard Drainage Area Classification (SDAC) 2003 contains only the 974 sub-sub-drainage areas that are within Canada.

Description for the diagram

The SDAC provides unique numeric codes for three types of drainage areas: major drainage areas, sub-drainage areas and sub-sub-drainage areas. The three geographic areas are hierarchically related; a 4 character code is used to show this relationship. In addition to the SDAC classes, an aggregation variant classification of the sub-sub-drainage areas by drainage regions and ocean drainage areas is included. The relationship between these geographic areas is presented in the diagram showing the Hierarchy of drainage areas.

Additional information on SDAC

The development of drainage areasFootnote 1

The Water Survey of Canada (WSC) developed, in 1922, a Water Resources Index Inventory as a convenient and logical system for recording and filing water resources data such as the location of waterpower sites, waterpower developments, storage reservoirs, stream measurement stations, and meteorological stations. The Water Survey of Canada delineations involved the division, sub-division and sub-sub-division of Canada into suitably sized areas based on drainage characteristics, for administrative purposes. Although the boundaries are based on drainage, the intent was to include all of Canada's land mass and waters within this drainage area hierarchy to facilitate the identification of hydrometeorological sites. Therefore, the WSC drainage areas do not necessarily define individual river basins, but can represent intervening areas along the coast or include islands.

By the 1980s, there were different digital versions of Canadian drainage areas:

  1. Environment Canada produced a digital file of the paper map (1:2M scale) depicting the WSC drainage area boundaries;
  2. Statistics Canada digitized the WSC boundaries separately and integrated them with a base derived from the Census files. This digital version of the WSC maps was used for the tabulation of environmental statistics by drainage area starting in the 1980s;
  3. In 1985, the National Atlas of Canada produced a separate digital version tied to its 1:7.5M base and integrated this to produce paper maps for the 5th Edition of the National Atlas of Canada. This digital file depicts the drainage basins for many of the larger rivers of Canada. The National Atlas basin hierarchy has five levels (ocean drainage area, major river basin, component basin, sub-component basin, and sub-sub-component basin) and the major criterion used to define a National Atlas basin was a mean annual discharge of at least 280 m3/s at the mouth or confluence of the river;
  4. Several agencies (e.g., the Prairie Farm Rehabilitation Administration), provinces, and other authorities have compiled local digital drainage area boundaries.

In addition, large hydroelectric projects (e.g., James Bay) have had a significant impact on the hydrologic base and such changes were not maintained in a uniform manner. As a result, there was not a consistent, integrated, and up-to-date set of drainage area boundaries at the national level and it became time-consuming to work with other projects based on different boundaries.

The development of drainage areas is described in the sections below. The relationship between those drainage areas is also presented in the diagram showing the Hierarchy of drainage areas.


Development work in the 2000s

In 2000, Natural Resources Canada (NRCan), Environment Canada (EC) and Statistics Canada formed a partnership with an objective of producing one single national drainage area coverage for the country at a scale of 1:1,000,000. Each agency involved had specific requirements for the result, and certain design goals to be met. Since there were one set of drainage areas defined by Environment Canada and another by NRCan, it was agreed that a major goal for the project would be to support both definitions.The project resulted in a single national scale framework supporting the two distinct classification schemes.


The National Scale Frameworks Hydrology - Drainage Areas, Canada, Version 5.0

The single national scale framework for drainage areas, largely based on the WSC drainage area boundaries at the sub-sub-drainage area level, contains three drainage area datasets. There are the WSC, the National Atlas and the Fundamental Drainage Area (FDA) datasets.

Even though there is a high degree of similarity between the WSC classification and the National Atlas classification - approximately 95% of the National Atlas boundaries are also WSC boundaries - meaning that, with few exceptions, the National Atlas basins can be derived from the WSC sub-sub-drainage areas, it is necessary to introduce a smaller unit in order to reconcile both classifications. That is the purpose of the FDA dataset, to allow data to be aggregated to either of the two classifications. In general, these fundamental units are the same as the WSC sub-sub-drainage areas, but some sub-sub-drainage areas have been split to accommodate the following situations:

  1. Water Survey and Atlas units do not match;
  2. Identifying areas of internal drainage; and
  3. Inconsistencies in the flow hierarchy.

As specified above, the WSC hierarchy was designed for administrative purposes. Each level of hierarchy has its own code and name with a systematic coverage for Canada.

In contrast, the National Atlas of Canada's hierarchy defines basins whose outflow exceeds a certain criterion. At its highest level, it does divide the complete country into five ocean drainage areas but at lower levels the basins do not cover the entire country. This makes it unsuitable for use as a geographic standard for statistical reporting.


Standard Drainage Area Classification (SDAC) 2003

Version 5.0 of the WSC dataset from the National Scale Frameworks Hydrology - Drainage Areas, Canada is used by Statistics Canada as the basis for the Standard Drainage Area Classification (SDAC) 2003. In the drainage area classification of this Frameworks dataset, Canada has eleven major drainage areas which are divided into 164 sub-drainage areas; the 164 sub-drainage areas are then further divided into 978 sub-sub-drainage areas. All drainage areas, sub-drainage areas and sub-sub-drainage areas are named and have an identifying code. This classification is used by Statistics Canada as the basis for the Standard Drainage Area Classification (SDAC) 2003. The Standard Drainage Area Classification (SDAC) 2003 also contains the major drainage areas, sub-drainage areas and sub-sub-drainage areas but with the following modifications:

  • Some drainage areas in the Frameworks dataset straddle the Canada-United States border; the Standard Drainage Area Classification (SDAC) 2003 includes only the parts within Canada since this is used for reporting Canadian data. The SDAC 2003 excludes 4 of the sub-sub-drainage areas that are entirely outside the boundary of Canada. Therefore, the Standard Drainage Area Classification (SDAC) 2003 contains only the 974 sub-sub-drainage areas that are within Canada.
  • The Great Lakes were not assigned a drainage area in the Frameworks dataset; Canadian islands in the Great Lakes are assigned a drainage area in the Standard Drainage Area Classification (SDAC) 2003 for the purposes of data reporting.

The Frameworks dataset as well as the SDAC classification cover all of Canada including islands and freshwater lakes; however, the classification does not cover marine water.

The concept of drainage area is used in Statistics Canada's environmental and agricultural statistics programs. Generally, the detailed level of the sub-drainage area is used for disseminating statistics. Exceptions include "A Geographical Profile of Manure Production in Canada, 2001", a research paper in which data are presented at the sub-sub-drainage area level for only those areas with livestock farming activities.


Classification variant: Drainage Regions - SDAC 2003

The variant Drainage Regions has three levels: 5 ocean drainage areas, 25 drainage regions and 974 sub-sub-drainage areas. The drainage regions in this classification variant are based on the major river basins depicted in "Currents of Change: Final Report of the Inquiry on Federal Water Policy", Environment Canada, a report prepared in 1985 by Peter H. Pearse, Françoise Bertrand, and James W. MacLaren. The drainage regions were developed to provide a good representation of the hydrology in Canada and can be built-up from the sub-sub-drainage areas of the Standard Drainage Area Classification (SDAC) 2003. The ocean drainage areas that form a classification level in the variant are based on the ocean drainage areas in National Scale Frameworks Hydrology - Drainage Areas, Canada, Version 5. The twenty-five drainage regions are named and numbered as are the five ocean drainage areas, and the sub-sub-drainage areas.

The environmental statistics program in Statistics Canada uses drainage regions in its annual report "Human Activity and the Environment: Annual Statistics" to tabulate population and water resource characteristics. The drainage regions are also used for area sampling in environmental surveys. These regions are considered to provide a good representation of the hydrology in CanadaFootnote 2.


Future development

NRCan has recently completed Version 6.0 of the National Scale Frameworks Hydrology - Drainage Areas, Canada. Statistics Canada has not participated significantly in the revision process, and has decided that there were not enough changes to justify adopting it. Statistics Canada will continue to use version 5.0 when disseminating data by drainage areas, until further notice.

In addition, NRCan is working on the National Hydro Network (NHN). The NHN is a hydrographic layer in GeoBaseFootnote 3, constructed using the best databases available in Canada, which improves the precision of drainage area boundaries and other hydrological components. The NHN works in cooperation with several provincial and territorial partners in the implementation of this project in their respective geographic areas. The NHN is being disseminated in progressive phases called completeness levels. The first national NHN coverage has been completed in 2008. At this point in time, Statistics Canada has begun collaborating with the NHN project.

Footnotes

Footnote 1

Brooks, Rupert, K. David Harvey, Doug W. Kirk, François Soulard, Andrew Murray, Peter Paul. 2002. "Building a Canadian Digital Drainage Area Framework." Proceedings of the 55th Annual Canadian Water Resources Association Conference. Winnipeg.

Return to footnote 1 referrer

Footnote 2

Peter H. Pearse, Françoise Bertrand, and James W. MacLaren. 1985. Currents of Change: Final Report of the Inquiry on Federal Water Policy. Environment Canada.

Return to footnote 2 referrer

Footnote 3

GeoBase is a federal, provincial and territorial government initiative that is overseen by the Canadian Council on Geomatics (CCOG). It is undertaken to ensure the provision of, and access to, a common, up-to-date and maintained base of quality geospatial data for all of Canada.

Return to footnote 3 referrer

Drainage Regions - Variant of SDAC 2003

Introduction

The variant Drainage Regions was developed to enable the production of integrated statistics by hydrographic areas. It provides a set of geographical units that are convenient for data collection and compilation, and useful for spatial analysis of environmental, economic and social statistics. Drainage regions are used for dissemination of data and for sampling in environmental surveys.

The variant Drainage Regions has three levels: 5 ocean drainage areas, 25 drainage regions and 974 sub-sub-drainage areas. The ocean drainage areas are drainage areas named for the five large water bodies into which Canadian waters drain: the Pacific, Arctic and Atlantic Oceans, Hudson Bay, and the Gulf of Mexico. The ocean drainage areas have been assigned a one digit numeric identifier code. All 25 drainage regions are named and have an identifying unique code. The 25 drainage regions provide a good level of disaggregating for data reporting. They are also used for area sampling in environmental surveys. These regions are considered to provide a good representation of the hydrology in CanadaFootnote 1.

This variant is defined in terms of the sub-sub-drainage areas in the Standard Drainage Area Classification (SDAC) 2003. A drainage area is composed of a drainage basin as well as adjacent areas, such as coasts and islands that may not drain into the outletFootnote 2. A drainage basin is an area in which all contributing surface waters share the same drainage outlet. This classification covers drainage areas and therefore applies to all of Canada including coasts and islands that may not drain into an outlet. The variant Drainage Regions covers all the land and interior freshwater lakes of the country. Some drainage areas straddle the Canada-United States border. This classification includes only the parts within Canada since it is used for reporting Canadian data.

The relationship between the classification levels in this variant and the Standard Drainage Area Classification (SDAC) 2003 is presented in the diagram showing the Standard Drainage Area Classification.

Conformity to relevant nationally recognized standards

In 2000, Natural Resources Canada, Environment Canada and Statistics Canada formed a partnership to produce a single national drainage area dataset at a scale of 1:1,000,000. As a result of the partnership The National Scale Frameworks Hydrology - Drainage Areas, Canada, Version 5 was completed in 2003. In the drainage area classification of this Frameworks dataset, Canada has eleven major drainage areas which are divided into 164 sub-drainage areas; the 164 sub-drainage areas are then further divided into 978 sub-sub-drainage areas. All drainage areas, sub-drainage areas and sub-sub-drainage areas are named and have an identifying code. This classification is used by Statistics Canada as the basis for the Standard Drainage Area Classification (SDAC) 2003. The Standard Drainage Area Classification (SDAC) 2003 also contains the major drainage areas, sub-drainage areas and sub-sub-drainage areas but with the following modifications:

  • Some drainage areas in the Frameworks dataset straddle the Canada-United States border; the Standard Drainage Area Classification (SDAC) 2003 includes only the parts within Canada since this is used for reporting Canadian data. The SDAC 2003 excludes 4 of the sub-sub-drainage areas that are entirely outside the boundary of Canada. Therefore, the Standard Drainage Area Classification (SDAC) 2003 contains only the 974 sub-sub-drainage areas that are within Canada.
  • The Great Lakes were not assigned a drainage area in the Frameworks dataset; Canadian islands in the Great Lakes are assigned a drainage area in the Standard Drainage Area Classification (SDAC) 2003 for the purposes of data reporting.

The variant Drainage Regions is defined in terms of the sub-sub-drainage areas in the Standard Drainage Area Classification (SDAC) 2003 and includes these modifications. The ocean drainage areas that form a level in the variant are based on the ocean drainage areas in National Scale Frameworks Hydrology - Drainage Areas, Canada, Version 5. The Frameworks dataset as well as the SDAC classification cover all of Canada including islands and freshwater lakes; however, the classification does not cover marine water. Further information on the development of drainage areas is presented in the Additional information on SDAC.

A digital representation of the national scale frameworks hydrology - drainage areas is available for free on Natural Resources Canada's Geogratis website.

Footnotes

Footnote 1

Peter H. Pearse, Françoise Bertrand, and James W. MacLaren. T. 1985. Currents of Change: Final Report of the Inquiry on Federal Water Policy. Environment Canada.

Return to footnote 1 referrer

Footnote 2

Natural Resources Canada, Canadian Centre for Remote Sensing (CCRS), GeoAccess Division, 2003, National Scale Frameworks HYDROLOGY, Version 5.0, A practical guide to the datasets (accessed October 17, 2008)

Return to footnote 2 referrer

Standard Drainage Area Classification (SDAC) 2003

Introduction

The Standard Drainage Area Classification (SDAC) 2003 was developed to enable the production of integrated statistics by hydrographic areas. It provides a range of geographical units that are convenient for data collection and compilation, and useful for spatial analysis of environmental, economic and social statistics. A drainage area is composed of a drainage basin as well as adjacent areas, such as coasts and islands that may not drain into the outletFootnote 1. A drainage basin is an area in which all contributing surface waters share the same drainage outlet. This classification covers drainage areas and therefore applies to all of Canada including coasts and islands that may not drain into an outlet.

The Standard Drainage Area Classification (SDAC) 2003 covers all the land and interior freshwater lakes of the country. Some drainage areas straddle the Canada-United States border. This classification includes only the parts within Canada since it is used for reporting Canadian data.

There are three levels in the 2003 version of the classification - 11 major drainage areas, 164 sub-drainage areas and 974 sub-sub-drainage areas. All drainage areas, sub-drainage areas and sub-sub-drainage areas are named and have an identifying unique code. The code used is a four-character alphanumeric code. Two leading numeric digits represent the major drainage areas, the third alphabetic character represents the sub-drainage areas and a fourth alphabetic character represents the sub-sub-drainage areas.

Structure of the Standard Drainage Area Classification (SDAC) 2003
Level Characters in Code (cumulative)
major drainage area 2
sub-drainage area 3
sub-sub-drainage area 4

Among the levels in this classification, the detailed sub-drainage area level is generally used for disseminating statistics.


Description of major drainage areas

Canada is divided into eleven major drainage areas:

The table displays the name (first column) and are information (second (square kilometres) and third (%) columns).

Major drainage areas
Major drainage area name Area
square kilometres %
Maritime Provinces 163,990 1.6
St. Lawrence 1,067,879 10.7
Northern Quebec and Labrador 1,158,292 11.6
Southwestern Hudson Bay 735,320 7.4
Nelson River 987,015 9.9
Western and Northern Hudson Bay 1,253,213 12.6
Great Slave Lake 974,853 9.8
Pacific 666,349 6.7
Yukon River 337,036 3.4
Arctic 2,605,138 26.1
Mississippi River 27,097 0.3
Canada 9,976,182 100.0

The Maritime Provinces drainage area covers New Brunswick, Prince Edward Island, Nova Scotia and part of the Gaspé Peninsula in eastern Quebec. This area drains into the Gulf of St. Lawrence and the Atlantic Ocean. Halifax, Fredericton and Charlottetown are located in this drainage area.

The St. Lawrence drainage area includes all of southern Quebec, southern Ontario and Newfoundland. Cities in this drainage area include Montréal, Toronto, Ottawa, Thunder Bay, St. John's and Corner Brook.

The Northern Quebec and Labrador drainage area covers all the area just north of the St. Lawrence drainage area. Most of the water in this drainage area drains into Hudson, James and Ungava bays. The Labrador portion of the drainage area drains directly into the Atlantic Ocean. Communities in this drainage area include Chibougamau and Kuujjuaq in Quebec and Happy Valley-Goose Bay in Labrador.

The Southwestern Hudson Bay drainage area covers a large portion of northern Ontario, a small part of western Quebec and northeastern Manitoba. Communities in this drainage area include Val-d'Or in Quebec and Kapuskasing and Timmins in Ontario.

The Nelson River drainage area covers most of the southern Prairie provinces, from the Rockies to northwestern Ontario. Major cities within this drainage area are Winnipeg, Regina, Saskatoon, Calgary and Edmonton. Water from the Nelson River drainage area ultimately drains into Hudson Bay.

The Western and Northern Hudson Bay drainage area includes parts of eastern Alberta, all of the middle portions of Saskatchewan, northwestern Manitoba, the northeastern portion of the Northwest Territories, southeastern Nunavut, the Hudson Bay islands and part of Baffin Island. The following communities are found in this drainage area: Bonnyville, Alberta; La Ronge, Saskatchewan; and Rankin Inlet, Nunavut.

The Great Slave Lake drainage area is composed of northern Alberta, northern Saskatchewan, southern Northwest Territories and a small portion of British Columbia. Cities within this drainage area include Grande Prairie and High Level in Alberta, Yellowknife and Hay River in the Northwest Territories, and Fort St. John in British Columbia.

The Pacific drainage area includes all the area that is west of the continental divide, representing about 70% of the province of British Columbia. The southwestern part of the Yukon is also part of this drainage area. Some of the communities in the eastern portion of the drainage area are Kimberley, Golden and Invermere, all in British Columbia. Cities in the western portion include Vancouver, Victoria, Abbotsford and Whistler. Terrace and Prince Rupert in British Columbia are among the northern communities in this drainage area.

The Yukon River drainage area contains most of the western portion of the Yukon territory. The most southerly portion of this drainage area is in British Columbia. Communities and cities in this drainage area are Whitehorse, Dawson and Old Crow in the Yukon. The Yukon River flows through central Alaska, and ultimately into the Bering Sea.

The Arctic drainage area covers most of the arctic islands and large portions of the Northwest Territories, Nunavut, Yukon and, to a lesser extent, British Columbia and Alberta. Communities within this drainage area include Inuvik in the Northwest Territories, Fort Nelson in British Columbia, and Pangnirtung, Iqaluit and Resolute in Nunavut.

Finally, the Mississippi River drainage area covers a small area in the southernmost parts of Alberta and Saskatchewan.


Conformity to relevant nationally recognized standards

In 2000, Natural Resources Canada, Environment Canada and Statistics Canada formed a partnership to produce a single national drainage area dataset at a scale of 1:1,000,000. As a result of the partnership The National Scale Frameworks Hydrology - Drainage Areas, Canada, Version 5 was completed in 2003. In the drainage area classification of this Frameworks dataset, Canada has eleven major drainage areas which are divided into 164 sub-drainage areas; the 164 sub-drainage areas are then further divided into 978 sub-sub-drainage areas. All drainage areas, sub-drainage areas and sub-sub-drainage areas are named and have an identifying code. This classification is used by Statistics Canada as the basis for the Standard Drainage Area Classification (SDAC) 2003. The Standard Drainage Area Classification (SDAC) 2003 also contains the major drainage areas, sub-drainage areas and sub-sub-drainage areas but with the following modifications:

  • Some drainage areas in the Frameworks dataset straddle the Canada-United States border; the Standard Drainage Area Classification (SDAC) 2003 includes only the parts within Canada since this is used for reporting Canadian data. The SDAC 2003 excludes 4 of the sub-sub-drainage areas that are entirely outside the boundary of Canada. Therefore, the Standard Drainage Area Classification (SDAC) 2003 contains only the 974 sub-sub-drainage areas that are within Canada.
  • The Great Lakes were not assigned a drainage area in the Frameworks dataset; Canadian islands in the Great Lakes are assigned a drainage area in the Standard Drainage Area Classification (SDAC) 2003 for the purposes of data reporting.

The Frameworks dataset as well as the SDAC classification cover all of Canada including islands and freshwater lakes; however, the classification does not cover marine water. Further information on the development of drainage areas is presented in the Additional information on SDAC.

A digital representation of the national scale frameworks hydrology - drainage areas is available for free on Natural Resources Canada's Geogratis website.

Footnotes

Footnote 1

Natural Resources Canada, Canadian Centre for Remote Sensing (CCRS), GeoAccess Division, 2003, National Scale Frameworks HYDROLOGY, Version 5.0, A practical guide to the datasets (accessed October 17, 2008)

Return to footnote 1 referrer

Standard Drainage Area Classification (SDAC) 2003

Status

This standard was approved as a departmental standard on February 16, 2009.

The Standard Drainage Area Classification (SDAC) is Statistics Canada's official classification of drainage areas in Canada. The SDAC provides unique numeric codes for the levels in the hierarchy of drainage areas: major drainage areas, sub-drainage areas and sub-sub-drainage areas. The three geographic areas are hierarchically related; a 4 character code is used to show this relationship. In addition to the drainage area classes, a classification variant of the sub-sub-drainage areas by drainage regions and ocean drainage areas is included. The relationship between these geographic areas is illustrated in the diagram showing the Standard Drainage Area Classification and the hierarchical structure of the classification.

Major drainage areas are presented in the major drainage areas and sub-drainage areas map of Canada.

The Standard Drainage Area Classification (SDAC) 2003 is based on Version 5 of the National Scale Frameworks Hydrology - Drainage Areas, Canada. The National Scale Frameworks Hydrology was developed by a partnership consisting of Natural Resources Canada, Environment Canada and Statistics Canada.

Variant of SDAC 2003

The classification variant of SDAC is a set of customized groupings that use SDAC sub-sub-drainage areas as building blocks. In Statistics Canada, variants are created and adopted in cases where the version of the classification does not fully meet specific user needs for disseminating data or for sampling in surveys. A classification variant is based on a classification version such as SDAC 2003. In a variant, the categories of the classification version are split, aggregated or regrouped to provide additions or alternatives (e.g. context-specific additions) to the standard structure of the base version.

Ocean drainage areas and drainage regions are presented in the ocean drainage areas and drainage regions map of Canada.