SlideShare a Scribd company logo
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Geographic
Information System
QGIS Introduction(3)
microbase.LLC
http://microgeodata.com/
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Agenda
1st
2nd
3rd
What’s QGIS?
Basic usage
Basic data management
Spatial Analysis
Spatial data andling
Geocording
Create Vector data
Map Projection
Create KML data
Utilize OSM data
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Contents Today
3rd Session
Geocoding
Map Projection
 - Coordinate Reference System(CRS) - Projection transformation
Create Point Data
 - Delimited layer - OpenLayers Plugin
- ‘On the fly’ CRS transformation
OSM Data
- Create OSM data - OpenStreetMap plugin
Google Earth
- About KML - Export a layer as KML format
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Data
lecture3_en
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Geocoding
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Address Geocoding
It is called Address geocoding to find associated geographic coordinates
(often expressed as latitude and longitude) from other geographic data,
such as street addresses, or ZIP codes (postal codes).
Name Address
Hongo campus 7-3-1 Hongo Bunkyo-ku Tokyo-to
Komaba campus 4--6-1 Komaba Meguro-ku Tokyo-to
Kashiwa campus 5-1-5 Kashiwanoha Kashiwa-shi Chiba-ken
GIS projects the
coordinates on map.
X
Y
Name Address Lon Lat
Hongo campus Tōkyō-to, Bunkyō-ku,
Hongō, 7-3-1
139.762723 35.712545
Komaba campus Tōkyō-to, Meguro-ku,
Komaba, 4--6-1
139.677172 35.662492
Kashiwa campus Chiba-ken, Kashiwa-shi,
Kashiwanoha, 5-1-5
139.934642 35.900801
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Type of Address Geocoding
Street address Block address
The address commonly seen in Europe
and the United States.
ex) Unter den Linden 6, 10099 Berlin
The address commonly seen in Asian area.
ex)Tōkyō-to, Bunkyō-ku, Hongō, 7-3-1
street
street number
postal code city
pref city block block number
Copyright (C) 2013 microbase.LLC All Rights Reserved.
How to conduct geocoding
Google Maps provides geocoding service. Geographic coordinate can
be obtained from Google Maps by clicking “What’s here? on pop-up
menu after right-clicking anywhere on map.
1) Click “What’s here? on pop-up
menu after right-clicking the place
you want to get on map.
2)The coordinates are displayed on web
form. (latitude[Y], longitude[X])
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Name Address Lon Lat
Hongo campus Tōkyō-to, Bunkyō-ku, Hongō, 7-3-1
Komaba campus Tōkyō-to, Meguro-ku, Komaba, 4--6-1
Kashiwa campus Chiba-ken, Kashiwa-shi, Kashiwanoha, 5-1-5
Exercise 1
Add “longitude” and “latitude” layer to “sample.csv” in
“lecture3_en” folder using Google Maps.The csv file can be
edited by spreadsheet or text editor.
Longitude(X)
ex) 139.810896
Latitude(Y)
ex) 35.710211
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Google Maps API are useful
when you want to process geocoding on a large scale.
https://developers.google.com/maps/documentation/geocoding/?hl=en
Another geocoding services also be available. For more detail, see the below link.
http://blog.programmableweb.com/2012/06/21/7-free-geocoding-apis-google-bing-yahoo-and-mapquest/
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Map Projection
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Geographic coordinates
A set of numbers of location on the globe is called Geographic
coordinates(ex. longitude, latitude).A common choice of
coordinates is latitude, longitude and elevation.
Position gap sometimes occur when coordinates system of each layer
on QGIS differs from each other even if each layer has same
coordinates..
-31788.8930935
-6433.4151654
-31785.5178796
-6432.6469309
The coordinates differ even at a
same place when the CR differ.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
What’s map projection?
• Azimuthal projection
Azimuthal projections have the property that directions from a
central point are preserved and therefore great circles through the
central point are represented by straight lines on the map.
• Cylindrical projection
A map projection in which the surface features of a globe are
depicted as if projected onto a cylinder typically positioned with the
globe centered horizontally inside the cylinder.The Mercator
projection one of the cylindrical ,developed for navigational
purposes, has often been used in world maps.
A map projection is a systematic transformation of the latitudes and
longitudes of locations on the surface of a sphere or an ellipsoid into
locations on a plane.
Because the earth is round, a position gap is inevitable even on any
projection.Therefore a projection should be varied depending on the
intended use such as calculating area, angle and distance.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
引用: 国土地理院
 http://vldb.gsi.go.jp/sokuchi/datum/tokyodatum.html
• WGS84 (World Geodetic System)
WGS 84 is the reference coordinate system used by the Global
Positioning System.The coordinate origin of WGS 84 is meant to
be located at the Earth's center of mass.
• JGD2000 (Japanese Geodetic Datum)
JGD2000 is the geodetic datum based on the GRS80 in common
with WGS84. It has been introduced since 2002 instead of the
formerTokyo Datum in order to adapt the coordinate system to
various high-tech tools using GPS/GIS technology more easily.
• Tokyo Datum
Tokyo Datum is the coordinate system based on triangulation
defined by “Meiji” government was basically established in early
20th century.
The following system are generally used in Japan.
Type of Coordinate Reference System
引用: United Nation
http://unstats.un.org/unsd/geoinfo/RCC/docs/rcca8/crp/
8th_UNRCCA_econf.96_CRP9.pdf
Copyright (C) 2013 microbase.LLC All Rights Reserved.
How to manage CRS onGIS
Projection is defined in the “.prj” file in case of shape file.“CRS selector” window will
appear on GIS when you load shape file without “prj”.
#prj is one of the set of shape file.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Add ”bunkyo.shp” and “tokyo.shp” in “lecture3_en” folder and
show the map.Then choose WGS84(EPSG:4326) for the
coordinate system of “tokyo.shp”. Former layer shows the
administrative unit of “Bunkyo ward” , the latter shows the
administrative unit of “Tokyo prefecture”.
Exercise 2
Copyright (C) 2013 microbase.LLC All Rights Reserved.
ANSWER
Both layers appear but have position gaps.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Check coordinate Reference system(CRS)
Position gaps have occured among “Tokyo” and “Bunkyo” because both
CRS differs from each other.
Open a property of each layer and choose “General Information” tab at
the top of the window. Current layer CRS can be seen there.
Bunkyo layer: Tokyo Tokyo layer: WGS84
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Projection transformation
This kinds of position gap sometimes occur when CRS of each layer on QGIS differs
from each other. In order to modify the gap, CRS must be common.
It is called “Projection transformation” to project a layer from one coordinate system
to another CRS.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Projects “Bunkyo” layer fromTokyo(ESPG:4301) to WGS84.
Projection transformation can be done from “Save as”.
CRS can be derived from “CRS
Selector”.
Filter function enable to
find a plugin you want
easily. Input a keyword
about the plugin.
The list of CRS
will appear
depending on
keywords in
filter.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
“Bunkyo” layer overlaps with “Tokyo” layer properly.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Create Point Data
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Create point data
QGIS can load and create point data from a table file with
coordinates fields such as CSV data format. Create point
data from sample.csv you’ve added coordinates fields at
Exercese 1.
X
Y
Name Address Lon Lat
Hongo campus Tōkyō-to, Bunkyō-ku,
Hongō, 7-3-1
139.762723 35.712545
Komaba campus Tōkyō-to, Meguro-ku,
Komaba, 4--6-1
139.677172 35.662492
Kashiwa campus Chiba-ken, Kashiwa-shi,
Kashiwanoha, 5-1-5
139.934642 35.900801
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Click the icon of “Add ElimitedText Layer” from the menu.
(or Layer > Add ElimitedText Layer)
1)Choose sample1new.csv which
you added the coordinates.
2) Check the checkbox of
comma( if csv is loaded).
3) Choose the column of coordinates
such as X(longitude) andY(latitude).
A sample imagery about the loading
table can be checked from here.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Then specify CRS (Coordinate reference system) of the table.
Choose WGS84 as CRS.
The coordinates picked
up derive from Google
Maps which support
WGS84.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
A layer has been created from CSV file.
#This layer are added just as a temporary file. Save it as a shape file.
Hongo
Kashiwa
Komaba
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Add a background imagery so that map view is comprehensive.
Plugin > Fetch Python Plugin
Filter function enable to
find a plugin you want
easily. Input a keyword
about the plugin.
#Internet access is necessary for installing OpenLayers plugin.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
After installing the plugin, check whether the plugin is activated or not
on the QGIS Plugin Manager.
Check the checkbox of
OpenLayers Plugin
Plugin > QGIS Plugin Manager
Copyright (C) 2013 microbase.LLC All Rights Reserved.
After installing the plugin properly,“OpenLayers plugin” will be added to
“Plugin” menu.Add “OpenStreetMap layer” from the list.
#Internet access is necessary for using OpenLayers plugin.
Another maps such as Google
Maps and Bing Maps also can
be seen.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
‘On the fly’ CRS transformation
When mapping the layers which have different CS, one common CS should
be used. QGIS has a useful function for this named ‘On the fly’ CRS
transformation which conducts projection transformation automatically just
for map view.
#‘On the fly’ CRS transformation is just a function for display. Projection transformation is
necessary for analysis usage.
‘On the fly’ CRS
transformation
‘On the fly’ CRS
transformation will
turn on automatically
when Open Layers
Plugin” is launched.
Uncheck the
checkbox and the
function will turn off.
Choose CS just like
projection
transformation.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
1) Add “denki.csv” in “lecture3_en” folder on QGIS and
project it from Tokyo(EPSG:4301) to WGS84(EPSG:4362).
Save it as ”denki_wgs1984.shp”.
2) Color the “BUSINESS” field in the attribute table of
“denk_wgs1984” in different colors.This field includes the
name of electronics retail stores such “Big camera”.
3) Add “OpenStreetMap” as a background imagery.
Exercise 3
“denki.csv” includes a list of electronics retail stores in Tokyo.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
1) Load “denki.csv” and choose Tokyo(EPSG:4301) as CRS using “Add Elimited
Text Layer”.
ANSWER
Copyright (C) 2013 microbase.LLC All Rights Reserved.
1) After adding on QGIS, project it to WGS84(EPSG:4362).
ANSWER
Copyright (C) 2013 microbase.LLC All Rights Reserved.
1) The position gap before and after projection transformation can been seen.
ANSWER
Copyright (C) 2013 microbase.LLC All Rights Reserved.
2) 3) color each store depending on “BUSINESS” field of “denki” and load
openstreetmap from openlayers plugin.
ANSWER
Copyright (C) 2013 microbase.LLC All Rights Reserved.
OSM Data
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Create OSM Data
openstreetmap(OSM) is created by volunteers and can be available for
free.The data also can be used on GIS.We’ve already used it as a
background imagery.
Access to openstreetmap.org and try creating open maps!
Create your account
at first!
Copyright (C) 2013 microbase.LLC All Rights Reserved.
OpenSteetMap can be edited after log in. Click “Edit with ID(in-browser editor)” from “Edit”
menu at the top of the screen and launch an edit window.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Create vector data on Bing Map as a background imagery.
2)Create vector data while tracing each building
on Bing Maps.
1)Click “Area” in case
creating or editing polygon
data.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Attributes of each feature can be edited after vector data was created.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
The vector data you created will be seen several tens of seconds later.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Create building polygon data of your home town
or neighborhood on open street map.
Exercise 4
Copyright (C) 2013 microbase.LLC All Rights Reserved.
OSM data can be downloaded and displayed on QGIS using “OpenStreeetMap plugin”.
Download OSM data
Web > OpenStreetMap > Download OSM data
Check the check box of “Open data automatically after
download” and the downloaded OSM data will be
loaded on QGIS automatically.
The extent of downloading OSM is depending on
the map view size. However you can’t download it
on a wide scale
Copyright (C) 2013 microbase.LLC All Rights Reserved.
The downloaded OSM data will be divided into 3 types: Point data, Polyline data
and Polygon data sepalately. Generally,The data tend to be saved as “.osm” data
format(xml) and can be converted into any data format.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
http://downloads.cloudmade.com/ http://www.geofabrik.de/data/download.html
GeofabrikCloudmade
If you want to download huge amount of OSM data at a time, the
following sites are recommended.These sites provide the compiled data
as a unit in country and area.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Existing study using OSM data
http://www.youtube.com/watch?v=7zaQCza9Z6Q&feature=share&list=UUpPkZWEggV6yiBMl6LmEiZQ
UT, Center for spatial information science
People flow in Manila, Philippines in 1996
People flow animation are created from
huge mobile history data in Person trip
survery. Each detail motion are
interpolated based on OSM data.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Work with GoogleEar th
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Google Earth also can load GIS data on it and adopts a data format named KML(Keyhole
Markup Language. KML is XML based markup language and is used for Google Maps too.
QGIS can export a layer as KML.
About KML
※Google Earth is a virtual globe, map and geographical information program that was originally called EarthViewer 3D, and
was created by Keyhole, Inc, a Central Intelligence Agency (CIA) funded company acquired by Google in 2004.
Google Earth is available even
AndroidOS and iOS. If you export
the data as KML, you can show it
on mobile devise.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
QGIS can export KML data from layer option “Save as” in the same way as exporting a layer.
Export a layer as KML format
Choose “Keyhole
Markup
Language[KML]” for
“Format”.
Choose WGS84 for
“CRS”.
#Google Earth
supports WGS84.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Double-click an exported KML files and Google Earth will be launched with
the data added.
※Google Earth has to be installed in order to load KML files on Google Earth.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
http://opentextmap.org/
kml sharing site by NPO Ino-company
OpenTextMap
For those who want to know Google Earth more
Slideshare
Introduction of Google Earth for educators
http://www.slideshare.net/hiroakisengoku/20130331excercise2
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Contents Today
3rd Session
Geocoding
Map Projection
 - Coordinate Reference System(CRS)
- Projection transformation
Create Point Data
 - Delimited layer - OpenLayers Plugin
- ‘On the fly’ CRS transformation
OSM Data
- Create OSM data - OpenStreetMap plugin
Google Earth
- About KML - Export a layer as KML format
Copyright (C) 2013 microbase.LLC All Rights Reserved.
H O M E W O R K
Copyright (C) 2013 microbase.LLC All Rights Reserved.
Write a report about regional issues you live or have been
while meeting the following requirements.
-Describe a summary about the area you mention.
-Explain the issues with maps using GIS.
-Design a simple map to see and understand.
-Cite data source.
Copyright (C) 2013 microbase.LLC All Rights Reserved.
National Land Numerical Information
http://nlftp.mlit.go.jp/ksj-e/index.html
Free Spatial Data
http://www.diva-gis.org/Data
Useful download site for GIS
National Statistics Center - Regional Statistics
http://www.e-stat.go.jp/SG1/chiiki/Welcome.do?
lang=02

More Related Content

What's hot (20)

PDF
QGIS Tutorial 2
niloyghosh1984
 
PDF
QGIS Module 1
CAPSUCSF
 
PDF
Introduction to GIS
Joey Li
 
PPTX
QGIS Basic Training
Imran khan
 
PPTX
Data Models - GIS I
John Reiser
 
PDF
Introduction to Open Source GIS
SANGHEE SHIN
 
PPTX
Fundamentals of GIS
RajalakshmiS34
 
PPTX
Data models in geographical information system(GIS)
PRAMODA G
 
PPTX
Introduction to ArcGIS
Kate Dougherty
 
PPT
GIS Data Types
John Reiser
 
PPTX
QGIS Training.pptx
SeemaAjay7
 
PDF
GIS and QGIS training notes
Arnold Kilaini
 
PPT
Web Mapping
Web Directions
 
PDF
Web GIS
Zhaoying Wei
 
PPT
Image enhancement technique digital image analysis, in remote sensing ,P K MANI
P.K. Mani
 
PPTX
Types of GIS Data
Preeti Prajapati
 
PPTX
GIS - Project Planning and Implementation
Malla Reddy University
 
PDF
What is GIS
Esri
 
PPTX
WEB GIS AND WEB MAP.pptx
Asim Pt
 
PDF
QGIS training
Bonface Thaa
 
QGIS Tutorial 2
niloyghosh1984
 
QGIS Module 1
CAPSUCSF
 
Introduction to GIS
Joey Li
 
QGIS Basic Training
Imran khan
 
Data Models - GIS I
John Reiser
 
Introduction to Open Source GIS
SANGHEE SHIN
 
Fundamentals of GIS
RajalakshmiS34
 
Data models in geographical information system(GIS)
PRAMODA G
 
Introduction to ArcGIS
Kate Dougherty
 
GIS Data Types
John Reiser
 
QGIS Training.pptx
SeemaAjay7
 
GIS and QGIS training notes
Arnold Kilaini
 
Web Mapping
Web Directions
 
Web GIS
Zhaoying Wei
 
Image enhancement technique digital image analysis, in remote sensing ,P K MANI
P.K. Mani
 
Types of GIS Data
Preeti Prajapati
 
GIS - Project Planning and Implementation
Malla Reddy University
 
What is GIS
Esri
 
WEB GIS AND WEB MAP.pptx
Asim Pt
 
QGIS training
Bonface Thaa
 

Viewers also liked (20)

PDF
QGIS training class 2
Hiroaki Sengoku
 
PDF
QGIS Module 3
CAPSUCSF
 
PDF
OSM and QGIS
QGIS UK
 
PDF
QGIS Module 4
CAPSUCSF
 
PDF
QGIS Open Source Desktop GIS
GIS Colorado
 
PDF
2014年度中部大学共同研究報告
Hiroaki Sengoku
 
PDF
みんなでつくるデジタル地図教材 学校支援活動
Hiroaki Sengoku
 
PDF
mobmap hands-on @ FOSS4G SEOUL 2015
Hiroaki Sengoku
 
PDF
QGIS UK User Group - Developing with QGIS (Lutra)
QGIS UK
 
PDF
Mobmap人流データ解析入門
Hiroaki Sengoku
 
PDF
QGIS and Altas: Automatic map generation
QGIS UK
 
PDF
Pythonではじめるロケーションデータ解析
Hiroaki Sengoku
 
PPT
Geographic information system
Sumanta Das
 
PPT
Gis (geographic information system)
Saad Bare
 
PPT
GIS presentation
arniontech
 
PPTX
My ppt on gis
gargsonakshi1
 
PDF
Urban health study ii
CAPSUCSF
 
PDF
The shine study
CAPSUCSF
 
PDF
QGIS Workshop Introduction - CalGIS 2015
Michele Tobias
 
PPTX
Seminar 4 introduction slides
NuBizHRMWE
 
QGIS training class 2
Hiroaki Sengoku
 
QGIS Module 3
CAPSUCSF
 
OSM and QGIS
QGIS UK
 
QGIS Module 4
CAPSUCSF
 
QGIS Open Source Desktop GIS
GIS Colorado
 
2014年度中部大学共同研究報告
Hiroaki Sengoku
 
みんなでつくるデジタル地図教材 学校支援活動
Hiroaki Sengoku
 
mobmap hands-on @ FOSS4G SEOUL 2015
Hiroaki Sengoku
 
QGIS UK User Group - Developing with QGIS (Lutra)
QGIS UK
 
Mobmap人流データ解析入門
Hiroaki Sengoku
 
QGIS and Altas: Automatic map generation
QGIS UK
 
Pythonではじめるロケーションデータ解析
Hiroaki Sengoku
 
Geographic information system
Sumanta Das
 
Gis (geographic information system)
Saad Bare
 
GIS presentation
arniontech
 
My ppt on gis
gargsonakshi1
 
Urban health study ii
CAPSUCSF
 
The shine study
CAPSUCSF
 
QGIS Workshop Introduction - CalGIS 2015
Michele Tobias
 
Seminar 4 introduction slides
NuBizHRMWE
 
Ad

Similar to QGIS training class 3 (20)

PPT
Optimizing GIS based Systems
Ajinkya Deshpande
 
PDF
Play with Vector and Make Map
NopphawanTamkuan
 
PPT
How to empower community by using GIS lecture 1
wang yaohui
 
PDF
Opensource gis development - part 2
Andrea Antonello
 
PDF
Digital Heritage Documentation Via TLS And Photogrammetry Case Study
theijes
 
PDF
Digital Heritage Documentation Via TLS And Photogrammetry Case Study
theijes
 
PPTX
2017 PLSC Track: Using a Standard Version of ArcMap with External VRS Recieve...
GIS in the Rockies
 
PDF
Location Analytics - Real-Time Geofencing using Kafka
Guido Schmutz
 
PPTX
도시건축설계와 오픈소스 기반 GIS
mac999
 
PPTX
도시 설계와 GIS 기술의 관계
Tae wook kang
 
DOCX
Path Finding In Hazad Terrain
Oren Koler
 
PDF
Agi08 Jeremy Morley
Jeremy Morley
 
PPTX
Introduction and Application of GIS
Satish Taji
 
PDF
IRJET- Image Registration in GIS: A Survey
IRJET Journal
 
PDF
Navigation system by using gis and gps
IAEME Publication
 
PDF
Flight trajectory recreation and playback system of aerial mission based on o...
csandit
 
PPT
remote sesing resolution for satelitte imag
ARULMURUGANRAMU1
 
PPT
The development of a Geographic Information System for traffic route planni...
Matthew Pulis
 
DOCX
Sql server 2008 r2 spatial data whitepaper
Klaudiia Jacome
 
PDF
YARCA (Yet Another Raycasting Application) Project
graphitech
 
Optimizing GIS based Systems
Ajinkya Deshpande
 
Play with Vector and Make Map
NopphawanTamkuan
 
How to empower community by using GIS lecture 1
wang yaohui
 
Opensource gis development - part 2
Andrea Antonello
 
Digital Heritage Documentation Via TLS And Photogrammetry Case Study
theijes
 
Digital Heritage Documentation Via TLS And Photogrammetry Case Study
theijes
 
2017 PLSC Track: Using a Standard Version of ArcMap with External VRS Recieve...
GIS in the Rockies
 
Location Analytics - Real-Time Geofencing using Kafka
Guido Schmutz
 
도시건축설계와 오픈소스 기반 GIS
mac999
 
도시 설계와 GIS 기술의 관계
Tae wook kang
 
Path Finding In Hazad Terrain
Oren Koler
 
Agi08 Jeremy Morley
Jeremy Morley
 
Introduction and Application of GIS
Satish Taji
 
IRJET- Image Registration in GIS: A Survey
IRJET Journal
 
Navigation system by using gis and gps
IAEME Publication
 
Flight trajectory recreation and playback system of aerial mission based on o...
csandit
 
remote sesing resolution for satelitte imag
ARULMURUGANRAMU1
 
The development of a Geographic Information System for traffic route planni...
Matthew Pulis
 
Sql server 2008 r2 spatial data whitepaper
Klaudiia Jacome
 
YARCA (Yet Another Raycasting Application) Project
graphitech
 
Ad

More from Hiroaki Sengoku (15)

PDF
社会を支えるインフラが、 社会の問題にならないために。 上水道インフラへのAI導入の挑戦。
Hiroaki Sengoku
 
PDF
都市計画情報を考慮した ミクロな将来世帯数の推計手法の構築
Hiroaki Sengoku
 
PDF
物流オープンデータ活用コンテストに応募してみよう!!
Hiroaki Sengoku
 
PDF
位置情報にまつわるデータ補間技術
Hiroaki Sengoku
 
PDF
人流データ解析プラットフォーム Mobmap
Hiroaki Sengoku
 
PDF
伊能社中の一億総伊能化計画
Hiroaki Sengoku
 
PDF
学び方・教え方が変わる!直感で学べる電子地図教材
Hiroaki Sengoku
 
PDF
Foss4 g2013 geoxcode_sengoku
Hiroaki Sengoku
 
PDF
Qgis install guide
Hiroaki Sengoku
 
PDF
Introduction of open source gis
Hiroaki Sengoku
 
PDF
伊能社中 地図研修会【入門編】【初級編】
Hiroaki Sengoku
 
PDF
Foss4 gマイクロジオデータ解析入門
Hiroaki Sengoku
 
PDF
GIS future prospects pioneered by microgeodata usage
Hiroaki Sengoku
 
PDF
QGIS入門(1)
Hiroaki Sengoku
 
PDF
Qgislecture 0
Hiroaki Sengoku
 
社会を支えるインフラが、 社会の問題にならないために。 上水道インフラへのAI導入の挑戦。
Hiroaki Sengoku
 
都市計画情報を考慮した ミクロな将来世帯数の推計手法の構築
Hiroaki Sengoku
 
物流オープンデータ活用コンテストに応募してみよう!!
Hiroaki Sengoku
 
位置情報にまつわるデータ補間技術
Hiroaki Sengoku
 
人流データ解析プラットフォーム Mobmap
Hiroaki Sengoku
 
伊能社中の一億総伊能化計画
Hiroaki Sengoku
 
学び方・教え方が変わる!直感で学べる電子地図教材
Hiroaki Sengoku
 
Foss4 g2013 geoxcode_sengoku
Hiroaki Sengoku
 
Qgis install guide
Hiroaki Sengoku
 
Introduction of open source gis
Hiroaki Sengoku
 
伊能社中 地図研修会【入門編】【初級編】
Hiroaki Sengoku
 
Foss4 gマイクロジオデータ解析入門
Hiroaki Sengoku
 
GIS future prospects pioneered by microgeodata usage
Hiroaki Sengoku
 
QGIS入門(1)
Hiroaki Sengoku
 
Qgislecture 0
Hiroaki Sengoku
 

Recently uploaded (20)

PDF
The Future of Mobile Is Context-Aware—Are You Ready?
iProgrammer Solutions Private Limited
 
PDF
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
PDF
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
PPTX
AVL ( audio, visuals or led ), technology.
Rajeshwri Panchal
 
PDF
A Strategic Analysis of the MVNO Wave in Emerging Markets.pdf
IPLOOK Networks
 
PDF
RAT Builders - How to Catch Them All [DeepSec 2024]
malmoeb
 
PDF
Researching The Best Chat SDK Providers in 2025
Ray Fields
 
PPTX
Simple and concise overview about Quantum computing..pptx
mughal641
 
PPTX
AI in Daily Life: How Artificial Intelligence Helps Us Every Day
vanshrpatil7
 
PDF
The Future of Artificial Intelligence (AI)
Mukul
 
PDF
introduction to computer hardware and sofeware
chauhanshraddha2007
 
PDF
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
PDF
Brief History of Internet - Early Days of Internet
sutharharshit158
 
PDF
Build with AI and GDG Cloud Bydgoszcz- ADK .pdf
jaroslawgajewski1
 
PDF
Economic Impact of Data Centres to the Malaysian Economy
flintglobalapac
 
PDF
TrustArc Webinar - Navigating Data Privacy in LATAM: Laws, Trends, and Compli...
TrustArc
 
PPTX
Agile Chennai 18-19 July 2025 Ideathon | AI Powered Microfinance Literacy Gui...
AgileNetwork
 
PDF
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
PDF
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
PDF
Per Axbom: The spectacular lies of maps
Nexer Digital
 
The Future of Mobile Is Context-Aware—Are You Ready?
iProgrammer Solutions Private Limited
 
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
Trying to figure out MCP by actually building an app from scratch with open s...
Julien SIMON
 
AVL ( audio, visuals or led ), technology.
Rajeshwri Panchal
 
A Strategic Analysis of the MVNO Wave in Emerging Markets.pdf
IPLOOK Networks
 
RAT Builders - How to Catch Them All [DeepSec 2024]
malmoeb
 
Researching The Best Chat SDK Providers in 2025
Ray Fields
 
Simple and concise overview about Quantum computing..pptx
mughal641
 
AI in Daily Life: How Artificial Intelligence Helps Us Every Day
vanshrpatil7
 
The Future of Artificial Intelligence (AI)
Mukul
 
introduction to computer hardware and sofeware
chauhanshraddha2007
 
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
Brief History of Internet - Early Days of Internet
sutharharshit158
 
Build with AI and GDG Cloud Bydgoszcz- ADK .pdf
jaroslawgajewski1
 
Economic Impact of Data Centres to the Malaysian Economy
flintglobalapac
 
TrustArc Webinar - Navigating Data Privacy in LATAM: Laws, Trends, and Compli...
TrustArc
 
Agile Chennai 18-19 July 2025 Ideathon | AI Powered Microfinance Literacy Gui...
AgileNetwork
 
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
Per Axbom: The spectacular lies of maps
Nexer Digital
 

QGIS training class 3

  • 1. Copyright (C) 2013 microbase.LLC All Rights Reserved. Geographic Information System QGIS Introduction(3) microbase.LLC http://microgeodata.com/
  • 2. Copyright (C) 2013 microbase.LLC All Rights Reserved. Agenda 1st 2nd 3rd What’s QGIS? Basic usage Basic data management Spatial Analysis Spatial data andling Geocording Create Vector data Map Projection Create KML data Utilize OSM data
  • 3. Copyright (C) 2013 microbase.LLC All Rights Reserved. Contents Today 3rd Session Geocoding Map Projection  - Coordinate Reference System(CRS) - Projection transformation Create Point Data  - Delimited layer - OpenLayers Plugin - ‘On the fly’ CRS transformation OSM Data - Create OSM data - OpenStreetMap plugin Google Earth - About KML - Export a layer as KML format
  • 4. Copyright (C) 2013 microbase.LLC All Rights Reserved. Data lecture3_en
  • 5. Copyright (C) 2013 microbase.LLC All Rights Reserved. Geocoding
  • 6. Copyright (C) 2013 microbase.LLC All Rights Reserved. Address Geocoding It is called Address geocoding to find associated geographic coordinates (often expressed as latitude and longitude) from other geographic data, such as street addresses, or ZIP codes (postal codes). Name Address Hongo campus 7-3-1 Hongo Bunkyo-ku Tokyo-to Komaba campus 4--6-1 Komaba Meguro-ku Tokyo-to Kashiwa campus 5-1-5 Kashiwanoha Kashiwa-shi Chiba-ken GIS projects the coordinates on map. X Y Name Address Lon Lat Hongo campus Tōkyō-to, Bunkyō-ku, Hongō, 7-3-1 139.762723 35.712545 Komaba campus Tōkyō-to, Meguro-ku, Komaba, 4--6-1 139.677172 35.662492 Kashiwa campus Chiba-ken, Kashiwa-shi, Kashiwanoha, 5-1-5 139.934642 35.900801
  • 7. Copyright (C) 2013 microbase.LLC All Rights Reserved. Type of Address Geocoding Street address Block address The address commonly seen in Europe and the United States. ex) Unter den Linden 6, 10099 Berlin The address commonly seen in Asian area. ex)Tōkyō-to, Bunkyō-ku, Hongō, 7-3-1 street street number postal code city pref city block block number
  • 8. Copyright (C) 2013 microbase.LLC All Rights Reserved. How to conduct geocoding Google Maps provides geocoding service. Geographic coordinate can be obtained from Google Maps by clicking “What’s here? on pop-up menu after right-clicking anywhere on map. 1) Click “What’s here? on pop-up menu after right-clicking the place you want to get on map. 2)The coordinates are displayed on web form. (latitude[Y], longitude[X])
  • 9. Copyright (C) 2013 microbase.LLC All Rights Reserved. Name Address Lon Lat Hongo campus Tōkyō-to, Bunkyō-ku, Hongō, 7-3-1 Komaba campus Tōkyō-to, Meguro-ku, Komaba, 4--6-1 Kashiwa campus Chiba-ken, Kashiwa-shi, Kashiwanoha, 5-1-5 Exercise 1 Add “longitude” and “latitude” layer to “sample.csv” in “lecture3_en” folder using Google Maps.The csv file can be edited by spreadsheet or text editor. Longitude(X) ex) 139.810896 Latitude(Y) ex) 35.710211
  • 10. Copyright (C) 2013 microbase.LLC All Rights Reserved. Google Maps API are useful when you want to process geocoding on a large scale. https://developers.google.com/maps/documentation/geocoding/?hl=en Another geocoding services also be available. For more detail, see the below link. http://blog.programmableweb.com/2012/06/21/7-free-geocoding-apis-google-bing-yahoo-and-mapquest/
  • 11. Copyright (C) 2013 microbase.LLC All Rights Reserved. Map Projection
  • 12. Copyright (C) 2013 microbase.LLC All Rights Reserved. Geographic coordinates A set of numbers of location on the globe is called Geographic coordinates(ex. longitude, latitude).A common choice of coordinates is latitude, longitude and elevation. Position gap sometimes occur when coordinates system of each layer on QGIS differs from each other even if each layer has same coordinates.. -31788.8930935 -6433.4151654 -31785.5178796 -6432.6469309 The coordinates differ even at a same place when the CR differ.
  • 13. Copyright (C) 2013 microbase.LLC All Rights Reserved. What’s map projection? • Azimuthal projection Azimuthal projections have the property that directions from a central point are preserved and therefore great circles through the central point are represented by straight lines on the map. • Cylindrical projection A map projection in which the surface features of a globe are depicted as if projected onto a cylinder typically positioned with the globe centered horizontally inside the cylinder.The Mercator projection one of the cylindrical ,developed for navigational purposes, has often been used in world maps. A map projection is a systematic transformation of the latitudes and longitudes of locations on the surface of a sphere or an ellipsoid into locations on a plane. Because the earth is round, a position gap is inevitable even on any projection.Therefore a projection should be varied depending on the intended use such as calculating area, angle and distance.
  • 14. Copyright (C) 2013 microbase.LLC All Rights Reserved. 引用: 国土地理院  http://vldb.gsi.go.jp/sokuchi/datum/tokyodatum.html • WGS84 (World Geodetic System) WGS 84 is the reference coordinate system used by the Global Positioning System.The coordinate origin of WGS 84 is meant to be located at the Earth's center of mass. • JGD2000 (Japanese Geodetic Datum) JGD2000 is the geodetic datum based on the GRS80 in common with WGS84. It has been introduced since 2002 instead of the formerTokyo Datum in order to adapt the coordinate system to various high-tech tools using GPS/GIS technology more easily. • Tokyo Datum Tokyo Datum is the coordinate system based on triangulation defined by “Meiji” government was basically established in early 20th century. The following system are generally used in Japan. Type of Coordinate Reference System 引用: United Nation http://unstats.un.org/unsd/geoinfo/RCC/docs/rcca8/crp/ 8th_UNRCCA_econf.96_CRP9.pdf
  • 15. Copyright (C) 2013 microbase.LLC All Rights Reserved. How to manage CRS onGIS Projection is defined in the “.prj” file in case of shape file.“CRS selector” window will appear on GIS when you load shape file without “prj”. #prj is one of the set of shape file.
  • 16. Copyright (C) 2013 microbase.LLC All Rights Reserved. Add ”bunkyo.shp” and “tokyo.shp” in “lecture3_en” folder and show the map.Then choose WGS84(EPSG:4326) for the coordinate system of “tokyo.shp”. Former layer shows the administrative unit of “Bunkyo ward” , the latter shows the administrative unit of “Tokyo prefecture”. Exercise 2
  • 17. Copyright (C) 2013 microbase.LLC All Rights Reserved. ANSWER Both layers appear but have position gaps.
  • 18. Copyright (C) 2013 microbase.LLC All Rights Reserved. Check coordinate Reference system(CRS) Position gaps have occured among “Tokyo” and “Bunkyo” because both CRS differs from each other. Open a property of each layer and choose “General Information” tab at the top of the window. Current layer CRS can be seen there. Bunkyo layer: Tokyo Tokyo layer: WGS84
  • 19. Copyright (C) 2013 microbase.LLC All Rights Reserved. Projection transformation This kinds of position gap sometimes occur when CRS of each layer on QGIS differs from each other. In order to modify the gap, CRS must be common. It is called “Projection transformation” to project a layer from one coordinate system to another CRS.
  • 20. Copyright (C) 2013 microbase.LLC All Rights Reserved. Projects “Bunkyo” layer fromTokyo(ESPG:4301) to WGS84. Projection transformation can be done from “Save as”. CRS can be derived from “CRS Selector”. Filter function enable to find a plugin you want easily. Input a keyword about the plugin. The list of CRS will appear depending on keywords in filter.
  • 21. Copyright (C) 2013 microbase.LLC All Rights Reserved. “Bunkyo” layer overlaps with “Tokyo” layer properly.
  • 22. Copyright (C) 2013 microbase.LLC All Rights Reserved. Create Point Data
  • 23. Copyright (C) 2013 microbase.LLC All Rights Reserved. Create point data QGIS can load and create point data from a table file with coordinates fields such as CSV data format. Create point data from sample.csv you’ve added coordinates fields at Exercese 1. X Y Name Address Lon Lat Hongo campus Tōkyō-to, Bunkyō-ku, Hongō, 7-3-1 139.762723 35.712545 Komaba campus Tōkyō-to, Meguro-ku, Komaba, 4--6-1 139.677172 35.662492 Kashiwa campus Chiba-ken, Kashiwa-shi, Kashiwanoha, 5-1-5 139.934642 35.900801
  • 24. Copyright (C) 2013 microbase.LLC All Rights Reserved. Click the icon of “Add ElimitedText Layer” from the menu. (or Layer > Add ElimitedText Layer) 1)Choose sample1new.csv which you added the coordinates. 2) Check the checkbox of comma( if csv is loaded). 3) Choose the column of coordinates such as X(longitude) andY(latitude). A sample imagery about the loading table can be checked from here.
  • 25. Copyright (C) 2013 microbase.LLC All Rights Reserved. Then specify CRS (Coordinate reference system) of the table. Choose WGS84 as CRS. The coordinates picked up derive from Google Maps which support WGS84.
  • 26. Copyright (C) 2013 microbase.LLC All Rights Reserved. A layer has been created from CSV file. #This layer are added just as a temporary file. Save it as a shape file. Hongo Kashiwa Komaba
  • 27. Copyright (C) 2013 microbase.LLC All Rights Reserved. Add a background imagery so that map view is comprehensive. Plugin > Fetch Python Plugin Filter function enable to find a plugin you want easily. Input a keyword about the plugin. #Internet access is necessary for installing OpenLayers plugin.
  • 28. Copyright (C) 2013 microbase.LLC All Rights Reserved. After installing the plugin, check whether the plugin is activated or not on the QGIS Plugin Manager. Check the checkbox of OpenLayers Plugin Plugin > QGIS Plugin Manager
  • 29. Copyright (C) 2013 microbase.LLC All Rights Reserved. After installing the plugin properly,“OpenLayers plugin” will be added to “Plugin” menu.Add “OpenStreetMap layer” from the list. #Internet access is necessary for using OpenLayers plugin. Another maps such as Google Maps and Bing Maps also can be seen.
  • 30. Copyright (C) 2013 microbase.LLC All Rights Reserved. ‘On the fly’ CRS transformation When mapping the layers which have different CS, one common CS should be used. QGIS has a useful function for this named ‘On the fly’ CRS transformation which conducts projection transformation automatically just for map view. #‘On the fly’ CRS transformation is just a function for display. Projection transformation is necessary for analysis usage. ‘On the fly’ CRS transformation ‘On the fly’ CRS transformation will turn on automatically when Open Layers Plugin” is launched. Uncheck the checkbox and the function will turn off. Choose CS just like projection transformation.
  • 31. Copyright (C) 2013 microbase.LLC All Rights Reserved. 1) Add “denki.csv” in “lecture3_en” folder on QGIS and project it from Tokyo(EPSG:4301) to WGS84(EPSG:4362). Save it as ”denki_wgs1984.shp”. 2) Color the “BUSINESS” field in the attribute table of “denk_wgs1984” in different colors.This field includes the name of electronics retail stores such “Big camera”. 3) Add “OpenStreetMap” as a background imagery. Exercise 3 “denki.csv” includes a list of electronics retail stores in Tokyo.
  • 32. Copyright (C) 2013 microbase.LLC All Rights Reserved. 1) Load “denki.csv” and choose Tokyo(EPSG:4301) as CRS using “Add Elimited Text Layer”. ANSWER
  • 33. Copyright (C) 2013 microbase.LLC All Rights Reserved. 1) After adding on QGIS, project it to WGS84(EPSG:4362). ANSWER
  • 34. Copyright (C) 2013 microbase.LLC All Rights Reserved. 1) The position gap before and after projection transformation can been seen. ANSWER
  • 35. Copyright (C) 2013 microbase.LLC All Rights Reserved. 2) 3) color each store depending on “BUSINESS” field of “denki” and load openstreetmap from openlayers plugin. ANSWER
  • 36. Copyright (C) 2013 microbase.LLC All Rights Reserved. OSM Data
  • 37. Copyright (C) 2013 microbase.LLC All Rights Reserved. Create OSM Data openstreetmap(OSM) is created by volunteers and can be available for free.The data also can be used on GIS.We’ve already used it as a background imagery. Access to openstreetmap.org and try creating open maps! Create your account at first!
  • 38. Copyright (C) 2013 microbase.LLC All Rights Reserved. OpenSteetMap can be edited after log in. Click “Edit with ID(in-browser editor)” from “Edit” menu at the top of the screen and launch an edit window.
  • 39. Copyright (C) 2013 microbase.LLC All Rights Reserved. Create vector data on Bing Map as a background imagery. 2)Create vector data while tracing each building on Bing Maps. 1)Click “Area” in case creating or editing polygon data.
  • 40. Copyright (C) 2013 microbase.LLC All Rights Reserved. Attributes of each feature can be edited after vector data was created.
  • 41. Copyright (C) 2013 microbase.LLC All Rights Reserved. The vector data you created will be seen several tens of seconds later.
  • 42. Copyright (C) 2013 microbase.LLC All Rights Reserved. Create building polygon data of your home town or neighborhood on open street map. Exercise 4
  • 43. Copyright (C) 2013 microbase.LLC All Rights Reserved. OSM data can be downloaded and displayed on QGIS using “OpenStreeetMap plugin”. Download OSM data Web > OpenStreetMap > Download OSM data Check the check box of “Open data automatically after download” and the downloaded OSM data will be loaded on QGIS automatically. The extent of downloading OSM is depending on the map view size. However you can’t download it on a wide scale
  • 44. Copyright (C) 2013 microbase.LLC All Rights Reserved. The downloaded OSM data will be divided into 3 types: Point data, Polyline data and Polygon data sepalately. Generally,The data tend to be saved as “.osm” data format(xml) and can be converted into any data format.
  • 45. Copyright (C) 2013 microbase.LLC All Rights Reserved. http://downloads.cloudmade.com/ http://www.geofabrik.de/data/download.html GeofabrikCloudmade If you want to download huge amount of OSM data at a time, the following sites are recommended.These sites provide the compiled data as a unit in country and area.
  • 46. Copyright (C) 2013 microbase.LLC All Rights Reserved. Existing study using OSM data http://www.youtube.com/watch?v=7zaQCza9Z6Q&feature=share&list=UUpPkZWEggV6yiBMl6LmEiZQ UT, Center for spatial information science People flow in Manila, Philippines in 1996 People flow animation are created from huge mobile history data in Person trip survery. Each detail motion are interpolated based on OSM data.
  • 47. Copyright (C) 2013 microbase.LLC All Rights Reserved. Work with GoogleEar th
  • 48. Copyright (C) 2013 microbase.LLC All Rights Reserved. Google Earth also can load GIS data on it and adopts a data format named KML(Keyhole Markup Language. KML is XML based markup language and is used for Google Maps too. QGIS can export a layer as KML. About KML ※Google Earth is a virtual globe, map and geographical information program that was originally called EarthViewer 3D, and was created by Keyhole, Inc, a Central Intelligence Agency (CIA) funded company acquired by Google in 2004. Google Earth is available even AndroidOS and iOS. If you export the data as KML, you can show it on mobile devise.
  • 49. Copyright (C) 2013 microbase.LLC All Rights Reserved. QGIS can export KML data from layer option “Save as” in the same way as exporting a layer. Export a layer as KML format Choose “Keyhole Markup Language[KML]” for “Format”. Choose WGS84 for “CRS”. #Google Earth supports WGS84.
  • 50. Copyright (C) 2013 microbase.LLC All Rights Reserved. Double-click an exported KML files and Google Earth will be launched with the data added. ※Google Earth has to be installed in order to load KML files on Google Earth.
  • 51. Copyright (C) 2013 microbase.LLC All Rights Reserved. http://opentextmap.org/ kml sharing site by NPO Ino-company OpenTextMap For those who want to know Google Earth more Slideshare Introduction of Google Earth for educators http://www.slideshare.net/hiroakisengoku/20130331excercise2
  • 52. Copyright (C) 2013 microbase.LLC All Rights Reserved. Contents Today 3rd Session Geocoding Map Projection  - Coordinate Reference System(CRS) - Projection transformation Create Point Data  - Delimited layer - OpenLayers Plugin - ‘On the fly’ CRS transformation OSM Data - Create OSM data - OpenStreetMap plugin Google Earth - About KML - Export a layer as KML format
  • 53. Copyright (C) 2013 microbase.LLC All Rights Reserved. H O M E W O R K
  • 54. Copyright (C) 2013 microbase.LLC All Rights Reserved. Write a report about regional issues you live or have been while meeting the following requirements. -Describe a summary about the area you mention. -Explain the issues with maps using GIS. -Design a simple map to see and understand. -Cite data source.
  • 55. Copyright (C) 2013 microbase.LLC All Rights Reserved. National Land Numerical Information http://nlftp.mlit.go.jp/ksj-e/index.html Free Spatial Data http://www.diva-gis.org/Data Useful download site for GIS National Statistics Center - Regional Statistics http://www.e-stat.go.jp/SG1/chiiki/Welcome.do? lang=02