Virtual Intelligence and Positioning Coordinates (VIPC Group) Sharing knowledge about Computer Science, Remote Sensing, GIS, Geography and Computer Programming. We teach many computer science subjects like, python, Java, C, C++, HTML5, CSS, JE, Js, Django, Database management, data structures, artificial intelligence, machine learning, Hacking, software development, Testing, Hardware, Internet, WiFi, Wireless.
Friday, 30 August 2019
Sunday, 25 August 2019
Saturday, 24 August 2019
Wednesday, 21 August 2019
Types of Map | Firoz Ahmed GIS | VIPC Group
1. Political Map
- A political map shows the state and national boundaries of a place. A political map does not have any topographic features.
- It also shows the location of cities, with respect to each other.
2. Physical Map
- A physical map is one which shows the physical features of a place or country, like rivers, mountains, forests and lakes.
- The physical features are usually shown in different colors.
- Rivers and lakes are shown in blue, places of low elevation are shown in dark green and as the elevation increases, the color becomes light green and eventually orange.
- Mountains are shown in brown.
3. Topographic Map
- Topographic maps are similar to physical maps, which show the physical features of an area. Although in topographic maps, differences in elevation and changes in landscape are shown with the help of contour lines and not colors.
4. Climatic Map
- A climatic map shows the information about the climate of different areas.
For example it shows areas which receive more rainfall or snow, or which have dry weather. - It uses colors to depict areas with different climate.
5. Economic or Resource Map
- Economic or resource maps show the different resources present in the area or economic activity prevalent.
- They show the kind of crops that are grown and the minerals found in places.
- Symbols and letters are used to depict the activity or resource present in the area.
6. Road Map
- Road map is the most widely used map which shows different roads, highways or railways present in the area.
- It is a very detailed map and is generally used for direction purposes.
- Road maps are usually made individually, city-wise.
- There are road maps present for an entire country too, but they cannot be made very detailed.
Thursday, 15 August 2019
Large Map Layout in QGIS Print wall Maps in QGIS
Large scale mapping in Qgis for Arcgis will be uploaded soon
Wednesday, 14 August 2019
Wall map printing or Large Scale Mapping Layout in ArcGIS
Today we will show you how to do scale based mapping or how to make wall maps in ArcMap layout
1.First open the arcmap
![]() |
| Picture 1. Add Data |
![]() |
Picture 2. Scale 1:19,457,501
|
![]() |
![]() |
Picture 4. Changing the scale to 1:10,000,000
|
![]() |
Picture 4.1: Map does not fit with current layout (Scale 1:10,000,000)
|
![]() |
Picture 4.2: Map does not fit with layout (scale 1:1,000,000)
|
So question raises that how can
we fit 1:10,000,000 or another e.g. 1:1,000,000 scale map with our layout, and
we have reduced the scale.
We have seen that if we zoom
or reduce scale size so map does not fit with our layout and we are not able to
get full extent map at our desired scale.
This problem is very easy to
solve we need not to worry about it just
-Change the layout or change
the size of page.
·
Open the layout toolbar (See picture 5)
![]() |
Picture 5. Open Layout toolbar
|
![]() |
Picture 7. Change Layout
|
![]() |
| Picture 7. Choosing page size |
So as you can see in picture
8 that 1:10,000,000 scale map
is now fit with our map layout.
![]() |
Picture 8. Full extent map at our desired scale.
|
You can choose scale
according to your need, but remember if you will reduce the scale (zoom the map
) so you will have to also increase the size of page also, otherwise map will
not fit with your layout and you will not be able to get your entire map.
Note- I (Firoz Ahmed) written this tutorial/post for VIPC group.
Soon practical video will be uploaded on youtube. If you have any queries,
questions or you wants to give any feedback mail to VIPC Group at vipcgroup@gmail.com .
#gis #ArcMap #wallmaps #Layout
#Largescalemaps #ArcGIS #ArcGISLayout #Largescalemaps
#esri
Tuesday, 13 August 2019
Introduction to Stack
Stack is an abstract data type with a predefined capacity. It is a linear data structure where we
can store same type of Data in a particular order on which some operations are
be performed.
Features of Stack
- Stack is an ordered list of similar
data type.
- Stack is a LIFO(Last in First out)
structure or we can say FILO(First in Last out).
- push() function
is used to insert new elements into the Stack and pop() function is used to
remove an element from the stack. Both insertion and removal are allowed
at only one end of Stack called Top(when stack is empty top is -1).
- Stack is said to be in Overflow state
when it is completely full and is said to be in Underflow state
if it is completely empty.
When do we use stack?
Let’s take an Example of real life application
which we often use in our daily life.
In MS-office we often use “BackSpace” key
which deletes recent (push() deleted word into stack) word and when we
press “Ctrl+Z” it returns (pop() top of stack ) our
deleted words.
Another application of a stack is to reverse a
word. You push a given word to stack - letter by letter - and then pop letters
from the stack.
There are other uses also like:
- Parsing
- Expression Conversion(Infix to Postfix, Postfix to
Prefix etc)
Implementation of Stack
Stack can be
easily implemented using an Array or a Linked List. Arrays are quick, but are
limited in size and Linked List requires overhead to allocate, link, unlink,
and deallocate, but is not limited in size. Here we will implement Stack using
array.
Algorithm for PUSH operation
- Check
if the stack is full or
not.
- If
the stack is full, then print error of overflow and exit the program.
- If
the stack is not full, then increment the top and add the element.
code for push operation
Algorithm for POP operation
·
Checks if the stack is empty.
·
If the stack is empty, produces an error and exit.
·
If the stack is not empty, accesses the data element at
which top is pointing.
·
Decreases the value of top by 1.
·
Returns success.
TOP of Stack
It is the recent element of Stack. in starting top is -1 and keeps on increasing when push() function is called until reaches the maximum limit and when pop() function is called it gets decreased until top is not equal to -1.
Algorithm for isEmpty()
function
It returns
True if Stack is empty else return False Or we can say returns true if top of
stack is -1.
code for isEmpty() function
code for isEmpty() function
Algorithm for isFull()
function
Returns
true if top of Stack is equal to the size of defined of Stack (Array).
code for isFull() function
code for isFull() function
to check running of this program click here
Monday, 12 August 2019
Introduction to Map
What is a map ?
A map is the representation of the surface of earth as
a whole or a part of the earth, with convectional signs, drawn to a scale and
projection so that each and every point on it correspond to the actual position
of the earth.
Elements of a Map
There are the elements of a map (figure_)
i)
Scale
ii)
Title
iii)
Legend
iv)
Projection
v)
North Arrow
Scale: Scale is
representation of the two points on the earth and same as on map. We all knows
that we cant represent earth’s features with their actual size that’s why
reduction is necessary to display features of earth.
Scale is ratio of distance on a map over the
corresponding distance on the ground. Map scale is also relation between the
dimensions of a map and the dimensions of the earth.
Title: Title of map
indicates the purpose of map. Without having title on map we cant know that for
what kind of map is this or what is the purpose of map and what is shown over
the map.
Legend: Through
legend of map we came to know that what features are shown over the map and
which symbol is used for which purpose.
figure i :- Map Elements
Projection: Map
projection is a systematic drawing of latitude and longitude on a plane surface
for the for the whole earth or a part of it on a scale so that any point on the
earth surface may correspond to that on the drawing. In other words, map
projection is system to project 3 dimensional earth surface to 2 dimensional
plane paper drawn on certain scale, and applied some mathematical formulas so
that distortions can be removed from the projected area.
North Arrow: North arrow depicts North direction of map. It is
always in UP direction. Knowing the North of arrow helps to understand other
geographical direction.
Sunday, 11 August 2019
Introduction to GIS
| ||||||||||||
Subscribe to:
Comments (Atom)









