KR20130011179A - Identifying the population with zoning on smartphone - Google Patents

Identifying the population with zoning on smartphone Download PDF

Info

Publication number
KR20130011179A
KR20130011179A KR1020110072150A KR20110072150A KR20130011179A KR 20130011179 A KR20130011179 A KR 20130011179A KR 1020110072150 A KR1020110072150 A KR 1020110072150A KR 20110072150 A KR20110072150 A KR 20110072150A KR 20130011179 A KR20130011179 A KR 20130011179A
Authority
KR
South Korea
Prior art keywords
population
area
smartphone
map
zoning
Prior art date
Application number
KR1020110072150A
Other languages
Korean (ko)
Inventor
장우정
김순연
원영진
제영호
김남규
문정록
Original Assignee
(주)헤르메시스
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by (주)헤르메시스 filed Critical (주)헤르메시스
Priority to KR1020110072150A priority Critical patent/KR20130011179A/en
Publication of KR20130011179A publication Critical patent/KR20130011179A/en

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q50/00Systems or methods specially adapted for specific business sectors, e.g. utilities or tourism
    • G06Q50/10Services

Abstract

Technology that can identify population of customized area on smartphone

Description

Identifying the population with zoning on smartphone

Mobile web-related spatial database analysis technology

Spatial database technology and web technology

Identifying the population behind it is essential for business analysis and location selection. Unlike offices with all large data and analysis tools (SWs), only a limited amount of data is available in the field. Through the present invention, it is possible to grasp and present a population for an area designated by a user with a smart phone in the field rather than an office. In addition, as a countermeasure against loss of smartphones, the building and population DB will try to solve this problem in a situation where it is not loaded on a smartphone.

In the present invention, the background map for the area drawing is not specified. Both OpenLayers, a typical open source GIS client, and general Open API Maps (Naver Map, Google Map, etc.) can be applied. The OGC Contain Spatial Analysis API is used to search for buildings in the area, and data transmission between smartphone and server uses REST technology, which is a lightweight HTTP-based transmission / reception technology.

After a visual inspection at the site, the uncomfortable procedure of returning to the office to construct the area and to identify the population of the area is solved on site. Smart work environment is more improved.

1, 2, 3, and 4 are examples of screen designs that can be expected when the present invention is applied.

Since the DB of the server is for population counting, not MAP for display, only the population DB layer is constructed. Population figures are usually constructed as property fields of residential buildings such as apartments. For fast response speed, create a spatial index for the residential building table.

An open API portal map (Naver, Google, etc.) may be used as the background map for the area drawing on the smartphone. (See FIG. 1).

The first method is n vertex input method. POLYGON ((198900 454800, 199200 454800,199200 454500,198900 454800)) (if it is a three-point triangle, the first and last coordinates must be entered in a matching closed form) if it follows the OGC WKT standard have.

The second method is to automatically generate a circle around a specified point and use it as an area. Points can be specified by the user on the map or the current position of the smartphone can be utilized. If you check the population while moving on the road in this way, you get a screen result as shown in FIG.

The third method is to use the map area viewed on the screen as the analysis area. Internally it consists of a rectangular polygon with four edges.

The fourth method is for the user to select the administrative boundary name as a combo GUI for each step such as zip code search. The data sent to the server is the administrative boundary distinguished name and the acquisition of polygons is performed at the server. To do this, the server stores the administrative boundary layer in the spatial DBMS.

When the user selects the demographic button (icon), the constructed area is sent to the server using REST technology.

The sum of the population within the region is calculated using the OGC standard contain operation and the Sum Aggregate function of ANSI standard SQL. You can query from Spatial DBMS such as Oracle, IBM DB2, MS SQL Server 2008, and MS SQL Server 2008 can use the following query.

DECLARE  @ Zone geometry ;

SET  @ Zone  = geometry :: STGeomFromText (' POLYGON ((198900 454800, 199200 454800,199200 454500,198900 454800)) ', 0);

SELECT SUM  ( Population ) FROM  Residential building where  @ Zone . STContains (Residential building. geom ) = 1

At this time, in the case of using the center point and the 1km radius area, the lower part is changed from the above.

SET  @ Zone  = geometry :: STGeomFromText (' POINT (198900 454800) ', 0). STBuffer (1000)

If the administrative boundary name method is used, the area security code is as follows.

SET  @ Zone  = Select geom from  Administrative border where name = 'Seocho-dong'

The calculated scalar value is sent to the smartphone as a response to a REST call. The smart phone expresses the received numerical value to the user.

110: Start demographic function button. Press this button to start plotting areas on the map.

Claims (4)

In identifying the population of the region of interest on a map in a smartphone, constructing a polygon region on a background map in a smartphone; Sending the constructed area to the server by REST technology; Extracting only the building inside the area by OGC contain operation from the area information received from the server; Summing population by ANSI SQL SUM operation in the extracted building; Responding to the aggregated population with REST technology; Representing the population value received from the smartphone on the screen,
In smartphones, building, population DB lookup method on the map, characterized in that this feature provides the function without saving the DB.
The method of claim 1,
How to Specify Zoning by Center Point and Radius
The method of claim 1,
How to use the map screen area that is being queried for area designation
The method of claim 1,
How to use administrative boundary graphic without drawing zoning.
KR1020110072150A 2011-07-20 2011-07-20 Identifying the population with zoning on smartphone KR20130011179A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
KR1020110072150A KR20130011179A (en) 2011-07-20 2011-07-20 Identifying the population with zoning on smartphone

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
KR1020110072150A KR20130011179A (en) 2011-07-20 2011-07-20 Identifying the population with zoning on smartphone

Publications (1)

Publication Number Publication Date
KR20130011179A true KR20130011179A (en) 2013-01-30

Family

ID=47840189

Family Applications (1)

Application Number Title Priority Date Filing Date
KR1020110072150A KR20130011179A (en) 2011-07-20 2011-07-20 Identifying the population with zoning on smartphone

Country Status (1)

Country Link
KR (1) KR20130011179A (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2014168419A1 (en) * 2013-04-10 2014-10-16 (주)지앤피오토모티브 Brake actuator
CN106708962A (en) * 2016-11-30 2017-05-24 中山大学 Urban population distribution method based on building properties

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2014168419A1 (en) * 2013-04-10 2014-10-16 (주)지앤피오토모티브 Brake actuator
CN106708962A (en) * 2016-11-30 2017-05-24 中山大学 Urban population distribution method based on building properties

Similar Documents

Publication Publication Date Title
CN111858820B (en) Land property identification method and device, electronic equipment and storage medium
CA2823859C (en) Augmentation of place ranking using 3d model activity in an area
US9179253B2 (en) Map service method and system of providing target contents based on location
CN103268730B (en) Electronic map interface shows the method and apparatus of association mark point
CN105008959A (en) Generating geofence via analysis of GPS fix utilization distribution
CN104537098B (en) CAD diagram paper search method based on GIS technology
CN106227723A (en) For recommending application and presenting the method and apparatus recommending application
US9344849B2 (en) Methods and systems for locating persons and places with mobile devices
CN105493085B (en) Create method, system and the computer readable storage medium of the sample of database table
US11006244B2 (en) Methods on mobile devices to locate persons
CN107908677A (en) Cell source of houses methods of exhibiting and device based on intelligent terminal
US9372905B2 (en) Subroutines in a graphical query builder
CN104573042A (en) Method and device for determining POI information
CN107526848A (en) Palm moving map management system based on GIS
CN105117853A (en) Gridding based GIS supervision and law-enforcing method and system
KR101934420B1 (en) Method and apparatus for obtaining candidate address information in map
CN106303952A (en) A kind of method and apparatus of the WiFi access point for accessing target shop
CN105893396A (en) Interpreting user queries based on nearby locations
KR20130011179A (en) Identifying the population with zoning on smartphone
Li et al. Spatial pattern matching: A new direction for finding spatial objects
Lautenschläger Design and implementation of a campus navigation application with augmented reality for smartphones
Piarsa et al. Web-based gis by using spatial decision support system (sdss) concept for searching commercial marketplace-using google map api
Yin et al. Touch2Query enabled mobile devices: a case study using OpenStreetMap and iPhone
US20220048197A1 (en) Ushering method, electronic device, and storage medium
Chunchang et al. The design and implement of tourism information system based on GIS

Legal Events

Date Code Title Description
WITN Withdrawal due to no request for examination