KEYWORDS: census maps, map scale, inset maps, feature density analysis, batch mapping. Introduction

Size: px
Start display at page:

Download "KEYWORDS: census maps, map scale, inset maps, feature density analysis, batch mapping. Introduction"

Transcription

1 Automated Detection and Delineation of Inset Maps William G. Thompson ABSTRACT: In order to create a useful map, the cartographer must select a scale at which the map reader can distinguish all features shown on the map and read all of the feature labels. However, the choice of a scale is also constrained by the size of the map s sheet, or in cases where the map can be tiled into multiple sheets, by the costs and inconvenience of printing and working with a large number of sheets. When the feature density pattern allows, one way to save paper and maintain legibility is to make the map at more than one scale: a small scale suitable for most of the map, while small areas of unacceptably dense features are shown separately on inset maps at larger scales. Creating inset maps requires the cartographer to make a series of complex, interrelated decisions. Are the feature density patterns such that a map sheet configuration employing inset maps is the most efficient? What is an appropriate scale for the main part of the map? How can areas where features are unacceptably dense be detected? How will the boundaries be drawn between the inset areas and the rest of the map? To employ an inset map capability in a non-interactive automated computer mapping system, the mapping software must answer these map design questions through algorithms that analyze feature density patterns and apply sound cartographic logic to issues of sheeting, scaling, and insetting. The Census Automated Map Production System (CAMPS), which was recently put into production by the U.S. Census Bureau to meet the mapping needs of the 2010 census, is a cartographically intelligent system that does this analysis and decision-making without any human intervention. This paper describes CAMPS logic of scale selection, its discovery of clusters of dense features by means of the DBSCAN algorithm, the ways it delineates boundaries between inset areas and the rest of the map, how it determines the most efficient sheet configuration, and some of the difficulties and anomalies it encounters. KEYWORDS: census maps, map scale, inset maps, feature density analysis, batch mapping Introduction In its many data gathering operations, its geographic information sharing programs, and its public data distribution, the U.S. Census Bureau is both a huge user and producer of maps. Since the advent of its digital TIGER database system, fully automated non-interactive map production has been a key part of the Census Bureau s activities (Trainor, 1990). Because the volume of mapping work and demanding production schedules preclude the possibility of any individual map-by-map design or editing, selection of map scale and sheet configuration must be made by software algorithms guided by parameter values. These algorithms apply a combination of cartographic principles, past experience, and analysis of the data to be mapped to create a product suited to the need and delivered on time. Census Bureau map designs are highly project specific. Rather than creating a single scale, all purpose national map series, each map in a national census map series is individually focused on a subject area of interest a legally or statistically defined geographic entity or a data collection work area. Each entity is mapped at whatever scale best fits the density of the features to be shown and the intended map use. If it is

2 necessary to use more than one sheet to create the map at the chosen scale, a configuration of multiple sheets will be created. The mapping system s performance is also crucial, as all the entities in the nation must be mapped repeatedly during the three years around the decennial census, and geographic updates gathered from a previous operation must be reflected on the maps made for the next operation just a few weeks or months later. For the 2010 census, the Census Bureau has redesigned the MAF/TIGER database and along with it has written and put into production a new high volume batch mapping system, the Census Automated Map Production System (CAMPS). While its basic structure and processing flow is similar to the previous in-house census mapping systems, CAMPS employs some new strategies of cartographic analysis. This paper will discuss the theory and application of its algorithms that choose a map scale, detect areas suitable for inset maps, and delineate the inset maps. Many census operations require paper maps created as digital files at census headquarters, plotted or printed at various locations around the country, to be used in the field or in a small office. The national scope of these projects magnifies the importance of using the minimum number of map sheets to map each entity, consistent with the map s legibility and purpose, in order to keep under control the costs of distribution and the burden of collating, storing, and using the thousands of maps created. Earlier census mapping systems have employed an automated inset map creation capability as the way to make the most efficient use of limited map sheet space. Muehrcke (1986) concurs that the advantages of mapping areas of varying density at different scales outweigh the disadvantages. CAMPS draws its maps on two mutually exclusive canvasses. The parent canvas, tiled into multiple sheets if necessary, covers the entire entity of interest. Inset maps are clipped out of the parent canvas onto their canvas, leaving behind a blank area on the parent. Each inset is mapped on a separate sheet at its own larger scale appropriate to the features it contains. The complete sheet configuration of a CAMPS map consists of the parent sheets, the inset sheets, and an index sheet showing the outlines of the parent sheets and inset sheets for user orientation. The methods for calculation of the complete sheet configuration for each CAMPS map have their origins in the early census batch mapping system described by Beard and Robbins (1990), and have evolved to match data formats and map design requirements. A four step process takes place at the start of each mapping job. First, a scale is selected for the parent map. Second, areas that meet a predefined feature density threshold are detected and designated as possible insets. Third, a boundary is drawn around each inset area designating the boundary between each inset map and the parent map. Finally, CAMPS tests other parent scales which lead to different sheet configurations to make sure it has selected the configuration with the fewest total sheets. The choice of a parent scale determines both the number of parent sheets and the size and number of the inset maps. Selecting a Parent Map Scale The primary consideration in selecting a map scale is that all features crucial to the purpose of the map be drawn clearly and identified legibly. Therefore CAMPS bases its scale selection on the placement of text labels on important features drawn on the map. For area features, the label for each feature should fit inside the feature with some blank space around it. Each linear feature should be long enough that its corresponding label can be placed alongside it without overprinting

3 other features or labels. Point features must be far enough apart that an identifying label can be placed next to them without printing over another point. To save processing time, CAMPS will not take into consideration all map features in its scale calculation. Instead it will base its determination on the features of a single key layer or feature type called the analysis layer. The analysis layer must be chosen carefully to result in a successful scale calculation. Because the features in the analysis layer represent all of the features on the map, their density pattern must be similar to the densities of the other feature types. The analysis features must be numerous enough to provide a good sample of the various sizes of all of the features shown. They also should be distributed somewhat evenly across the entire map. The examples in this discussion will be limited to the situation where the analysis layer consists of area features. Many CAMPS mapping projects use census blocks as the analysis layer, because census blocks are numerous and cover the entire landscape. Most importantly, census blocks conform to the pattern of streets, highways, streams, and other basic linear features, so their density closely corresponds to many other features shown on the map. Figure 1 shows the census blocks for a small Midwestern county, which will be used as the analysis layer in scale calculation for a map of this county. Figure 1. The analysis layer consisting of the census blocks of a Midwestern county. The objective of scale calculation in CAMPS is to calculate an ideal scale for each of the features in the analysis layer and then select one of those scales as a satisfactory compromise scale for the entire map. The ideal scale for a feature is the one at which its identifying label can be placed on the map within the outline of that feature with an appropriate amount of empty space around it. Once again, in the interest of saving processing time, CAMPS assumes that all labels for the analysis features are the same

4 size, and uses this representative label for the calculation. Thus three parameters, set by the map designer before production time, drive the calculation. They are: L, the area of the representative label in square inches; C, the percentage of the feature, as it is shown on the page, that the label would cover if that feature were mapped by itself at its ideal scale; and P, how many (as a percentage) of the analysis features need to be mapped at their ideal scale or larger to have a workable compromise scale for the entire map. The ideal scale (S) for a single area feature is calculated by the formula S = F ( C /100) L where F is the area of the feature on the ground, converted to square inches. As an example, for a recent CAMPS mapping project the cartographer determined the size of the representative label to be.028 square inches, and at the ideal scale it should cover 70% of the area of the feature, and 80% of the analysis features should be mapped at their ideal scale or larger. CAMPS sorts all of the features in the analysis layer in descending order of size, then applies the ideal scale calculation to the feature at the 80 th percentile of this list. Table 1 shows a part of a list of 100 analysis features. The entire map will be drawn at the ideal scale for feature 80. Feature Area(sq. meters) F C L S Table 1: Features 75 through 84 of a list of 100 total features. According to the scaling parameters set for this example, the 80 th feature is selected and its ideal scale of 1:17425 is chosen for the entire map. The compromise scale for this map is 1: This scale is ideal or larger for 80% of the analysis features, but the other 20% will be shown at smaller than their ideal size. If the constraints of map use allow, many of the 20% of features can still be labeled acceptably by placing the label outside the polygon and connecting the two with a leader line. However, if many of these small features are clustered together, the use of leader lines will result in label overprinting and confusion. The alternative is to make inset maps of these clusters. In most cases, this is more desirable than mapping at the ideal scale for the smallest analysis feature on the map, which will lead to an excessive number of sheets. The next section discusses how these clusters of small, dense features are detected.

5 Detecting Dense Feature Clusters Suitable for Insets As with scale determination, the search for clusters of features that are unacceptably dense takes place only on features belonging to the analysis layer. The compromise map scale calculated above, 1:17425, now becomes the parent scale, the scale at which the parent map will be made and which will give the context for definition of unacceptably dense clusters. The analysis starts by creating a centroid to represent each analysis feature (Figure 2), and density is detected by moving a square window across the map sheet, centered in turn on each centroid, and counting the centroids that fall within the square. The cartographer defines inset-worthy clusters through two parameters: a window dimension, and the minimum number of points needed to fall within the window in order to form a dense cluster (i.e. density threshold). For instance, the cartographer might determine that all areas that have five or more points falling within a window on the map that measures one inch on each side is too dense and those areas must be mapped on inset maps. Figure 2. A portion of the analysis layer shown in Figure 1. A centroid has been calculated for each of the analysis features The building of dense clusters proceeds according to the DBSCAN algorithm (Ester et al., 1996). The example (Figure 3) uses a density window measuring one inch square on the map sheet at the parent scale and a density threshold of five points. One of the points is chosen arbitrarily and the square window is centered on it. If the density threshold is not met (Figure 3, point A), then the center point is marked as not belonging to a cluster and the test will move to the next point in the database. If the density threshold is met (Figure 3, point B), then a cluster is started that contains the points within the window.

6 Figure 3. The red points form the initial part of a dense cluster. Once a cluster is started, density testing proceeds through the other points belonging to the cluster. When the density threshold is met, new points within the window are added to the cluster (Figure 4). Figure 4. Five more points are added to the cluster when point C is tested. If a point belonging to the cluster is tested, but the density threshold is not met, then no points are added to the cluster (Figure 5). Testing proceeds to any untested points remaining in the cluster.

7 Figure 5. When point D is tested, the density threshold is not met, so point E is not added to the cluster. When all the points belonging to the cluster have been tested and no more points can be added, the cluster point list is completed and saved, and the search goes to the next point in the database that has not yet been checked, trying to start a new cluster. In this procedure, each point serves as the window center only once. Upon completion of density testing, each centroid will have been tagged with the name of the cluster it belongs to, or tagged as not belonging to a cluster. An inset area consists of all the analysis features whose centroids belong to a particular cluster. Figure 6 portrays two of the inset areas (clusters) that were detected in the example county. Figure 6. Two inset areas detected by density analysis and delineated by the bounds of the analysis features. Once CAMPS has designated the analysis features belonging to each inset area, the next step is to draw the boundaries separating the insets from the parent map. CAMPS determines the shape of the inset maps in one of two ways. The first way is suitable when the map is used to do work on a feature-by-feature basis, and it would be confusing to split features between the parent map and the inset map, showing part of a feature at one

8 scale, and the rest of it at another scale. This approach delineates the bounds of the inset using the bounds of the analysis features, and is shown in Figure 6. The inset area takes on an irregular boundary in this situation, but it does consist of whole geographic features, so it is known as whole geography insetting. The other alternative is to draw a rectangle around the cluster of dense analysis features, as was done in Figure 7. Everything inside the rectangle becomes the inset area, and the area clipped from the parent map always has a simple rectangular shape. This is called rectangular insetting. Figure 7. The same inset areas delineated by rectangles. The county displayed in Figures 6 and 7 obviously has two distinct levels of feature density and delineating the inset areas is fairly simple. In many other cases, the differences between dense and non-dense areas are less clear cut, resulting in wildly irregular cluster shapes, clusters that touch or nearly touch, and clusters with holes or exclaves. Therefore, in order to improve the final delineation of the inset areas, CAMPS must perform some further processing on the dense clusters.

9 Merging and Simplifying Dense Clusters Figure 8 shows a more complex set of analysis features where features assigned to dense clusters are shaded in gray. Application of the DBSCAN algorithm resulted in ten separate clusters in a relatively small area, some having holes, and some having quite irregular shapes. Rather than use ten separate sheets for the ten insets, some of the clusters that touch or are near each other could easily be combined for mapping on one sheet. Where there is a hole in a cluster the hole should become a part of the inset that surrounds it rather than being mapped as an island on the parent sheet. Simplifying the inset shape (if it is not rectangular) makes a more aesthetically pleasing map as well as simplifies the relationship between the parent and inset maps. CAMPS merging and simplification routines differ slightly according to whether the insets are to be whole geography based or rectangle based. Figure 8. Analysis features belonging to ten different dense clusters, all shaded with gray. The convex hull is a useful construct for simplifying complex boundaries like those delineating CAMPS whole geography insets (Li, 2007). Applied recursively, the construction of convex hulls can also be used to merge the smaller inset areas. CAMPS begins by drawing a convex hull around each dense cluster of analysis features (Figure 9). When any of the convex hulls touch or overlap, those clusters will be merged to form a new cluster consisting of all the features that lie entirely within those convex hulls. Then new convex hulls will be drawn around the newly merged clusters (Figure 10). These in turn will be checked for touching or overlaps, and merged as before. The process continues in the same fashion until a set of convex hulls is created where none overlap (Figures 11, 12). At this point any islands discontiguous from the rest of their cluster will be examined. Those that do not meet the density threshold will be dropped from the inset area. Those that do meet the threshold will make up a new separate inset. The final, merged inset area consists of all the analysis features that are completely contained within the final convex hull.

10 Figure 9. Convex hulls drawn around the original ten dense clusters. Figure 10. The first round of merged clusters with new convex hulls drawn around them.

11 Figure 11. Merged clusters after the second round with the resulting convex hulls. Figure 12. The final merged inset area. CAMPS proceeds along similar lines if the insets are rectangular. The rectangular boxes delineating the insets are checked for overlaps (Figure 13). If any overlaps are detected, a new box is created from the minimum and maximum extents both vertically and

12 horizontally of the overlapping boxes. This procedure also continues repeatedly until no more overlaps are detected (Figure 14). Figure 13. The originally determined rectangular inset areas. Figure 14. The final merged rectangular inset area.

13 Finding the Best Combination of Parent and Inset Sheets If the overall goal of parent and inset sheet configuration is to map the entire entity legibly on the fewest sheets, a secondary goal is also to keep the number of inset sheets to a minimum. Each time an inset is created, it makes the map harder to use by requiring the user to refer to two sheets to understand a single area: the parent sheet to get the context, and the inset sheet to get the detail. When CAMPS calculates a parent scale and creates a parent map and inset sheets based on that scale, it creates an acceptably legible map of the entity, but is there another parent scale at which the sheet configuration results are better? If a slightly larger parent scale were selected, the result might be fewer inset sheets and the same or fewer total sheets (parent plus inset). Therefore, CAMPS automated inset detection and sheet configuration will try more than one parent scale. CAMPS works iteratively through a table of standard parent map scales set up for the mapping project (Table 2). The first step is to use the text placement based parent scale calculation described above to determine the starting point in the standard scales table. In the example, the seed parent scale calculated was 1:17425, so CAMPS chooses the next largest scale, 1:16000, from the standard scales table as the actual initial parent scale, and does the inset detection and delineation using that initial parent scale. The first sheet configuration is saved and CAMPS goes to the next largest scale in the standard scales table and makes it the parent scale for the second sheet configuration. Inset detection and delineation is repeated for the second parent scale and the configuration is saved, then compared to the first configuration. If the second configuration results in a higher number of total sheets, then iterative configuration is stopped and the first configuration is used to make the maps. If the second configuration results in fewer or the same total sheets, a third configuration will be prepared using the next largest parent scale, and that configuration will then be compared to the second. The process continues in this manner until a configuration with more total sheets than the previous configuration is made. At that point it terminates and the next to last configuration is used. If the process reaches the largest parent scale on the table, that configuration is used. Throughout the iterations, two trends are operating that will tend to arrive at the best combination of parent and inset sheets. First, each step tries a larger parent scale, which will tend to reduce the number of inset sheets. Second, the process stops where the total number of sheets is at a minimum. For the example in Table 2, iteration ends after the third configuration, and the second configuration is used to make the map.

14 Configuration Parent Scale Parent Sheets Inset Sheets Total Sheets Table 2: A table of standard parent scales showing the results of three iterations of sheet configuration. Configuration 2 results in the fewest total sheets. Discussion The CAMPS automated scale calculation, inset detection, and inset delineation algorithms described in this paper have now been used to produce a variety of multiple sheet maps of many types of geographic entities counties, county subdivisions, large and small incorporated cities, American Indian reservations, and several types of census data collection units. In general they are effective in producing useful and legible maps. However, nationwide map production for a variety of entities encounters many difficult and unusual geographic situations. Problems often arise when the analysis layer does not truly represent the nature of the density pattern for the entire map, as when the analysis layer contains only a few features or the features have an extremely large range in size. For instance, an entity to be mapped might contain only ten analysis features, three of which are small polygons about the size of city blocks, while the other seven are all very large, each perhaps many square miles in size. The ideal scale of the second or third smallest feature, the one most likely chosen as starting parent scale, is far too large for the entire map, resulting in an excess number of sheets. Even the iterative sheet configuration process will not ameliorate this problem because the starting point for the parent scale is already too large and at further iterations it can only get larger. The problem is to be able to detect these situations, so that the parent scale calculation can be short circuited to start the iterations at a smaller parent scale and probably produce a better map. At other times, there may be an important layer whose features are more dense than the analysis layer features, such as a collection of short street features where the analysis census blocks are much larger. It may be worthwhile to do the initial parent scale analysis on more than one type of feature. Map users have occasionally found difficulty in using maps with whole geography insets. The highly irregular shapes that sometimes result when insets are formed by clustering together analysis features can be hard to relate to the rest of the map. Making the inset area bounds conform where possible to a compact, pre-defined geographic entity such as a block group, census tract, or even an incorporated city should help orient the reader. This paper has described only the use of area features as the basis for scale calculation and inset delineation. At this time CAMPS can also do these operations based on point features, such as housing unit locations. Dense clusters are built from the point features themselves in the same way they are built from the polygon centroids. Point-based insets can only be delineated with rectangles that bound the dense areas. There is a danger that

15 these insets, magnified enough to show the points clearly, will not include within their bounds other types of features that might provide orientation. As the number of map projects successfully completed with CAMPS grows, so does the storehouse of knowledge that can be used to evaluate the cartographic intelligence of these automated map decision making techniques. In fact, the process eventually may be enhanced by data from past projects to produce better and faster results. CAMPS developers continue to modify and shape the system in response to problems with current mapping projects and needs of future projects, building mapping software that more closely imitates the ingenuity and resourcefulness of the human cartographer. REFERENCES Beard, C., and Robbins, A. (1990) Scale Determination and Inset Selection within a Totally Automated Map Production System. Cartography and Geographic Information Systems, 17, 1, pp Ester, M., Kriegel, H.-P., Sander, J., and Xu, X. (1996) A Density-Based Algorithm for Discovering Clusters in Large Spatial Databases with Noise, Proceedings of 2 nd International Conference on Knowledge Discovery and Data Mining. Portland, OR. Li, Z. (2007) Algorithmic Foundation of Multi-Scale Spatial Representation. Boca Raton: CRC Press, pp Muehrcke, P. (1986) Map Use Reading, Analysis, and Interpretation, 2ed. Madison: JP Publications, pp Trainor, T. (1990) Fully Automated Cartography: A Major Transition at the Census Bureau. Cartography and Geographic Information Systems, 17, 1, pp William G. Thompson, Computer Mapping Specialist, Geography Division, U.S. Census Bureau. Washington, DC E- mail:<william.g.thompson@census.gov>.

PRODUCING MILLIONS OF MAPS FOR THE UNITED STATES 2010 DECENNIAL CENSUS*

PRODUCING MILLIONS OF MAPS FOR THE UNITED STATES 2010 DECENNIAL CENSUS* PRODUCING MILLIONS OF MAPS FOR THE UNITED STATES 2010 DECENNIAL CENSUS* M. Schell a, S. Spahlinger b a U.S. Census Bureau, 4700 Silver Hill Rd, Washington DC 20233-7400 matthew.c.schell@census.gov b U.S.

More information

Spatial Analysis using Vector GIS THE GOAL: PREPARATION:

Spatial Analysis using Vector GIS THE GOAL: PREPARATION: PLAN 512 GIS FOR PLANNERS Department of Urban and Environmental Planning University of Virginia Fall 2006 Prof. David L. Phillips Spatial Analysis using Vector GIS THE GOAL: This tutorial explores some

More information

Introducing GIS analysis

Introducing GIS analysis 1 Introducing GIS analysis GIS analysis lets you see patterns and relationships in your geographic data. The results of your analysis will give you insight into a place, help you focus your actions, or

More information

Geographic Products and Data. Improvements in Spatial Accuracy and Accessing Data

Geographic Products and Data. Improvements in Spatial Accuracy and Accessing Data Geographic Products and Data Improvements in Spatial Accuracy and Accessing Data How it Began TIGER was internally developed to support the 1990 Decennial Census operations Used data sources such as USGS

More information

The 2010 Census Successful Because of GIS

The 2010 Census Successful Because of GIS The 2010 Census Successful Because of GIS Timothy F. Trainor Chief, Geography Division, U.S. Census Bureau Vice President, International Cartographic Association Establishing the Framework of the Operation

More information

CHAPTER 9 DATA DISPLAY AND CARTOGRAPHY

CHAPTER 9 DATA DISPLAY AND CARTOGRAPHY CHAPTER 9 DATA DISPLAY AND CARTOGRAPHY 9.1 Cartographic Representation 9.1.1 Spatial Features and Map Symbols 9.1.2 Use of Color 9.1.3 Data Classification 9.1.4 Generalization Box 9.1 Representations 9.2

More information

Introduction to Uncertainty and Treatment of Data

Introduction to Uncertainty and Treatment of Data Introduction to Uncertainty and Treatment of Data Introduction The purpose of this experiment is to familiarize the student with some of the instruments used in making measurements in the physics laboratory,

More information

Iowa Department of Transportation Office of Transportation Data GIS / CAD Integration

Iowa Department of Transportation Office of Transportation Data GIS / CAD Integration Iowa Department of Transportation Office of Transportation Data GIS / CAD Integration From GIS data to CAD graphics - Iowa DOT's workflow utilizing GeoMedia and MicroStation to develop map products. Mark

More information

Census Geography, Geographic Standards, and Geographic Information

Census Geography, Geographic Standards, and Geographic Information Census Geography, Geographic Standards, and Geographic Information Michael Ratcliffe Geography Division US Census Bureau New Mexico State Data Center Data Users Conference November 19, 2015 Today s Presentation

More information

ZIP Code Tabulation Areas For Census 2000

ZIP Code Tabulation Areas For Census 2000 ZIP Code Tabulation Areas For Census 2000 NCHS, CDC Andrew Flora June 13, 2000 TIGER Operations Branch Geography Division U S C E N S U S B U R E A U Helping You Make Informed Decisions ZIP Code Tabulations

More information

Geographic Information Systems (GIS) in Environmental Studies ENVS Winter 2003 Session III

Geographic Information Systems (GIS) in Environmental Studies ENVS Winter 2003 Session III Geographic Information Systems (GIS) in Environmental Studies ENVS 6189 3.0 Winter 2003 Session III John Sorrell York University sorrell@yorku.ca Session Purpose: To discuss the various concepts of space,

More information

Theory, Concepts and Terminology

Theory, Concepts and Terminology GIS Workshop: Theory, Concepts and Terminology 1 Theory, Concepts and Terminology Suggestion: Have Maptitude with a map open on computer so that we can refer to it for specific menu and interface items.

More information

Distributed Clustering and Local Regression for Knowledge Discovery in Multiple Spatial Databases

Distributed Clustering and Local Regression for Knowledge Discovery in Multiple Spatial Databases Distributed Clustering and Local Regression for Knowledge Discovery in Multiple Spatial Databases Aleksandar Lazarevic, Dragoljub Pokrajac, Zoran Obradovic School of Electrical Engineering and Computer

More information

Hennig, B.D. and Dorling, D. (2014) Mapping Inequalities in London, Bulletin of the Society of Cartographers, 47, 1&2,

Hennig, B.D. and Dorling, D. (2014) Mapping Inequalities in London, Bulletin of the Society of Cartographers, 47, 1&2, Hennig, B.D. and Dorling, D. (2014) Mapping Inequalities in London, Bulletin of the Society of Cartographers, 47, 1&2, 21-28. Pre- publication draft without figures Mapping London using cartograms The

More information

The 2020 Census Geographic Partnership Opportunities

The 2020 Census Geographic Partnership Opportunities The 2020 Census Geographic Partnership Opportunities Web Adams Geographer, U.S. Census Bureau New York Regional Office 1 Geographic Partnership Opportunities The 2020 Census Local Update of Census Addresses

More information

Digitization in a Census

Digitization in a Census Topics Connectivity of Geographic Data Sketch Maps Data Organization and Geodatabases Managing a Digitization Project Quality and Control Topology Metadata 1 Topics (continued) Interactive Selection Snapping

More information

Quality and Coverage of Data Sources

Quality and Coverage of Data Sources Quality and Coverage of Data Sources Objectives Selecting an appropriate source for each item of information to be stored in the GIS database is very important for GIS Data Capture. Selection of quality

More information

GIS Lecture 5: Spatial Data

GIS Lecture 5: Spatial Data GIS Lecture 5: Spatial Data GIS 1 Outline Vector Data Formats Raster Data Formats Map Projections Coordinate Systems US Census geographic files US Census data files GIS Data Sources GIS 2 Vector Data Formats

More information

The History Behind Census Geography

The History Behind Census Geography The History Behind Census Geography Michael Ratcliffe Geography Division US Census Bureau Kentucky State Data Center Affiliate Meeting August 5, 2016 Today s Presentation A brief look at the history behind

More information

Analysis of Change in Land Use around Future Core Transit Corridors: Austin, TX, Eric Porter May 3, 2012

Analysis of Change in Land Use around Future Core Transit Corridors: Austin, TX, Eric Porter May 3, 2012 Analysis of Change in Land Use around Future Core Transit Corridors: Austin, TX, 1990-2006 PROBLEM DEFINITION Eric Porter May 3, 2012 This study examines the change in land use from 1990 to 2006 in the

More information

Utilizing Data from American FactFinder with TIGER/Line Shapefiles in ArcGIS

Utilizing Data from American FactFinder with TIGER/Line Shapefiles in ArcGIS Utilizing Data from American FactFinder with TIGER/Line Shapefiles in ArcGIS Web Adams, GISP Data Dissemination Specialist U.S. Census Bureau New York Regional Office 1 What We Do Decennial Census Every

More information

High Density Area Boundary Delineation

High Density Area Boundary Delineation High Density Area Boundary Delineation John Hathaway, John Wilson, and Brent Pulsipher (PNNL) Sean A. McKenna and Barry Roberts (SNL) 2008 Partners in Environmental Technology Technical Symposium & Workshop

More information

SPATIAL DATA MINING. Ms. S. Malathi, Lecturer in Computer Applications, KGiSL - IIM

SPATIAL DATA MINING. Ms. S. Malathi, Lecturer in Computer Applications, KGiSL - IIM SPATIAL DATA MINING Ms. S. Malathi, Lecturer in Computer Applications, KGiSL - IIM INTRODUCTION The main difference between data mining in relational DBS and in spatial DBS is that attributes of the neighbors

More information

2011 Built-up Areas - Methodology and Guidance

2011 Built-up Areas - Methodology and Guidance 2011 Built-up Areas - Methodology and Guidance June 2013 Version: 2013 v1 Office for National Statistics 2013 Contents 1. Introduction... 3 2. Methodology... 3 2.1 Identifying built-up areas for the 2011

More information

CHAPTER 8 INTRODUCTION TO STATISTICAL ANALYSIS

CHAPTER 8 INTRODUCTION TO STATISTICAL ANALYSIS CHAPTER 8 INTRODUCTION TO STATISTICAL ANALYSIS LEARNING OBJECTIVES: After studying this chapter, a student should understand: notation used in statistics; how to represent variables in a mathematical form

More information

THE CREATION OF A DIGITAL CARTOGRAPHIC DATABASE FOR LOCATOR MAPSl

THE CREATION OF A DIGITAL CARTOGRAPHIC DATABASE FOR LOCATOR MAPSl THE CREATION OF A DIGITAL CARTOGRAPHIC DATABASE FOR LOCATOR MAPSl Karen A. Mulcahy Hunter College ABSTRACT. This paper reports on the procedures and problems associated with the development ofa digital

More information

Outline. Chapter 1. A history of products. What is ArcGIS? What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work?

Outline. Chapter 1. A history of products. What is ArcGIS? What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work? Outline Chapter 1 Introducing ArcGIS What is GIS? Some GIS applications Introducing the ArcGIS products How does GIS work? Basic data formats The ArcCatalog interface 1-1 1-2 A history of products Arc/Info

More information

Predictive Modelling of Ag, Au, U, and Hg Ore Deposits in West Texas Carl R. Stockmeyer. December 5, GEO 327G

Predictive Modelling of Ag, Au, U, and Hg Ore Deposits in West Texas Carl R. Stockmeyer. December 5, GEO 327G Predictive Modelling of Ag, Au, U, and Hg Ore Deposits in West Texas Carl R. Stockmeyer December 5, 2013 - GEO 327G Objectives and Motivations The goal of this project is to use ArcGIS to create models

More information

Visualizing Census Data in GIS. Andrew Rowan, Ph.D. Director, NJ Office of GIS

Visualizing Census Data in GIS. Andrew Rowan, Ph.D. Director, NJ Office of GIS Visualizing Census Data in GIS Andrew Rowan, Ph.D. Director, NJ Office of GIS Outline VERY accelerated cartography primer Software choices Demos/how-to ArcGIS Desktop (formerly ArcView) ArcGIS Online Notes

More information

DRAFT RURAL-URBAN POPULATION CHANGE IN PUERTO RICO, 1990 TO 2000

DRAFT RURAL-URBAN POPULATION CHANGE IN PUERTO RICO, 1990 TO 2000 DRAFT RURAL-URBAN POPULATION CHANGE IN PUERTO RICO, 1990 TO 2000 Mei-Ling Freeman Geographic Standards and Criteria Branch Geography Division US Census Bureau For presentation at the Western Regional Science

More information

Preparing Spatial Data

Preparing Spatial Data 13 CHAPTER 2 Preparing Spatial Data Assessing Your Spatial Data Needs 13 Assessing Your Attribute Data 13 Determining Your Spatial Data Requirements 14 Locating a Source of Spatial Data 14 Performing Common

More information

WeatherHawk Weather Station Protocol

WeatherHawk Weather Station Protocol WeatherHawk Weather Station Protocol Purpose To log atmosphere data using a WeatherHawk TM weather station Overview A weather station is setup to measure and record atmospheric measurements at 15 minute

More information

The History Behind Census Geography

The History Behind Census Geography The History Behind Census Geography Michael Ratcliffe Geography Division US Census Bureau Tennessee State Data Center August 8, 2017 Today s Presentation A brief look at the history behind some of the

More information

Improving TIGER, Hidden Costs: The Uncertain Correspondence of 1990 and 2010 U.S. Census Geography

Improving TIGER, Hidden Costs: The Uncertain Correspondence of 1990 and 2010 U.S. Census Geography Improving TIGER, Hidden Costs: The Uncertain Correspondence of 1990 and 2010 U.S. Census Geography Jonathan P. Schroeder ABSTRACT: The U.S. Census Bureau supplies GIS-compatible definitions of census geographic

More information

CS 453 Operating Systems. Lecture 7 : Deadlock

CS 453 Operating Systems. Lecture 7 : Deadlock CS 453 Operating Systems Lecture 7 : Deadlock 1 What is Deadlock? Every New Yorker knows what a gridlock alert is - it s one of those days when there is so much traffic that nobody can move. Everything

More information

Geography 281 Map Making with GIS Project Four: Comparing Classification Methods

Geography 281 Map Making with GIS Project Four: Comparing Classification Methods Geography 281 Map Making with GIS Project Four: Comparing Classification Methods Thematic maps commonly deal with either of two kinds of data: Qualitative Data showing differences in kind or type (e.g.,

More information

Traffic accidents and the road network in SAS/GIS

Traffic accidents and the road network in SAS/GIS Traffic accidents and the road network in SAS/GIS Frank Poppe SWOV Institute for Road Safety Research, the Netherlands Introduction The first figure shows a screen snapshot of SAS/GIS with part of the

More information

What are the five components of a GIS? A typically GIS consists of five elements: - Hardware, Software, Data, People and Procedures (Work Flows)

What are the five components of a GIS? A typically GIS consists of five elements: - Hardware, Software, Data, People and Procedures (Work Flows) LECTURE 1 - INTRODUCTION TO GIS Section I - GIS versus GPS What is a geographic information system (GIS)? GIS can be defined as a computerized application that combines an interactive map with a database

More information

Sampling Populations limited in the scope enumerate

Sampling Populations limited in the scope enumerate Sampling Populations Typically, when we collect data, we are somewhat limited in the scope of what information we can reasonably collect Ideally, we would enumerate each and every member of a population

More information

Outline. 15. Descriptive Summary, Design, and Inference. Descriptive summaries. Data mining. The centroid

Outline. 15. Descriptive Summary, Design, and Inference. Descriptive summaries. Data mining. The centroid Outline 15. Descriptive Summary, Design, and Inference Geographic Information Systems and Science SECOND EDITION Paul A. Longley, Michael F. Goodchild, David J. Maguire, David W. Rhind 2005 John Wiley

More information

Document Title. Estimating the Value of Partner Contributions to Flood Mapping Projects. Blue Book

Document Title. Estimating the Value of Partner Contributions to Flood Mapping Projects. Blue Book Document Title Estimating the Value of Partner Contributions to Flood Mapping Projects Blue Book Version 1.1 November 2006 Table of Contents 1. Background...1 2. Purpose...1 3. Overview of Approach...2

More information

Boundary and Annexation Survey (BAS)

Boundary and Annexation Survey (BAS) Boundary and Annexation Survey (BAS) New Mexico SDC Meeting Chris Wingate Geography Division U.S. Census Bureau 1 Agenda Boundary and Annexation Survey (BAS) BAS Overview American Community Survey (ACS)

More information

1. Define map: 2. Name and define the five concepts that guide geographers a) 3. Define cartography: MAPS 4. A map serves two purposes a)

1. Define map: 2. Name and define the five concepts that guide geographers a) 3. Define cartography: MAPS 4. A map serves two purposes a) 1. Define map: 2. Name and define the five concepts that guide geographers c) d) e) 3. Define cartography: MAPS 4. A map serves two purposes 5. Give two examples of early mapmaking and its (unusual?) materials

More information

OBEUS. (Object-Based Environment for Urban Simulation) Shareware Version. Itzhak Benenson 1,2, Slava Birfur 1, Vlad Kharbash 1

OBEUS. (Object-Based Environment for Urban Simulation) Shareware Version. Itzhak Benenson 1,2, Slava Birfur 1, Vlad Kharbash 1 OBEUS (Object-Based Environment for Urban Simulation) Shareware Version Yaffo model is based on partition of the area into Voronoi polygons, which correspond to real-world houses; neighborhood relationship

More information

Clustering. CSL465/603 - Fall 2016 Narayanan C Krishnan

Clustering. CSL465/603 - Fall 2016 Narayanan C Krishnan Clustering CSL465/603 - Fall 2016 Narayanan C Krishnan ckn@iitrpr.ac.in Supervised vs Unsupervised Learning Supervised learning Given x ", y " "%& ', learn a function f: X Y Categorical output classification

More information

An Information Model for Maps: Towards Cartographic Production from GIS Databases

An Information Model for Maps: Towards Cartographic Production from GIS Databases An Information Model for s: Towards Cartographic Production from GIS Databases Aileen Buckley, Ph.D. and Charlie Frye Senior Cartographic Researchers, ESRI Barbara Buttenfield, Ph.D. Professor, University

More information

a system for input, storage, manipulation, and output of geographic information. GIS combines software with hardware,

a system for input, storage, manipulation, and output of geographic information. GIS combines software with hardware, Introduction to GIS Dr. Pranjit Kr. Sarma Assistant Professor Department of Geography Mangaldi College Mobile: +91 94357 04398 What is a GIS a system for input, storage, manipulation, and output of geographic

More information

ArcGIS 9 ArcGIS StreetMap Tutorial

ArcGIS 9 ArcGIS StreetMap Tutorial ArcGIS 9 ArcGIS StreetMap Tutorial Copyright 2001 2008 ESRI All Rights Reserved. Printed in the United States of America. The information contained in this document is the exclusive property of ESRI. This

More information

www.goldensoftware.com Why Create a Thematic Map? A thematic map visually represents the geographic distribution of data. MapViewer will help you to: understand demographics define sales or insurance territories

More information

3. Give two examples of early mapmaking and its (unusual?) materials for the maps. (a)

3. Give two examples of early mapmaking and its (unusual?) materials for the maps. (a) Thinking Geographically: Key Issue 1 How Do Geographers Describe Where Things Are? Rubenstein Ch. 1 pp. 4 12 1. Define map: 2. Define cartography: MAPS 3. Give two examples of early mapmaking and its (unusual?)

More information

Policy Paper Alabama Primary Care Service Areas

Policy Paper Alabama Primary Care Service Areas Aim and Purpose Policy Paper Alabama Primary Care Service Areas Produced by the Office for Family Health Education & Research, UAB School of Medicine To create primary care rational service areas (PCSA)

More information

ArcGIS for Desktop. ArcGIS for Desktop is the primary authoring tool for the ArcGIS platform.

ArcGIS for Desktop. ArcGIS for Desktop is the primary authoring tool for the ArcGIS platform. ArcGIS for Desktop ArcGIS for Desktop ArcGIS for Desktop is the primary authoring tool for the ArcGIS platform. Beyond showing your data as points on a map, ArcGIS for Desktop gives you the power to manage

More information

Chapter 1 Learning Guide Thinking Geographically

Chapter 1 Learning Guide Thinking Geographically Chapter 1 Learning Guide Thinking Geographically Key Issue 1 How Do Geographers Address Where Things Are? Pgs. 2 13 1. Define map: 2. Define cartography: Maps 3. Give an example of early mapmaking and

More information

Lecture 10 Mapping Quantities: Dot Density Maps

Lecture 10 Mapping Quantities: Dot Density Maps Lecture 10 Mapping Quantities: Dot Density Maps Introduction Creating maps of features based on quantity are some of the most common and important types of maps. In order to create maps that show quantity

More information

Geographical Information Processing for Cultural Resources

Geographical Information Processing for Cultural Resources Geographical Information Processing for Cultural Resources Assoc. Prof. Hirohisa Mori, Department of Geography, Graduate School of Literature and Human Sciences, Osaka City University 1. What are the Problems?

More information

Topic Contents. Factoring Methods. Unit 3: Factoring Methods. Finding the square root of a number

Topic Contents. Factoring Methods. Unit 3: Factoring Methods. Finding the square root of a number Topic Contents Factoring Methods Unit 3 The smallest divisor of an integer The GCD of two numbers Generating prime numbers Computing prime factors of an integer Generating pseudo random numbers Raising

More information

The Choropleth Map Slide #2: Choropleth mapping enumeration units

The Choropleth Map Slide #2: Choropleth mapping enumeration units The Choropleth Map Slide #2: Choropleth mapping is a common technique for representing enumeration data These are maps where enumeration units, such as states or countries, are shaded a particular color

More information

GIS FOR PLANNING. Course Overview. Schedule. Instructor. Prerequisites. Urban Planning 792 Thursday s 5:30-8:10pm SARUP 158

GIS FOR PLANNING. Course Overview. Schedule. Instructor. Prerequisites. Urban Planning 792 Thursday s 5:30-8:10pm SARUP 158 GIS FOR PLANNING Urban Planning 792 Thursday s 5:30-8:10pm SARUP 158 Schedule Class/Lab - SARUP 158 Thursdays 5:30pm - 8:10pm Office Hours - By Appointment Project Ideas - Week 4 Final - 5/10/2018 Instructor

More information

Sample Questions PREPARING FOR THE AP (AB) CALCULUS EXAMINATION. tangent line, a+h. a+h

Sample Questions PREPARING FOR THE AP (AB) CALCULUS EXAMINATION. tangent line, a+h. a+h Sample Questions PREPARING FOR THE AP (AB) CALCULUS EXAMINATION B B A B tangent line,, a f '(a) = lim h 0 f(a + h) f(a) h a+h a b b f(x) dx = lim [f(x ) x + f(x ) x + f(x ) x +...+ f(x ) x ] n a n B B

More information

Implementing Visual Analytics Methods for Massive Collections of Movement Data

Implementing Visual Analytics Methods for Massive Collections of Movement Data Implementing Visual Analytics Methods for Massive Collections of Movement Data G. Andrienko, N. Andrienko Fraunhofer Institute Intelligent Analysis and Information Systems Schloss Birlinghoven, D-53754

More information

Electric Field Mapping

Electric Field Mapping Electric Field Mapping Objectives To determine the equipotential lines and the corresponding electric field lines for a variety of arrangements of conductors in a plane. Theory The concept of an electric

More information

presents challenges related to utility infrastructure planning. Many of these challenges

presents challenges related to utility infrastructure planning. Many of these challenges 1 Introduction: - a. Purpose According to U.S. Census Bureau the population of stark county was 367,585 in 1990, and in 2000 it was increase to 378,098. Thus County is experiencing a growth that presents

More information

Determination of Density 1

Determination of Density 1 Introduction Determination of Density 1 Authors: B. D. Lamp, D. L. McCurdy, V. M. Pultz and J. M. McCormick* Last Update: February 1, 2013 Not so long ago a statistical data analysis of any data set larger

More information

Name: Lab Partner: Section: In this experiment error analysis and propagation will be explored.

Name: Lab Partner: Section: In this experiment error analysis and propagation will be explored. Chapter 2 Error Analysis Name: Lab Partner: Section: 2.1 Purpose In this experiment error analysis and propagation will be explored. 2.2 Introduction Experimental physics is the foundation upon which the

More information

DIRECTED NUMBERS ADDING AND SUBTRACTING DIRECTED NUMBERS

DIRECTED NUMBERS ADDING AND SUBTRACTING DIRECTED NUMBERS DIRECTED NUMBERS POSITIVE NUMBERS These are numbers such as: 3 which can be written as +3 46 which can be written as +46 14.67 which can be written as +14.67 a which can be written as +a RULE Any number

More information

The Dance Hall Goes in What School District?

The Dance Hall Goes in What School District? The Dance Hall Goes in What School District? Vern C. Svatos Jarrod S. Doucette Abstract This paper presents the results of a GIS mapping effort created for the Delaware State Department of Education using

More information

Geography and Usability of the American Community Survey. Seth Spielman Assistant Professor of Geography University of Colorado

Geography and Usability of the American Community Survey. Seth Spielman Assistant Professor of Geography University of Colorado Geography and Usability of the American Community Survey Seth Spielman Assistant Professor of Geography University of Colorado Goals 1. To convince you that the margins of error from the American Community

More information

Massachusetts Tests for Educator Licensure (MTEL )

Massachusetts Tests for Educator Licensure (MTEL ) Massachusetts Tests for Educator Licensure (MTEL ) BOOKLET 2 Mathematics Subtest Copyright 2010 Pearson Education, Inc. or its affiliate(s). All rights reserved. Evaluation Systems, Pearson, P.O. Box 226,

More information

Chapter 3: Numbers in the Real World Lecture notes Math 1030 Section C

Chapter 3: Numbers in the Real World Lecture notes Math 1030 Section C Section C.1: Significant Digits Significant digits The digits in a number that represents actual measurements and therefore have meaning are called significant digits. Significant digits: Nonzero digits.

More information

2 One-dimensional motion with constant acceleration

2 One-dimensional motion with constant acceleration 2 One-dimensional motion with constant acceleration Experiment objectives: 1. Achieve a better understanding of how to solve position, velocity and acceleration problems in one-dimensional motion with

More information

Research on Topographic Map Updating

Research on Topographic Map Updating Research on Topographic Map Updating Ivana Javorovic Remote Sensing Laboratory Ilica 242, 10000 Zagreb, Croatia Miljenko Lapaine University of Zagreb, Faculty of Geodesy Kaciceva 26, 10000 Zagreb, Croatia

More information

Targeted LiDAR use in Support of In-Office Address Canvassing (IOAC) March 13, 2017 MAPPS, Silver Spring MD

Targeted LiDAR use in Support of In-Office Address Canvassing (IOAC) March 13, 2017 MAPPS, Silver Spring MD Targeted LiDAR use in Support of In-Office Address Canvassing (IOAC) March 13, 2017 MAPPS, Silver Spring MD Imagery, LiDAR, and Blocks In 2011, the GEO commissioned independent subject matter experts (Jensen,

More information

Grade 8 Chapter 7: Rational and Irrational Numbers

Grade 8 Chapter 7: Rational and Irrational Numbers Grade 8 Chapter 7: Rational and Irrational Numbers In this chapter we first review the real line model for numbers, as discussed in Chapter 2 of seventh grade, by recalling how the integers and then the

More information

GIS (GEOGRAPHIC INFORMATION SYSTEMS)

GIS (GEOGRAPHIC INFORMATION SYSTEMS) GIS (GEOGRAPHIC INFORMATION SYSTEMS) 1 1. DEFINITION SYSTEM Any organised assembly of resources and procedures united and regulated by interaction or interdependence to complete a set of specific functions.

More information

PLANNING FOR THE FUTURE: THE GEOGRAPHIC SUPPORT SYSTEM INITIATIVE FOR THE U.S. CENSUS BUREAU

PLANNING FOR THE FUTURE: THE GEOGRAPHIC SUPPORT SYSTEM INITIATIVE FOR THE U.S. CENSUS BUREAU PLANNING FOR THE FUTURE: THE GEOGRAPHIC SUPPORT SYSTEM INITIATIVE FOR THE U.S. CENSUS BUREAU Tim Trainor Geography Division, U.S. Census Bureau, Washington, DC. 20233 timothy.f.trainor@census.gov KEY WORDS:

More information

Physics 11 (Fall 2012) Chapter 1: Representing Motion

Physics 11 (Fall 2012) Chapter 1: Representing Motion Physics 11 (Fall 2012) Chapter 1: Representing Motion Anyone who has never made a mistake has never tried anything new. Albert Einstein Experience is the name that everyone gives to his mistakes. Oscar

More information

Laboratory Exercise Possible Zara Locations in Utah

Laboratory Exercise Possible Zara Locations in Utah Brigham Young University BYU ScholarsArchive Engineering Applications of GIS - Laboratory Exercises Civil and Environmental Engineering 2017 Laboratory Exercise Possible Zara Locations in Utah Garlick

More information

Overview. GIS Data Output Methods

Overview. GIS Data Output Methods Overview GIS Output Formats ENV208/ENV508 Applied GIS Week 2: Making maps, data visualisation, and GIS output GIS Output Map Making Types of Maps Key Elements Table Graph Statistics Maps Map Making Maps

More information

Petrel TIPS&TRICKS from SCM

Petrel TIPS&TRICKS from SCM Petrel TIPS&TRICKS from SCM Knowledge Worth Sharing Fault Model Quality Control Most Petrel projects are faulted. This means that fault models must be built and then checked for accuracy in almost every

More information

Application of GIS in Public Transportation Case-study: Almada, Portugal

Application of GIS in Public Transportation Case-study: Almada, Portugal Case-study: Almada, Portugal Doutor Jorge Ferreira 1 FSCH/UNL Av Berna 26 C 1069-061 Lisboa, Portugal +351 21 7908300 jr.ferreira@fcsh.unl.pt 2 FSCH/UNL Dra. FCSH/UNL +351 914693843, leite.ines@gmail.com

More information

ENV208/ENV508 Applied GIS. Week 2: Making maps, data visualisation, and GIS output

ENV208/ENV508 Applied GIS. Week 2: Making maps, data visualisation, and GIS output ENV208/ENV508 Applied GIS Week 2: Making maps, data visualisation, and GIS output Overview GIS Output Map Making Types of Maps Key Elements GIS Output Formats Table Graph Statistics Maps Map Making Maps

More information

A BASE SYSTEM FOR MICRO TRAFFIC SIMULATION USING THE GEOGRAPHICAL INFORMATION DATABASE

A BASE SYSTEM FOR MICRO TRAFFIC SIMULATION USING THE GEOGRAPHICAL INFORMATION DATABASE A BASE SYSTEM FOR MICRO TRAFFIC SIMULATION USING THE GEOGRAPHICAL INFORMATION DATABASE Yan LI Ritsumeikan Asia Pacific University E-mail: yanli@apu.ac.jp 1 INTRODUCTION In the recent years, with the rapid

More information

Merging statistics and geospatial information

Merging statistics and geospatial information Merging statistics and geospatial information Demography / Commuting / Spatial planning / Registers Mirosław Migacz Chief GIS Specialist Janusz Dygaszewicz Director Central Statistical Office of Poland

More information

Emerging Issues in Geographic Information Science (GEP680): Projections, Scale, Accuracy, and Interpolation Lehman College, Spring 2017

Emerging Issues in Geographic Information Science (GEP680): Projections, Scale, Accuracy, and Interpolation Lehman College, Spring 2017 Emerging Issues in Geographic Information Science (GEP680): Projections, Scale, Accuracy, and Interpolation Lehman College, Spring 2017 Instructor: Gary Ostroff, P.E., Adjunct Lecturer E-mail: Gary.Ostroff@lehman.cuny.edu;

More information

GEOGRAPHIC INFORMATION SYSTEMS Session 8

GEOGRAPHIC INFORMATION SYSTEMS Session 8 GEOGRAPHIC INFORMATION SYSTEMS Session 8 Introduction Geography underpins all activities associated with a census Census geography is essential to plan and manage fieldwork as well as to report results

More information

A methodology on natural occurring lines segmentation and generalization

A methodology on natural occurring lines segmentation and generalization A methodology on natural occurring lines segmentation and generalization Vasilis Mitropoulos, Byron Nakos mitrovas@hotmail.com bnakos@central.ntua.gr School of Rural & Surveying Engineering National Technical

More information

DATA DISAGGREGATION BY GEOGRAPHIC

DATA DISAGGREGATION BY GEOGRAPHIC PROGRAM CYCLE ADS 201 Additional Help DATA DISAGGREGATION BY GEOGRAPHIC LOCATION Introduction This document provides supplemental guidance to ADS 201.3.5.7.G Indicator Disaggregation, and discusses concepts

More information

NR402 GIS Applications in Natural Resources

NR402 GIS Applications in Natural Resources NR402 GIS Applications in Natural Resources Lesson 1 Introduction to GIS Eva Strand, University of Idaho Map of the Pacific Northwest from http://www.or.blm.gov/gis/ Welcome to NR402 GIS Applications in

More information

GIS APPLICATIONS IN SOIL SURVEY UPDATES

GIS APPLICATIONS IN SOIL SURVEY UPDATES GIS APPLICATIONS IN SOIL SURVEY UPDATES ABSTRACT Recent computer hardware and GIS software developments provide new methods that can be used to update existing digital soil surveys. Multi-perspective visualization

More information

PHY222 Lab 2 - Electric Fields Mapping the Potential Curves and Field Lines of an Electric Dipole

PHY222 Lab 2 - Electric Fields Mapping the Potential Curves and Field Lines of an Electric Dipole Print Your Name PHY222 Lab 2 - Electric Fields Mapping the Potential Curves and Field Lines of an Electric Dipole Print Your Partners' Names Instructions January 23, 2015 Before lab, read the Introduction,

More information

Gis Unit TropMed Mahidol U.

Gis Unit TropMed Mahidol U. Gis Unit TropMed Mahidol U. Database Information System Database Concepts 1. Non-Spatial Database table, document.. 2. Spatial Database locational databases (geographic) + attribute databases Gis Unit

More information

MINNESOTA DEPARTMENT OF TRANSPORTATION OFFICE OF LAND MANAGEMENT SURVEYING AND MAPPING SECTION PHOTOGRAMMETRY UNIT

MINNESOTA DEPARTMENT OF TRANSPORTATION OFFICE OF LAND MANAGEMENT SURVEYING AND MAPPING SECTION PHOTOGRAMMETRY UNIT JULY 1, 2001 MINNESOTA DEPARTMENT OF TRANSPORTATION OFFICE OF LAND MANAGEMENT SURVEYING AND MAPPING SECTION PHOTOGRAMMETRY UNIT SPECIAL PROVISIONS FOR: GROUP 3: DIGITAL TERRAIN MODEL/DIGITAL ELEVATION

More information

US Census Bureau Geographic Entities and Concepts. Geography Division

US Census Bureau Geographic Entities and Concepts. Geography Division US Census Bureau Geographic Entities and Concepts Geography Division Geographic Concepts Addresses vs. Geographic features and entities Legal/Administrative vs. Statistical Nesting relationships (or the

More information

Equipotential Lines and Electric Fields

Equipotential Lines and Electric Fields Physics Equipotential Lines and Electric Fields Plotting the Electric Field MATERIALS AND RESOURCES EACH GROUP 5 alligator clip leads 2 batteries, 9 V 2 binder clips, large computer LabQuest multimeter,

More information

Use of administrative registers for strengthening the geostatistical framework of the Census of Agriculture in Mexico

Use of administrative registers for strengthening the geostatistical framework of the Census of Agriculture in Mexico Use of administrative registers for strengthening the geostatistical framework of the Census of Agriculture in Mexico Susana Pérez INEGI, Dirección de Censos y Encuestas Agropecuarias. Avenida José María

More information

The Data Set. The Tool CMSC 734 INFORMATION VISUALIZATION APPLICATION PROJECT REPORT MARYLAND CENSUS INFORMATION ( )

The Data Set. The Tool CMSC 734 INFORMATION VISUALIZATION APPLICATION PROJECT REPORT MARYLAND CENSUS INFORMATION ( ) The Data Set CMSC 734 INFORMATION VISUALIZATION APPLICATION PROJECT REPORT MARYLAND CENSUS INFORMATION (2000 2010) Sameh Khamis Department of Computer Science University of Maryland sameh@cs.umd.edu Marcelo

More information

Huron Creek Watershed 2005 Land Use Map

Huron Creek Watershed 2005 Land Use Map Huron Creek Watershed 2005 Land Use Map Created By: Linda Kersten, 12/20/06 Created For: MTU Introduction to GIS Class (FW 5550) The Huron Creek Watershed Advisory Committee Michigan Technological University,

More information

Tutorial 8 Raster Data Analysis

Tutorial 8 Raster Data Analysis Objectives Tutorial 8 Raster Data Analysis This tutorial is designed to introduce you to a basic set of raster-based analyses including: 1. Displaying Digital Elevation Model (DEM) 2. Slope calculations

More information

Representation of Geographic Data

Representation of Geographic Data GIS 5210 Week 2 The Nature of Spatial Variation Three principles of the nature of spatial variation: proximity effects are key to understanding spatial variation issues of geographic scale and level of

More information

Fundamentals of data, graphical, and error analysis

Fundamentals of data, graphical, and error analysis Fundamentals of data, graphical, and error analysis. Data measurement and Significant Figures UTC - Physics 030L/040L Whenever we take a measurement, there are limitations to the data and how well we can

More information