Click here to Skip to main content
15,867,308 members
Articles / Desktop Programming / Windows Forms

Build a Desktop GIS Application Using MapWinGIS and C# - Part 2

Rate me:
Please Sign up or sign in to vote.
4.98/5 (44 votes)
16 Jul 2009CPOL8 min read 212.6K   13.5K   151   72
Time to advance your symbology skills and label your map

(Click to go to part one of this tutorial)

Introduction 

The objective of this series is to present a simple and easy to use approach to develop a desktop GIS application. My tool pack includes only MapWinGIS.ocx from MapWindow GIS Project which is one of the most successful open source GIS projects for Windows platform. MapWinGIS.ocx provides the full set of tools to maintain and display GIS data and it is free of charge under MPL license.

In the previous lesson, we discussed the basics required to display GIS data on the MapWinGIS.ocx Map Control. We also discussed how to customize the symbology of the displayed GIS data. In this lesson, I am going to teach you how to advance your symbology skills and use labeling functionality on your map.

As mentioned in the previous lesson, I am using .NET Framework 3.5 and Visual Studio 2008 professional edition in the code attached here, but you can use Visual Studio express edition to get the same results. You have to download MapWinGIS.ocx and install it on your machine too. You can download it from the official site of MapWindow Project. 

Attributes and Symbology 

One of the most amazing features of GIS is combining the description of the geographic entity with its geometry. Indeed, every geographic entity may describe using different attributes. For example, the attributes of land parcel may include area, perimeter, owner name, land use, etc. which these attributes may use to create different maps using different symbology approaches. In the previous lesson, we had used a simple symbology approach where all features in the GIS layer presented use a single symbol. In this lesson, we will know how we can create a quantitative map using attribute data.

According to ESRI Shapefile specification that was published by ESRI in July 1998, “Shapefile” technically means three files have the same name and different extensions:

  1. *.shp is the main file that includes the geometric presentation of the geographic entities
  2. *.shx is the index file, and 
  3. *.dbf is the attribute file

ESRI Shapefile uses Dbase IV DBF file format to store the attributes of the GIS layer. The data attached to this lesson is a single ESRI Shapefile that presents Arab League Countries. The attributes of this shapefile are organized in two fields CNTRY_NAME and POP_CNTRY. CNTRY_NAME is a text field which includes the name of the country. POP_CNTRY is an unsigned long integer field that includes the population of the country. 

Create Your GUI 

The GUI of our application is composed of a single Windows Form. This form has a tool strip named toolStrip1 which has five buttons, toolCursor, toolZoomExtent, toolZoomIn, toolZoomOut and toolPan. The code of these buttons is discussed in the previous lesson. The form has a split container named splitContainer1 which is split vertically into two panels splitContainer1.panel1 to left and splitContainer1.panel2 to right. The left panel includes three buttons, btnReset, btnQuant and btnLablel. The right panel includes the MapWinGIS.ocx Map Control component named axMap1. You have also added a reference for MapWinGIS.ocx to your project. The previous lesson includes details for reference adding procedure.

The following figure shows the GUI of the application attached to this lesson:

01.JPG

Set Your Public Variables

I am using two public variables in this application. The first is an integer that denotes the layer handler and the second is MapWinGIS.Shapefile. These variables will be declared directly after the first clause of the class declaration as shown in the following:

C#
//Create a layer handler
public int intHandler;
//Create a new instance for MapWinGIS.Shapefile
public MapWinGIS.Shapefile myShapefile = new MapWinGIS.Shapefile();

These items should be public because many methods will use these items. 

Create a SetBasicSymbology Method

This objective of this method is to set the symbology of the layer to a specific predefined symbology every time it is called. It does not return any value. The following code shows this method:

C#
public void SetBasicSymbology()
{
    //Set Filling color of the polygon shapefile
    axMap1.set_ShapeLayerFillColor(intHandler, 
	(UInt32)(System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Honeydew)));
    //Set the outline color of the polygon features
    axMap1 .set_ShapeLayerLineColor(intHandler,
	(UInt32)(System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Goldenrod)));
}

Load Your Data

Now, we will load our data to our form, the following code should add to Form1_Load event:

C#
private void Form1_Load(object sender, EventArgs e)
{           
   //Define the data source of Shapefile instance
   myShapefile.Open(@"D:\GISSampleData2\arabcntry.shp", null);
   //Display the layer on the map control
   intHandler = axMap1.AddLayer(myShapefile, true);
            
   SetBasicSymbology();
}  

This code loads the shapefile (D:\GISSampleData2\arabcntry.shp) into MapWinGIS.Shapefile instance (myShapefile), then adds it to the map control (axMap1) and stores its handler in intHandler. Finally, we will call SetBasicSymbology() to set the layer symbology to the basic symbology.

btnReset Code

The objective of btnReset is to reset the symbology of the layer to the basic symbology every time a user clicks it. The code of btnReset is the following: 

C#
private void btnReset_Click(object sender, EventArgs e)
{
   SetBasicSymbology();
} 

btnQuant Code

The code of btnQUnat is the main target of this lesson. This code customizes the layer symbology to show the population of each country using a spectrum of two colors. The first color is aqua color which illustrates the less populated country; another color is Dark Blue which illustrates the most populated country. Any country that has population among the less and most population will be colored with a color among aqua and dark blue.
To do that, you have to know which field in the shapefile table includes the population and calculate the minimum and maximum population.
The code will be added to the btnQuant_Click event to let the user click this button and make his/her quantitative map that shows the population in the Arab League Countries.
The code is the following:

C#
private void btnQuant_Click(object sender, EventArgs e)
        {
            //Create a new instance for MapWinGIS.Table
            MapWinGIS.Table myTable = new MapWinGIS.Table();
            //Define the data source of Table instance
            myTable.Open(@"D:\GISSampleData2\arabcntry.dbf", null);
            //Define the index of the field will used in symbology
            int myFieldIndex = 1;
            //Get the number of rows in the table
            int numberOfRows = myTable.NumRows;
            //Create an array to store the cell values of the field
            double[] myCellsValues = new double[numberOfRows];
            //Populate the array with cell values restored from the Table instance
            for (int i = 0; i < numberOfRows - 1; i++)
            {
                myCellsValues[i] =
                    System.Convert.ToDouble(myTable.get_CellValue(1, i));
            }
            //Get the minimum and maximum values
            double minValue = myCellsValues.Min();
            double maxValue = myCellsValues.Max();

            //Create a new instance for MapWinGIS.ShapefileColorScheme
            MapWinGIS.ShapefileColorScheme myScheme = 
				new MapWinGIS.ShapefileColorScheme();
            //Set the layer handler to the MapWinGIS.ShapefileColorScheme instance
            myScheme.LayerHandle = intHandler;
            //Set the field index to use in symbology
            myScheme.FieldIndex = myFieldIndex;
            //Create a new instance for MapWinGIS.ShapefileColorBreak 
            MapWinGIS.ShapefileColorBreak myBreak = 
			new MapWinGIS.ShapefileColorBreak();
            //Set the minimum value in the field as a start value
            myBreak.StartValue = minValue;
            //Set the start color of the scheme
            myBreak.StartColor =
                (UInt32)(System.Drawing.ColorTranslator.ToOle
		(System.Drawing.Color.Aqua));
            //Set the maximum value in the field as an end value
            myBreak.EndValue = maxValue;
            //Set the end color of the scheme
            myBreak.EndColor =
                (UInt32)(System.Drawing.ColorTranslator.ToOle
				(System.Drawing.Color.DarkBlue));
            //Add the break to the color scheme
            myScheme.Add(myBreak);
            //Upgrade display using the scheme
            axMap1.ApplyLegendColors(myScheme);
        } 

In the first line, we declare and initiate a new instance of MapWinGIS.Table class and name it myTable. This class is designed to present the table of ESRI Shapefile. The instance of this class includes a collection of instance for Field class. Each Field instance is used to present a field in the table of shapefile. The instances have zero-based index. Each Field instance has a collection of instances for CellValue class. CellValue instance presents the values of the cells organized in a Field instance.

In the second line, we load our dbf table in MapWinGIS.Table instance (myTable) using Open method.

In the third line, we declare an integer (myFieldIndex) and assign one to him. This integer is used to identify the field we will use in symbology as the second field (POP_ CNTRY).

The fourth line is used to get the number of rows in the table using NumRows method of MapWinGIS.Table instance (myTable).

In the fifth line, we declare and create an array (myCellsValues) composed of a number of double elements equal to the number of rows in the table.

Now, we will use For loop to populate our new array (myCellsValues) by the values of CellValue instance in myTable. Then we will get the minimum and maximum values in the array using Min and Max methods for array.

The minimum and maximum values are assigned to two variables minValue and maxValue of double type. 

Now, we will declare and create a new instance for MapWinGIS.ShapefileColorScheme class and name it myScheme. This class is designed to describe the complex color scheme for the layer based on the values stored in the shapefile table field. The scheme is joined to a specific layer by the handler of this layer, and to the field by the field index. The instance of this class has a collection of MapWinGIS.ShapefileColorBreak instances.

MapWinGIS.ShapefileColorBreak class is used to describe a color theme used to color the geographic entities in the layer based on a region of values. This region of values is limited by two properties for each MapWinGIS.ShapefileColorBreak instance: StartValue and EndValue. The color of theme is identified by two another properties for the instance: StartColor and EndColor.

In this application, I had used one MapWinGIS.ShapefileColorBreak instance named myBreak, and I had assigned the minValue and maxValue to StartValue and EndValue properties respectively. Also, I had assigned aqua and dark blue colors to StartColor and EndColor properties respectively.

After assigning the properties of the MapWinGIS.ShapefileColorBreak instance (myBreak), I had used Add method to add it to MapWinGIS.ShapefileColorBreak instances collection of myScheme.

The final step is to use ApplyLegendColors method of Map Control (axMap1) to use this scheme to symbolize the layer.

Now, strike F5 to run the application and click btnQuant button to get your new map. 

02.JPG

Add Labels to Your Map

Labels are very important to make your map meaningful. Most of the GIS users and developers use values stored in the table to label their features, and that is what I am going to do. Add the following code to btnLabel_Click event:

C#
private void btnLabel_Click(object sender, EventArgs e)
        {
            //Define a string to store the label of the feature
            string myLabel;
            //define two double variables to use as a coordinates for label position
            double x, y;
            //Use a loop to read the cell value that is used as a label and 
	   //set the label on the map
            for (int i = 0; i < myShapefile.NumShapes -1; i++) 
            {
                //assign the value of the cells of the field number zero to the label
                myLabel = System.Convert.ToString(
                    myShapefile.get_CellValue(0, i)); 
                //Calculate the x position for the label
                x = myShapefile.get_Shape(i).Extents.xMin +
                    (myShapefile.get_Shape(i).Extents.xMax - 
			myShapefile.get_Shape(i).Extents.xMin) / 2;
                //Calculate the y position for the label
                y = myShapefile.get_Shape(i).Extents.yMin +
                    (myShapefile.get_Shape(i).Extents.yMax - 
			myShapefile.get_Shape(i).Extents.yMin) / 2;
                //add the label on the map
                axMap1.AddLabel(
                    intHandler, //Layer handler
                    myLabel, //Label string
                    (UInt32)(System.Drawing.ColorTranslator.ToOle
                        (System.Drawing.Color.Black)), //Color of the label
                        x, y, //Position of the label
                        MapWinGIS.tkHJustification.hjCenter //Justification of the label
                        );
            }
        } 

To add labels for your map, you have to know which field includes the values of labels and where you will set the labels on the map.

In the previous code, I was creating a string variable named myLabel and two double variables x and y to use to locate the label on the map. Then, I was using the for loop to read the cell values from the first field for all shapes in the shapefile, and each loop I was assigning this value to (myLabel) string variable and getting the position of the label as the center of the shape.

Finally, I was using AddLabel method of Map Control (axMap1) to add this label (myLabel) using Black color as a font color in a position identified by x and y.

Now, strike F5 to run the application and click btnLabel to show the label on your map.

03.JPG

Now, we have many useful ideas to use MapWinGIS.ocx to build a GIS application. In the next lesson, together we are going to explore how useful arial photographs and satellite images can be for our applications.

History 

  • Version 1: Thursday, July 16, 2009

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Dammam University, Kingdom of Saudi Arabia
Egypt Egypt
Wisam Mohammed was graduated with B.Sc in Math then got M.Sc and Ph.D in Geographic Information Systems. He is working now as Assistant Professor for GIScience in Dammam University, Kingdom of Saudi Arabia where he is living. He had worked for different international and governmental firms.
He is also a Technical Writer. He published many books in Arabic and many scientific papers in the scientific journals. He is the official editor for the Arabic Manual of MapWindow GIS. His book "Basics of Geographic information Systems" was best seller technical book for 2008 in many Arabian Countries. He was honored by many scientific and academic institutions in Arabic countries as a pioneer of the Open Source paradigm in the Arabian World.

Comments and Discussions

 
Questioni have question Pin
Member 1361822011-Jan-18 3:32
Member 1361822011-Jan-18 3:32 
Questioni keep on having this error on the min and max value; Sequence contains no elements Pin
frogRAM-er26-May-16 17:50
frogRAM-er26-May-16 17:50 
BugProblem with "ShapefileColorScheme" and "ShapefileColorBreak" Pin
Member 1003757611-Mar-15 22:17
Member 1003757611-Mar-15 22:17 
GeneralRe: Problem with "ShapefileColorScheme" and "ShapefileColorBreak" Pin
artemix2221-Mar-15 0:28
artemix2221-Mar-15 0:28 
QuestionI can't got the result like the figure made by ApplyLegendColors method Pin
Yingchun Ge5-Jun-14 16:57
Yingchun Ge5-Jun-14 16:57 
AnswerRe: I can't got the result like the figure made by ApplyLegendColors method Pin
starWolf9-Jul-14 9:44
starWolf9-Jul-14 9:44 
QuestionCan't zoom to a specific extent in map view window Pin
Member 211482324-Sep-13 20:56
Member 211482324-Sep-13 20:56 
GeneralMy vote of 4 Pin
D-Kishore28-Aug-12 21:56
D-Kishore28-Aug-12 21:56 
QuestionHow to show Arabic charictars in labels? Pin
yazen91223-Jun-12 6:58
yazen91223-Jun-12 6:58 
GeneralMy vote of 5 Pin
ahmed_am554-May-12 17:04
ahmed_am554-May-12 17:04 
QuestionNeed some help Pin
GISShamanth13-Apr-12 21:24
GISShamanth13-Apr-12 21:24 
QuestionUnworking btnQuant button Pin
Pierre Thouvenin9-Jan-12 7:33
Pierre Thouvenin9-Jan-12 7:33 
AnswerRe: Unworking btnQuant button Pin
starWolf14-Feb-12 7:47
starWolf14-Feb-12 7:47 
GeneralRe: Unworking btnQuant button Pin
Pierre Thouvenin29-Feb-12 3:45
Pierre Thouvenin29-Feb-12 3:45 
GeneralRe: Unworking btnQuant button Pin
dprc24-Apr-12 23:16
dprc24-Apr-12 23:16 
GeneralRe: Unworking btnQuant button Pin
starWolf30-Apr-12 9:24
starWolf30-Apr-12 9:24 
GeneralRe: Unworking btnQuant button Pin
Ravi_Raturi12-Jun-12 1:38
Ravi_Raturi12-Jun-12 1:38 
GeneralRe: Unworking btnQuant button Pin
starWolf12-Jun-12 2:14
starWolf12-Jun-12 2:14 
The Wisam code didn't work because newer versions of MapWinGIS don't work the same. The preferred method of coloring individual shapes in newer versions is to use color schemes. He may have changed it by now, I don't know.

As for the database, it is already loaded with the shapes. When you specify the shapes file MapWinGIS will look for a file of the same name with the extension dbf and load that underneath the covers, as it were. You don't have to explicitly load it. when you do the

C#
shapeFile.Open(sShapeFullFileName + ".shp", null);
it will also find the dbf file if it has the same name and path. So the myFieldIndex variable finds the column in the dbf to create the color scheme on.

The line
C#
shapeFile.Categories.Generate(myFieldIndex, MapWinGIS.tkClassificationType.ctNaturalBreaks, 25);

tells the code to take the minimum and maximum values from column "myFieldIndex" and divide that range into 25 different cells, or buckets.

The line
C#
myScheme.SetColors2(MapWinGIS.tkMapColor.Aqua, MapWinGIS.tkMapColor.DarkBlue);
tells the code to color each bucket in a gradient from Aqua to DarkBlue. The rest of the code is applying the gradient scheme to the shapes and redrawing.
GeneralRe: Unworking btnQuant button Pin
Ravi_Raturi12-Jun-12 4:15
Ravi_Raturi12-Jun-12 4:15 
GeneralRe: Unworking btnQuant button Pin
starWolf12-Jun-12 4:34
starWolf12-Jun-12 4:34 
GeneralRe: Unworking btnQuant button Pin
Ravi_Raturi12-Jun-12 4:42
Ravi_Raturi12-Jun-12 4:42 
GeneralRe: Unworking btnQuant button Pin
starWolf12-Jun-12 4:47
starWolf12-Jun-12 4:47 
GeneralRe: Unworking btnQuant button Pin
Ravi_Raturi13-Jun-12 23:43
Ravi_Raturi13-Jun-12 23:43 
GeneralMy vote of 5 Pin
Kanasz Robert1-Dec-11 2:45
professionalKanasz Robert1-Dec-11 2:45 
Questionhelp me Pin
yenchitan8929-Sep-11 22:26
yenchitan8929-Sep-11 22:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.