GIS Test Data y. Gabriele Neyer z. September Geographic Information Systems (GIS) handle objects embedded in the

Size: px
Start display at page:

Download "GIS Test Data y. Gabriele Neyer z. September Geographic Information Systems (GIS) handle objects embedded in the"

Transcription

1 GIS Test Data y Gabriele Neyer z September Introduction Geographic Information Systems (GIS) handle objects embedded in the space. Digital satellite imagery, scanned aerial photos, elevation models and scanned maps are typical sources of geographic data sets. Graphics data is traditionally divided into two classes: vector data and raster data which is also called bitmap data. Vector data consists of points, lines, arcs and areas with topographic information associated. Often vector data sets are classied according to the data they contain. Typical classes are boundaries of states, rivers, buildings and vegetation. Raster data are a collection of pixels, organized in a series of rows. Although many organizations try to create a unique vector format and a unique raster format, up to now each country uses its own format. For an overview of the spatial data standards around the world see: spatial.html This web page is provided by the International Cartographic Association (ICA) which is working on a world spatial data standard. Thus, since there is no European spatial data standard we had to choose some important le formats for our \representative" test data sets. For raster data our choices are TIFF and GeoTIFF which is TIFF compatible. This format is a standard le format which is used and known all over the y This work was partially supported by grants from the Swiss Federal Oce for Education and Science (Projects ESPRIT IV LTR No CGAL). z Institute for Theoretical Computer Science, ETH Zurich, Switzerland, neyer@@inf.ethz.ch 1

2 world. Supplying representative vector data was a harder problem. We decided to provide vector data in AutoCAD DXF format which can be interpreted by most CAD programs. The DXF format is widely used as a least-common-denominator format. Additionally, we provide vector data in TIGER format and SDTS format since these are standard US vector data formats, the data sets cover the whole USA and are freely available. We do not \really" provide the test data sets, we only provide addresses, where the testdata can be found (for free). Since geographic maps often need a lot of space (several MB) and usually people only work with one or at most two dierent le formats, only a few people would install a library several MB large, containing a few examples of each le format. This description consists of 6 parts. In Section 2 we describe the vector data format. Section 3 describes the raster data format. In Section 4 we discuss format conversion between dierent raster and vector data formats. Section 5 describes the selected vector formats: The DXF format is described in Section 5.1, the TIGER format in Section 5.2 and the SDTS format in Section 5.3. In Section 6 we describe the selected raster data formats: The TIFF format is described in Section 6.1 and the GeoTIFF format in Section 6.2. The description is based on J.D. Murrays and W. vanrypers Encyclopedia of Graphics File Formats [MV94] and on the particular documentation of a le format. 2 Vector Data In computer graphics, vector data usually refers to a means of representing lines, polygons, or curves or any other object that can easily be drawn with lines by numerically specifying key points. The job of a program rendering this key-point data is to regenerate the lines by somehow connecting the key points or by drawing using the key points for guidance. Always associated with vector data is attribute information (such as color and line thickness information) and a set of conventions or rules allowing a program to draw the desired objects. These conventions can be either implicit or explicit and, although designed to accomplish the same goals, are generally dierent from program to program. Although vector les vary considerably in design, most contain the same basic structure: a header, a data section, and an end-of-le marker. Some structure is needed in the le to contain information global to the le and to correctly interpret the vector data at render time. The header contains information that is global to the vector le and must be read before the 2

3 remaining information in the le can be interpreted. Such information can include identication number, version number, color information as well as default attributes, which will apply to any vector data elements in the le. In the data section the vector data is organized according to certain rules. Such a vector data element can consist of a type (e.g. line, point or arc), coordinates, thickness, color, etc. Thus, vector les are useful for storing images composed of line-based elements such as lines and polygons, or those that can be decomposed into simple geometrical objects, such as text. More sophisticated formats can also store three-dimensional objects such as polyhedrons and wire frame models. The vector data can be easily scaled and manipulated to accommodate the resolution of a spectrum of output image. Additionally, they can easily be modied with simple text editing tools. Individual elements can be added, changed or removed. Usually, it is easy to render vector data and save it to a bitmap format le or to convert the data to another vector format. The disadvantages of vector formats are that vector les cannot space economically be used to store extremely complex images, such as some photographs, where color information is paramount and may vary on a pixel by pixel basis. Since each image element must be drawn individually and in sequence, reconstruction of images in vector data format may take considerably longer than reconstruction of images in raster data format. 3 Raster Data Historically, the term raster has been associated with cathode ray tube (CRT) technology and has referred to the pattern of rows the device makes when displaying an image on a picture tube. Raster-format images are therefore a collection of pixels, organized in a series of rows, which are called scan lines. Because raster output devices, by far the most popular kind available today, display images as patterns of pixels, pixel values in a bitmap are usually arranged so as to make them easy to display on certain common raster devices. A newer term for raster data is bitmap data. We will use this term from time to time. Raster data can be produced when a program renders graphics data and writes the corresponding output image to a le instead of displaying it on an output device. This is one of the reasons bitmaps and bitmaps data are often referred to as images, and bitmap data is referred to as image data. Other sources of raster data are raster devices used to work with images in the traditional sense of the word, such as scanners, cameras and other 3

4 digitizing devices. Raster les consist of a header, raster data and other information. The header typically contains information about the le version, identier, the color palette and image specic data like the number of lines per image, the number of pixels per line, the number of bits per pixel, compression type, etc. For the organization of the raster data in the le there exist various methods. The simplest is the organization of pixel values into rows or scan lines. Two other methods of le organization are strips and tiles. In the rst case the images are stored in strips, which consist of rows stored contiguously. The total image is represented by more than one strip and individual strips may be widely separated. Tiles are similar to strips in that each is a delineation of a rectangular area of an image. However, the width of a tile is variable. The pros of raster formats against vector formats are the following: Raster formats can be easily created from existing pixel data stored in an array. Furthermore, pixel values may be modied individually or as large groups by altering a palette if present. The cons is that raster les can be very large, particularly if the image contains a large number of colors. Data compression can shrink the size of pixel data, but the data must be expanded before it can be displayed and this can slow down the reading and rendering process considerably. Additionally, raster les do not scale very well. Shrinking an image by decimation can change the image in an unacceptable manner. 4 Format Conversion File conversion is a big problem when you try to convert between les of dierent basic format types raster to vector, for instance. Successful conversion between basic format types is not always possible due to the great dierences in the ways data is stored. For converting one raster format to another raster format there exist several software packages. pbmplus is a specially good tool, freely available, and designed for UNIX systems. The pbmplus software can be retrieved at the following address: ftp://ftp.x.org/r5contrib/pbmplus10dec91.tar.z Two problems can occur when converting between vector formats. The rst comes about due to dierences in the number and type of objects available in dierent vector formats. Some formats, for instance, provide support for only a few simple image elements, such as circles and rectangles. Richer 4

5 formats may also provide support for more complex elements, such as b- splines and Bezier curves. Attempting to convert a le written in a complex format rich in elements to a simpler format will result in an approximation of the original image. The second problem comes from the fact that each vector format has its own interpretation of measurements and the appearance of image elements and primitives. Rarely do two formats agree exactly on the placement and appearance of even simple image elements. Common problems are those related to line joint styles and end styles, and to centerline and centerpoint location. 5 Selected Vector Data Formats In the following we give a short overview over the vector data formats we selected: 5.1 DXF File Format The AutoCAD DXF and the AutoCAD DXB formats are associated with the CAD application AutoCAD, created and maintained by Autodesk. DXB is a binary version of a DXF le used for faster loading and is apparently tailored for use by AutoCAD. DXF supports the ability to store three-dimensional objects and to handle associative dimensioning. It is a vector format which is supported by AutoCAD, Corel Draw and many other CAD programs. Because DXF was created in support of a CAD program, there is good support for included text. In spite of this, DXF is widely used as a least-common-denominator format for the exchange of simple line data. The Open Inventor 3d Toolkit which is a standard toolkit on Silicon Graphics, oers conversion routines from DXT to Inventor (DxfToIv). The Inventor 3d File Format is SGI's standard for 3d data. The Inventor toolkit includes numerous programs besides a SceneViewer, which demonstrates Inventor scene graph les in three dimensions. Note that the rendering mechanism inside Inventor objects employs Open GL. For further information about Open Inventor read the manual page (man inventor) or check out the following WWW address: See directory CGAL/examples/Polyhedron IO/ (of your local cgal installation) for the source and description of more conversion routines that are provided by CGAL. Each DXF le consists of ve sections: a header, tables, blocks, entities sections, and an end-of-le marker. The header contains zero or more groups 5

6 of header variables that contain information applying to the entire image. The tables section contains organized data that is referenced by other sections of data. Table data may include information on font sizes and styles, line type descriptions, and layer information. The blocks section describes each block of information that is found in the image. The entities section contains the actual object data of the image. The end-of-le marker is the string EOF; it appears as the last line in the le. A full documentation of the DXF le format can be retrieved at: toc.htm Further information about DXF is given by: Sample data sets including digital elevation models in DXF format of the swiss region Albis/Tuerlersee can be found at: They have been published by the Swiss Bundesamt fur Landestopographie. The testdata consists of points and polylines. One testdata set is scaled 1:25'000 and contains 8 dierent categories of data. The other set is scaled 1:200'000 and contains 11 categories of data. A large collection of sample data sets from the United States in DXF format can be found at the following address: Further data sets from the United States in DXF format can be found at: ftp://ftpmcmc.cr.usgs.gov/release/dxf/ 5.2 Census TIGER File Format The TIGER/Line les, 1995, are extracts of selected geographic and cartographic information from the Census TIGER (Topologically Integrated Geographic Encoding and Referencing) data base. The le format is a vector le format. The Census TIGER System provides support for the creation and maintenance of a digital geographic data base that includes complete coverage of the United States. The design of the Census TIGER data base adapts the theories of topology, graph theory, and associated elds of mathematics. The Census TIGER les contain data describing three types of features: line features, landmark features and polygon features. Line features are roads, railroads, hydrography, transportation features, selected power lines 6

7 and boundaries. Landmark features are point landmarks such as schools and churches; area landmarks such as parks and cemeteries and key geographic locations such as apartment buildings and factories. Polygon features are geographic entity codes for areas; locations of area landmarks and locations of key geographic locations. The Census TIGER les contain information about the spatial objects distributed over a series of record types called the topology of the data set. The topology explains how points, lines, and areas relate to each other and is used as the foundation for organizing spatial objects in the Census TIGER database. A le consists of 17 record types that collectively contain geographic information. Each record type specializes a certain attribute of an object. E.g. record 1 contains a data record of an object and record 2 contains the shape coordinates. Files in TIGER data format for all 102 Illinois Counties can be retrieved at: A full documentation can be retrieved from (pdf-format): The Census TIGER homepage has the following address: 95.html 5.3 SDTS Vector File Format Spatial Data Transfer Standard (SDTS) is a standard which by denition is \a document that species a set of rules". The SDTS provides a way of facilitating the transfer of digital spatial data between dissimilar computer systems. It also preserves the information meaning and minimizes the need for any external information. This standard not only allows the transfer of spatial data, attributes and georeferencing but also the data quality report, data dictionary and any other associated metadata. SDTS was approved as Federal Information Processing Standard (FIPS). Publication 173 in 1992 after 12 years of development and testing and in 1994 became mandatory for federal agencies. SDTS is available for use also by state and local governments, the private sector and research and academic organizations. Promoting and facilitating the transfer of spatial data between dissimilar computer systems provides users and producers of spatial data with a way to gain access to a greater amount of otherwise inaccessible data. It also promotes data exchange and data sharing, which in turn increase the quality and the integrity of existing spatial data. 7

8 SDTS is designed to support all types of spatial data. A single translator that could support all the dierent types and options of data is probably not practical. It is much better to implement SDTS through the use of proles. A prole is a subset of SDTS which was created to transfer a specic type of spatial data with as few SDTS options as possible. The Topological Vector Prole (TVP) was the rst developed and applies to geographic vector data with planar graph topology. This prole will handle both USGS DLG-3 and DLG-F data as well as the Census Bureau's TIGER data. The Raster Prole was developed to accommodate image data, digital terrain models, gridded GIS layers, and other gridded data. This prole will accommodate USGS DEM's and DOQ's. SDTS information including the Standard itself and much more is available via ftp at: ftp://sdts.er.usgs.gov/pub/sdts More information on SDTS is also available by visiting the SDTS web page located at: Sample data can be retrieved at: 6 Selected Raster Data Formats In this section we describe the TIFF raster data format and the GeoTIFF raster data format. 6.1 TIFF TIFF is a standard le format found in most paint, imaging, and desktop publishing programs and is a format native to the Microsoft Windows GUI. TIFF's extensible nature allowing storage of multiple bitmap images of an pixel depth, makes it ideal for most image storage needs. The TIFF imagery le format can be used to store and transfer digital satellite imagery, scanned aerial photos, elevation models, scanned maps or the results of many types of geographic analysis. TIFF is a full-featured format in the public domain, capable of supporting compression, tiling, and extension to include geographic meta-data. The description in this chapter covers the current TIFF version 6.0 which was released in June TIFF les are organized in three sections: the Image File Header (IFH), the Image File Directory (IFD), and the bitmap data. Of these three sec- 8

9 tions, only the IFH and IFD are required. A TIFF le which contains multiple images has one IFD and one bitmap per image stored. TIFF has a reputation for being a complicated format in part because the location of each Image File Directory and the IFD points to including the bitmapped data may vary. In fact, the only part of a TIFF le that has a xed location is the Image File Header, which is always the rst eight bytes of every TIFF le. All other data in a TIFF le is found by using information found in the IFD. Each IFD and its associated bitmap are known as a TIFF suble. Each IFD contains one ore more data structures called tags or eld. Each tag is a 12-byte record that contains a specic piece of information about the bitmapped data. A tag may contain any type of data, and the TIFF specication denes over 70 tags that are used to represent specic information. TIFF supports the following types of data compression: JPEG compression method for use with continuous-tone color and gray-scale images; LZW compression, Run Length Encoding and CCITT T.4 and T.6 compression. More information including a TIFF specication, mailing lists and more can be retrieved at: GeoTIFF GeoTIFF refers to TIFF les which have geographic (or cartographic) data embedded as tags within the TIFF le. The geographic data can then be used to position the image in the correct location and geometry on the screen of a geographic information display. GeoTIFF is a metadata format, which provides geographic information to associate with the image data. GeoTIFF fully complies with the TIFF 6.0 specications, and its extensions do not in any way go against the TIFF recommendations, nor do they limit the scope of raster data supported by TIFF. A full version of the GeoTIFF specication can be retrieved from: or, for those using only ftp: ftp://mtritter.jpl.nasa.gov/pub/tiff/geotiff USGS maintains a mirror site of this spec at: ftp://ftpmcmc.cr.usgs.gov/release/geotiff 9

10 A le containing frequently asked questions concerning GeoTIFF can be retrieved at Data sets from the United States in GeoTIFF format can be retrieved at the following address: ftp://ftpmcmc.cr.usgs.gov/release/geotiff/images/ These les have various scales and pixel sizes. Information about the specic meta data of each le is given in the README le of that directory. The Swiss Bundesamt fur Landestopographie also provides sample data sets in geoti format. The pixelmaps have a resolution of 508 dpi. The pixelsize has been adjusted such that small lines of 0.05mm are still plotted and the quantity of data is minimum. The pixelsize of 0.05mm corresponds to 1.25m in the nature with scale 1:25. The language of the maps and the description (c.f. pkdocu.doc, pkdocu.rtf and pkread.txt) is written in german. The data sets and further information about the data can be retrieved at: References [MV94] J.D. Murray and W. VanRyper. Encyclopedia of Graphics File Formats. O'Really and Asoociates, Inc., Reading,

Autodesk Raster Design for Mapping and Land Development Professionals David Zavislan, P.E.

Autodesk Raster Design for Mapping and Land Development Professionals David Zavislan, P.E. December 2-5, 2003 MGM Grand Hotel Las Vegas Autodesk Raster Design for Mapping and Land Development Professionals David Zavislan, P.E. GI12-1 Explore the new and enhanced functionality in Autodesk Raster

More information

Images and Graphics. 4. Images and Graphics - Copyright Denis Hamelin - Ryerson University

Images and Graphics. 4. Images and Graphics - Copyright Denis Hamelin - Ryerson University Images and Graphics Images and Graphics Graphics and images are non-textual information that can be displayed and printed. Graphics (vector graphics) are an assemblage of lines, curves or circles with

More information

Inserting and Creating ImagesChapter1:

Inserting and Creating ImagesChapter1: Inserting and Creating ImagesChapter1: Chapter 1 In this chapter, you learn to work with raster images, including inserting and managing existing images and creating new ones. By scanning paper drawings

More information

From Raster to Vector: Make That Scanner Earn Its Keep!

From Raster to Vector: Make That Scanner Earn Its Keep! December 2-5, 2003 MGM Grand Hotel Las Vegas From Raster to Vector: Make That Scanner Earn Its Keep! Felicia Provencal GD31-2 This class is an in-depth introduction to Autodesk Raster Design, formerly

More information

in the list below are available in the Pro version of Scan2CAD

in the list below are available in the Pro version of Scan2CAD Scan2CAD features Features marked only. in the list below are available in the Pro version of Scan2CAD Scan Scan from inside Scan2CAD using TWAIN (Acquire). Use any TWAIN-compliant scanner of any size.

More information

Preview Guide. Contents. AUTOCAD Raster Design 2008

Preview Guide. Contents. AUTOCAD Raster Design 2008 AUTOCAD Raster Design 2008 Preview Guide AutoCAD Raster Design 2008 software is the leading raster application for design professionals in any industry who need to use or reuse scanned paper drawings or

More information

Autodesk Raster Design for Mapping and Land Development Professionals

Autodesk Raster Design for Mapping and Land Development Professionals 11/28/2005-8:00 am - 9:30 am Room:Pelican 2 (Swan) Walt Disney World Swan and Dolphin Resort Orlando, Florida Autodesk Raster Design for Mapping and Land Development Professionals David Zavislan - Nolte

More information

1. Describe how a graphic would be stored in memory using a bit-mapped graphics package.

1. Describe how a graphic would be stored in memory using a bit-mapped graphics package. HIGHER COMPUTING COMPUTER SYSTEMS DATA REPRESENTATION GRAPHICS SUCCESS CRITERIA I can describe the bit map method of graphic representation using examples of colour or greyscale bit maps. I can describe

More information

Sharing Data Between CAD and GIS Systems. Lien Alpert Phil Sanchez

Sharing Data Between CAD and GIS Systems. Lien Alpert Phil Sanchez Sharing Data Between CAD and GIS Systems Lien Alpert Phil Sanchez Session Overview Discuss current CAD strategies Outline ESRI s CAD support Demonstrate techniques for working with CAD data CAD Strategies

More information

Multimedia-Systems: Image & Graphics

Multimedia-Systems: Image & Graphics Multimedia-Systems: Image & Graphics Prof. Dr.-Ing. Ralf Steinmetz Prof. Dr. Max Mühlhäuser MM: TU Darmstadt - Darmstadt University of Technology, Dept. of of Computer Science TK - Telecooperation, Tel.+49

More information

Multimedia. Graphics and Image Data Representations (Part 2)

Multimedia. Graphics and Image Data Representations (Part 2) Course Code 005636 (Fall 2017) Multimedia Graphics and Image Data Representations (Part 2) Prof. S. M. Riazul Islam, Dept. of Computer Engineering, Sejong University, Korea E-mail: riaz@sejong.ac.kr Outline

More information

Bitmap Image Formats

Bitmap Image Formats LECTURE 5 Bitmap Image Formats CS 5513 Multimedia Systems Spring 2009 Imran Ihsan Principal Design Consultant OPUSVII www.opuseven.com Faculty of Engineering & Applied Sciences 1. Image Formats To store

More information

Features and Benefits

Features and Benefits AutoCAD Raster Design 2010 Features and Benefits Make the most of rasterized scanned drawings, maps, aerial photos, satellite imagery, and digital elevation models. Get more out of your raster data and

More information

INTRODUCTION TO COMPUTER GRAPHICS

INTRODUCTION TO COMPUTER GRAPHICS INTRODUCTION TO COMPUTER GRAPHICS ITC 31012: GRAPHICAL DESIGN APPLICATIONS AJM HASMY hasmie@gmail.com WHAT CAN PS DO? - PHOTOSHOPPING CREATING IMAGE Custom icons, buttons, lines, balls or text art web

More information

B.Digital graphics. Color Models. Image Data. RGB (the additive color model) CYMK (the subtractive color model)

B.Digital graphics. Color Models. Image Data. RGB (the additive color model) CYMK (the subtractive color model) Image Data Color Models RGB (the additive color model) CYMK (the subtractive color model) Pixel Data Color Depth Every pixel is assigned to one specific color. The amount of data stored for every pixel,

More information

Computers and Imaging

Computers and Imaging Computers and Imaging Telecommunications 1 P. Mathys Two Different Methods Vector or object-oriented graphics. Images are generated by mathematical descriptions of line (vector) segments. Bitmap or raster

More information

Understanding Image Formats And When to Use Them

Understanding Image Formats And When to Use Them Understanding Image Formats And When to Use Them Are you familiar with the extensions after your images? There are so many image formats that it s so easy to get confused! File extensions like.jpeg,.bmp,.gif,

More information

CHAPTER 3 I M A G E S

CHAPTER 3 I M A G E S CHAPTER 3 I M A G E S OBJECTIVES Discuss the various factors that apply to the use of images in multimedia. Describe the capabilities and limitations of bitmap images. Describe the capabilities and limitations

More information

GUIDELINES FOR THE CREATION OF DIGITAL COLLECTIONS

GUIDELINES FOR THE CREATION OF DIGITAL COLLECTIONS GUIDELINES FOR THE CREATION OF DIGITAL COLLECTIONS Digitization Best Practices for Images This document sets forth guidelines for digitizing two-dimensional, non-textual materials for the CARLI Digital

More information

Digital database creation of historical Remote Sensing Satellite data from Film Archives A case study

Digital database creation of historical Remote Sensing Satellite data from Film Archives A case study Digital database creation of historical Remote Sensing Satellite data from Film Archives A case study N.Ganesh Kumar +, E.Venkateswarlu # Product Quality Control, Data Processing Area, NRSA, Hyderabad.

More information

Chapter 1 Overview of imaging GIS

Chapter 1 Overview of imaging GIS Chapter 1 Overview of imaging GIS Imaging GIS, a term used in the medical imaging community (Wang 2012), is adopted here to describe a geographic information system (GIS) that displays, enhances, and facilitates

More information

Portfolio Primer University of Minnesota School of Architecture College of Design

Portfolio Primer University of Minnesota School of Architecture College of Design Portfolio Primer University of Minnesota School of Architecture College of Design John Comazzi, Associate Professor of Architecture Let your images breath. Avoid overlaps of images and text over images.

More information

Mastering AutoCAD 2D

Mastering AutoCAD 2D Course description: Mastering AutoCAD 2D Design and shape the world around you with the powerful, flexible features found in AutoCAD software, one of the world s leading 2D design applications. With robust

More information

IMAGE SIZING AND RESOLUTION. MyGraphicsLab: Adobe Photoshop CS6 ACA Certification Preparation for Visual Communication

IMAGE SIZING AND RESOLUTION. MyGraphicsLab: Adobe Photoshop CS6 ACA Certification Preparation for Visual Communication IMAGE SIZING AND RESOLUTION MyGraphicsLab: Adobe Photoshop CS6 ACA Certification Preparation for Visual Communication Copyright 2013 MyGraphicsLab / Pearson Education OBJECTIVES This presentation covers

More information

Starting a Digitization Project: Basic Requirements

Starting a Digitization Project: Basic Requirements Starting a Digitization Project: Basic Requirements Item Type Book Authors Deka, Dipen Citation Starting a Digitization Project: Basic Requirements 2008-11, Publisher Assam College Librarians' Association

More information

06/17/02 Page 1 of 12

06/17/02 Page 1 of 12 Understanding the Graphical User Interface When you start AutoCAD, the AutoCAD window opens. The window is your design work space. It contains elements that you use to create your designs and to receive

More information

The Need for Data Compression. Data Compression (for Images) -Compressing Graphical Data. Lossy vs Lossless compression

The Need for Data Compression. Data Compression (for Images) -Compressing Graphical Data. Lossy vs Lossless compression The Need for Data Compression Data Compression (for Images) -Compressing Graphical Data Graphical images in bitmap format take a lot of memory e.g. 1024 x 768 pixels x 24 bits-per-pixel = 2.4Mbyte =18,874,368

More information

6. Graphics MULTIMEDIA & GRAPHICS 10/12/2016 CHAPTER. Graphics covers wide range of pictorial representations. Uses for computer graphics include:

6. Graphics MULTIMEDIA & GRAPHICS 10/12/2016 CHAPTER. Graphics covers wide range of pictorial representations. Uses for computer graphics include: CHAPTER 6. Graphics MULTIMEDIA & GRAPHICS Graphics covers wide range of pictorial representations. Uses for computer graphics include: Buttons Charts Diagrams Animated images 2 1 MULTIMEDIA GRAPHICS Challenges

More information

GeoBase Raw Imagery Data Product Specifications. Edition

GeoBase Raw Imagery Data Product Specifications. Edition GeoBase Raw Imagery 2005-2010 Data Product Specifications Edition 1.0 2009-10-01 Government of Canada Natural Resources Canada Centre for Topographic Information 2144 King Street West, suite 010 Sherbrooke,

More information

Fundamentals of Multimedia

Fundamentals of Multimedia Fundamentals of Multimedia Lecture 2 Graphics & Image Data Representation Mahmoud El-Gayyar elgayyar@ci.suez.edu.eg Outline Black & white imags 1 bit images 8-bit gray-level images Image histogram Dithering

More information

Design for fireplace setting by Ross Ubergang rossu.com.au. gcadplus User Guide v gcad +

Design for fireplace setting by Ross Ubergang   rossu.com.au. gcadplus User Guide v gcad + This chapter focuses on the use of common drawing tools needed to create typical landscape drawings. You will learn to use these draw tools by making an accurate, full-size model of a proposal for a space

More information

Convert images and non-vector PDFs

Convert images and non-vector PDFs Convert images and non-vector PDFs Free Addon integrated into progecad for vectorization CAD Solutions www.progesoft.com Ver. 2.0 P a g i n a 2 Index Index... 2 Introduction... 3 Contacts... 3 When is

More information

Chapter 3 Graphics and Image Data Representations

Chapter 3 Graphics and Image Data Representations Chapter 3 Graphics and Image Data Representations 3.1 Graphics/Image Data Types 3.2 Popular File Formats 3.3 Further Exploration 1 Li & Drew c Prentice Hall 2003 3.1 Graphics/Image Data Types The number

More information

CanImage. (Landsat 7 Orthoimages at the 1: Scale) Standards and Specifications Edition 1.0

CanImage. (Landsat 7 Orthoimages at the 1: Scale) Standards and Specifications Edition 1.0 CanImage (Landsat 7 Orthoimages at the 1:50 000 Scale) Standards and Specifications Edition 1.0 Centre for Topographic Information Customer Support Group 2144 King Street West, Suite 010 Sherbrooke, QC

More information

A raster image uses a grid of individual pixels where each pixel can be a different color or shade. Raster images are composed of pixels.

A raster image uses a grid of individual pixels where each pixel can be a different color or shade. Raster images are composed of pixels. Graphics 1 Raster Vector A raster image uses a grid of individual pixels where each pixel can be a different color or shade. Raster images are composed of pixels. Vector graphics use mathematical relationships

More information

v Introduction Images Import images in a variety of formats and register the images to a coordinate projection WMS Tutorials Time minutes

v Introduction Images Import images in a variety of formats and register the images to a coordinate projection WMS Tutorials Time minutes v. 10.1 WMS 10.1 Tutorial Import images in a variety of formats and register the images to a coordinate projection Objectives Import various types of image files from different sources. Learn how to work

More information

LECTURE 02 IMAGE AND GRAPHICS

LECTURE 02 IMAGE AND GRAPHICS MULTIMEDIA TECHNOLOGIES LECTURE 02 IMAGE AND GRAPHICS IMRAN IHSAN ASSISTANT PROFESSOR THE NATURE OF DIGITAL IMAGES An image is a spatial representation of an object, a two dimensional or three-dimensional

More information

Digital Imaging - Photoshop

Digital Imaging - Photoshop Digital Imaging - Photoshop A digital image is a computer representation of a photograph. It is composed of a grid of tiny squares called pixels (picture elements). Each pixel has a position on the grid

More information

3.1 Graphics/Image age Data Types. 3.2 Popular File Formats

3.1 Graphics/Image age Data Types. 3.2 Popular File Formats Chapter 3 Graphics and Image Data Representations 3.1 Graphics/Image Data Types 3.2 Popular File Formats 3.1 Graphics/Image age Data Types The number of file formats used in multimedia continues to proliferate.

More information

BEST PRACTICES FOR SCANNING DOCUMENTS. By Frank Harrell

BEST PRACTICES FOR SCANNING DOCUMENTS. By Frank Harrell By Frank Harrell Recommended Scanning Settings. Scan at a minimum of 300 DPI, or 600 DPI if expecting to OCR the document Scan in full color Save pages as JPG files with 75% compression and store them

More information

Technical information about PhoToPlan

Technical information about PhoToPlan Technical information about PhoToPlan The following pages shall give you a detailed overview of the possibilities using PhoToPlan. kubit GmbH Fiedlerstr. 36, 01307 Dresden, Germany Fon: +49 3 51/41 767

More information

ISO INTERNATIONAL STANDARD. Technical product documentation Digital product definition data practices

ISO INTERNATIONAL STANDARD. Technical product documentation Digital product definition data practices INTERNATIONAL STANDARD ISO 16792 First edition 2006-12-15 Technical product documentation Digital product definition data practices Documentation technique de produits Données de définition d'un produit

More information

Information representation

Information representation 2Unit Chapter 11 1 Information representation Revision objectives By the end of the chapter you should be able to: show understanding of the basis of different number systems; use the binary, denary and

More information

Unit 1.1: Information representation

Unit 1.1: Information representation Unit 1.1: Information representation 1.1.1 Different number system A number system is a writing system for expressing numbers, that is, a mathematical notation for representing numbers of a given set,

More information

Photoshop 01. Introduction to Computer Graphics UIC / AA/ AD / AD 205 / F05/ Sauter.../documents/photoshop_01.pdf

Photoshop 01. Introduction to Computer Graphics UIC / AA/ AD / AD 205 / F05/ Sauter.../documents/photoshop_01.pdf Photoshop 01 Introduction to Computer Graphics UIC / AA/ AD / AD 205 / F05/ Sauter.../documents/photoshop_01.pdf Topics Raster Graphics Document Setup Image Size & Resolution Tools Selecting and Transforming

More information

Factors to Consider When Choosing a File Type

Factors to Consider When Choosing a File Type Factors to Consider When Choosing a File Type Compression Since image files can be quite large, many formats employ some form of compression, the process of making the file size smaller by altering or

More information

1 Li & Drew c Prentice Hall Li & Drew c Prentice Hall 2003

1 Li & Drew c Prentice Hall Li & Drew c Prentice Hall 2003 Chapter 3 Graphics and Image Data Representations 3.1 Graphics/Image Data Types 3.2 Popular File Formats 3.3 Further Exploration 3.1 Graphics/Image Data Types The number of file formats used in multimedia

More information

Guide to Computer Forensics and Investigations Third Edition. Chapter 10 Chapter 10 Recovering Graphics Files

Guide to Computer Forensics and Investigations Third Edition. Chapter 10 Chapter 10 Recovering Graphics Files Guide to Computer Forensics and Investigations Third Edition Chapter 10 Chapter 10 Recovering Graphics Files Objectives Describe types of graphics file formats Explain types of data compression Explain

More information

Graphics for Web. Desain Web Sistem Informasi PTIIK UB

Graphics for Web. Desain Web Sistem Informasi PTIIK UB Graphics for Web Desain Web Sistem Informasi PTIIK UB Pixels The computer stores and displays pixels, or picture elements. A pixel is the smallest addressable part of the computer screen. A pixel is stored

More information

Land Remote Sensing Lab 4: Classication and Change Detection Assigned: October 15, 2017 Due: October 27, Classication

Land Remote Sensing Lab 4: Classication and Change Detection Assigned: October 15, 2017 Due: October 27, Classication Name: Land Remote Sensing Lab 4: Classication and Change Detection Assigned: October 15, 2017 Due: October 27, 2017 In this lab, you will generate several gures. Please sensibly name these images, save

More information

INTERNATIONAL TELECOMMUNICATION UNION SERIES T: TERMINALS FOR TELEMATIC SERVICES

INTERNATIONAL TELECOMMUNICATION UNION SERIES T: TERMINALS FOR TELEMATIC SERVICES INTERNATIONAL TELECOMMUNICATION UNION ITU-T T.4 TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU Amendment 2 (10/97) SERIES T: TERMINALS FOR TELEMATIC SERVICES Standardization of Group 3 facsimile terminals

More information

NXPowerLite Technology

NXPowerLite Technology NXPowerLite Technology A detailed look at how File Optimization technology works and exactly how it affects each of the file formats it supports. HOW FILE OPTIMIZATION WORKS Compared with traditional compression,

More information

Graphics packages can be bit-mapped or vector. Both types of packages store graphics in a different way.

Graphics packages can be bit-mapped or vector. Both types of packages store graphics in a different way. Graphics packages can be bit-mapped or vector. Both types of packages store graphics in a different way. Bit mapped packages (paint packages) work by changing the colour of the pixels that make up the

More information

4/9/2015. Simple Graphics and Image Processing. Simple Graphics. Overview of Turtle Graphics (continued) Overview of Turtle Graphics

4/9/2015. Simple Graphics and Image Processing. Simple Graphics. Overview of Turtle Graphics (continued) Overview of Turtle Graphics Simple Graphics and Image Processing The Plan For Today Website Updates Intro to Python Quiz Corrections Missing Assignments Graphics and Images Simple Graphics Turtle Graphics Image Processing Assignment

More information

ITP 140 Mobile App Technologies. Images

ITP 140 Mobile App Technologies. Images ITP 140 Mobile App Technologies Images Images All digital images are rectangles! Each image has a width and height 2 Terms Pixel A picture element Screen size In inches Resolution A width and height DPI

More information

4 Images and Graphics

4 Images and Graphics LECTURE 4 Images and Graphics CS 5513 Multimedia Systems Spring 2009 Imran Ihsan Principal Design Consultant OPUSVII www.opuseven.com Faculty of Engineering & Applied Sciences 1. The Nature of Digital

More information

ISO INTERNATIONAL STANDARD. Graphic technology Prepress digital data exchange Tag image file format for image technology (TIFF/IT)

ISO INTERNATIONAL STANDARD. Graphic technology Prepress digital data exchange Tag image file format for image technology (TIFF/IT) INTERNATIONAL STANDARD ISO 12639 Second edition 2004-05-15 Graphic technology Prepress digital data exchange Tag image file format for image technology (TIFF/IT) Technologie graphique Échange de données

More information

Welcome Back to Fundamentals of Multimedia (MR412) Fall, 2012 Chapter 3. ZHU Yongxin, Winson

Welcome Back to Fundamentals of Multimedia (MR412) Fall, 2012 Chapter 3. ZHU Yongxin, Winson Welcome Back to Fundamentals of Multimedia (MR412) Fall, 2012 Chapter 3 ZHU Yongxin, Winson zhuyongxin@sjtu.edu.cn Chapter 3 Graphics and Image Data Representations 3.1 Graphics/Image Data Types 3.2 Popular

More information

Image Optimization for Print and Web

Image Optimization for Print and Web There are two distinct types of computer graphics: vector images and raster images. Vector Images Vector images are graphics that are rendered through a series of mathematical equations. These graphics

More information

Raster (Bitmap) Graphic File Formats & Standards

Raster (Bitmap) Graphic File Formats & Standards Raster (Bitmap) Graphic File Formats & Standards Contents Raster (Bitmap) Images Digital Or Printed Images Resolution Colour Depth Alpha Channel Palettes Antialiasing Compression Colour Models RGB Colour

More information

Digital Images: A Technical Introduction

Digital Images: A Technical Introduction Digital Images: A Technical Introduction Images comprise a significant portion of a multimedia application This is an introduction to what is under the technical hood that drives digital images particularly

More information

v WMS 10.0 Tutorial Introduction Images Read images in a variety of formats and register the images to a coordinate projection

v WMS 10.0 Tutorial Introduction Images Read images in a variety of formats and register the images to a coordinate projection v. 10.0 WMS 10.0 Tutorial Read images in a variety of formats and register the images to a coordinate projection Objectives Read various types of image files from different sources. Learn how to work with

More information

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB Unit 5 Graphics and Images Slides based on course material SFU Icons their respective owners 1 Learning Objectives In this unit you will learn

More information

Miami University. Physical Facilities Department. CAD Standards. April 2004

Miami University. Physical Facilities Department. CAD Standards. April 2004 Miami University Physical Facilities Department CAD Standards April 2004 1.0.0 OVERVIEW These standards pertain to the use, production and submittal of electronic CAD files at Miami University. They have

More information

Optimizing Digital Drawing Files and BIM Models for Measurement and Estimating

Optimizing Digital Drawing Files and BIM Models for Measurement and Estimating Optimizing Digital Drawing Files and BIM Models for Measurement and Estimating Simon Lovegrove MRICS, AAIQS - Exactal CM4228 Drawing file formats issued for measurement and estimating purposes range from

More information

Image Perception & 2D Images

Image Perception & 2D Images Image Perception & 2D Images Vision is a matter of perception. Perception is a matter of vision. ES Overview Introduction to ES 2D Graphics in Entertainment Systems Sound, Speech & Music 3D Graphics in

More information

CSC 170 Introduction to Computers and Their Applications. Lecture #3 Digital Graphics and Video Basics. Bitmap Basics

CSC 170 Introduction to Computers and Their Applications. Lecture #3 Digital Graphics and Video Basics. Bitmap Basics CSC 170 Introduction to Computers and Their Applications Lecture #3 Digital Graphics and Video Basics Bitmap Basics As digital devices gained the ability to display images, two types of computer graphics

More information

IDEA CSS 7 General cross-section

IDEA CSS 7 General cross-section IDEA CSS User Guide IDEA CSS 7 General cross-section User guide IDEA CSS User Guide Content 1.1 Program requirements... 3 1.2 Installation guidelines... 3 2 Basic Terms... 4 3 User interface... 5 3.1 Control

More information

SECTION GEOGRAPHIC INFORMATION SYSTEM (GIS)

SECTION GEOGRAPHIC INFORMATION SYSTEM (GIS) PART 1 - GENERAL 1.1 DESCRIPTION SECTION 11 83 01 A. Provide all labor, materials, manpower, tools and equipment required to furnish, install, activate and test a new Geographic Information System (GIS).

More information

Computer Graphics and Image Editing Software

Computer Graphics and Image Editing Software ELCHK Lutheran Secondary School Form Two Computer Literacy Computer Graphics and Image Editing Software Name : Class : ( ) 0 Content Chapter 1 Bitmap image and vector graphic 2 Chapter 2 Photoshop basic

More information

Common File Formats. Need to store an image on disk Real photos Synthetic renderings Composed images. Desirable Features High quality.

Common File Formats. Need to store an image on disk Real photos Synthetic renderings Composed images. Desirable Features High quality. Image File Format 1 Common File Formats Need to store an image on disk Real photos Synthetic renderings Composed images Multiple sources Desirable Features High quality Lossy vs Lossless formats Channel

More information

Terrain Modeling with ArcView GIS

Terrain Modeling with ArcView GIS What You Will Need: A Pentium class PC with 32 MB of RAM (minimum) and 100 MB of free hard drive space, ArcView GIS 3.1 or higher and WinZip or an equivalent program, and an Internet connection. Data and/or

More information

KEY WORDS: Animation, Architecture, Image Rectification, Multi-Media, Texture Mapping, Visualization

KEY WORDS: Animation, Architecture, Image Rectification, Multi-Media, Texture Mapping, Visualization AUTOMATED PROCESSING OF DIGITAL IMAGE DATA IN ARCHITECTURAL SURVEYING Günter Pomaska Prof. Dr.-Ing., Faculty of Architecture and Civil Engineering FH Bielefeld, University of Applied Sciences Artilleriestr.

More information

FILE ASSEMBLY GUIDE. ~ File Assembly Guidelines ~

FILE ASSEMBLY GUIDE. ~ File Assembly Guidelines ~ To reduce your costs in prepress and turn-around time for proofs, Standard Printing Company recommends using the following information as a guide for correct file assembly: Acceptable File Formats QuarkXpress

More information

Table of contents. User interface 1: Customizable tool palette... 6 User interface 2: General GUI improvements... 7

Table of contents. User interface 1: Customizable tool palette... 6 User interface 2: General GUI improvements... 7 Table of contents WELCOME TO ADVANCE CONCRETE 2014... 5 USER INTERFACE ENHANCEMENTS... 6 User interface 1: Customizable tool palette... 6 User interface 2: General GUI improvements... 7 MODELING... 10

More information

[Use Element Selection tool to move raster towards green block.]

[Use Element Selection tool to move raster towards green block.] Demo.dgn 01 High Performance Display Bentley Descartes has been designed to seamlessly integrate into the Raster Manager and all tool boxes, menus, dialog boxes, and other interface operations are consistent

More information

RGB colours: Display onscreen = RGB

RGB colours:  Display onscreen = RGB RGB colours: http://www.colorspire.com/rgb-color-wheel/ Display onscreen = RGB DIGITAL DATA and DISPLAY Myth: Most satellite images are not photos Photographs are also 'images', but digital images are

More information

DSP First Lab 06: Digital Images: A/D and D/A

DSP First Lab 06: Digital Images: A/D and D/A DSP First Lab 06: Digital Images: A/D and D/A Pre-Lab and Warm-Up: You should read at least the Pre-Lab and Warm-up sections of this lab assignment and go over all exercises in the Pre-Lab section before

More information

A Productivity Comparison of AutoCAD and AutoCAD Architecture Software

A Productivity Comparison of AutoCAD and AutoCAD Architecture Software AUTODCAD ARCHITECTURE A Productivity Comparison of and Software provides the best software-based design and documentation productivity for architects. This study details productivity gains over in designing

More information

Spatial Analyst is an extension in ArcGIS specially designed for working with raster data.

Spatial Analyst is an extension in ArcGIS specially designed for working with raster data. Spatial Analyst is an extension in ArcGIS specially designed for working with raster data. 1 Do you remember the difference between vector and raster data in GIS? 2 In Lesson 2 you learned about the difference

More information

Services Overview. Northeast Blueprint

Services Overview. Northeast Blueprint Services Overview 2D CAD Conversions Paper to CAD 2D CAD Conversions Construction Engineering / CAD Services Construction Markups Consultant Drawings Coordinated Drawings As -Builts Steel Structural Detailing

More information

Open Standard based Visualization Infrastructure for 3D Geospatial Information

Open Standard based Visualization Infrastructure for 3D Geospatial Information X3D Earth Open Standard based Visualization Infrastructure for 3D Geospatial Information 13 January 2008 / Web3D Korea Forum 유병현 Byounghyun Yoo Web3D Consortium Fellow MOVES (Modeling, Virtual Environment

More information

raw format format for capturing maximum continuous-tone color information. It preserves all information when photograph was taken.

raw format format for capturing maximum continuous-tone color information. It preserves all information when photograph was taken. raw format format for capturing maximum continuous-tone color information. It preserves all information when photograph was taken. psd files (photoshop default) layered photoshop continuous-tone (photograph)

More information

Drawing Rules for Photomask Generation.

Drawing Rules for Photomask Generation. Drawing Rules for Photomask Generation. Created by Steve DiBartolomeo Modified by John Dingley, JD Photo-Tools Ltd Introduction This note gives general guidance on setting data up for photomask generation

More information

Image Formats Practical experiences

Image Formats Practical experiences Image Formats Practical experiences ERPANET Training File Formats for Preservation Vienna May 10th - 11th 2004 rene.van.horik@niwi.knaw.nl "Theory without practice is empty. Practice without theory is

More information

CHAPTER 8 Digital images and image formats

CHAPTER 8 Digital images and image formats CHAPTER 8 Digital images and image formats An important type of digital media is images, and in this chapter we are going to review how images are represented and how they can be manipulated with simple

More information

Digital Imaging and Image Editing

Digital Imaging and Image Editing Digital Imaging and Image Editing A digital image is a representation of a twodimensional image as a finite set of digital values, called picture elements or pixels. The digital image contains a fixed

More information

Digital Imaging & Photoshop

Digital Imaging & Photoshop Digital Imaging & Photoshop Photoshop Created by Thomas Knoll in 1987, originally called Display Acquired by Adobe in 1988 Released as Photoshop 1.0 for Macintosh in 1990 Released the Creative Suite in

More information

Please show the instructor your downloaded index files and orthoimages.

Please show the instructor your downloaded index files and orthoimages. Student Exercise 1: Sandia Forest Infestation Acquiring Orthophotos and Satellite Imagery Please show the instructor your downloaded index files and orthoimages. Objectives: Determine appropriate imagery

More information

Unit 4.4 Representing Images

Unit 4.4 Representing Images Unit 4.4 Representing Images Candidates should be able to: a) Explain the representation of an image as a series of pixels represented in binary b) Explain the need for metadata to be included in the file

More information

Towards a New Age Graphic Design DIGITAL PRINTING

Towards a New Age Graphic Design DIGITAL PRINTING 90 Chapter 08 Towards a New Age Graphic Design DIGITAL IMAGING and PRINTING Graphic designers work with visual images, either for print media or for digital media. With the advent of computers, most of

More information

CS101 Lecture 19: Digital Images. John Magee 18 July 2013 Some material copyright Jones and Bartlett. Overview/Questions

CS101 Lecture 19: Digital Images. John Magee 18 July 2013 Some material copyright Jones and Bartlett. Overview/Questions CS101 Lecture 19: Digital Images John Magee 18 July 2013 Some material copyright Jones and Bartlett 1 Overview/Questions What is digital information? What is color? How do pictures get encoded into binary

More information

Images 6 11/21/2016. Describe the capabilities and limitations of bitmap images. Describe the capabilities and limitations of vector images.

Images 6 11/21/2016. Describe the capabilities and limitations of bitmap images. Describe the capabilities and limitations of vector images. Chapter 6 Images Learning Objectives This lesson looks at images and shows the students what they need to create and edit them. At the end of the lesson, the students will be able to: Discuss the various

More information

8.2 IMAGE PROCESSING VERSUS IMAGE ANALYSIS Image processing: The collection of routines and

8.2 IMAGE PROCESSING VERSUS IMAGE ANALYSIS Image processing: The collection of routines and 8.1 INTRODUCTION In this chapter, we will study and discuss some fundamental techniques for image processing and image analysis, with a few examples of routines developed for certain purposes. 8.2 IMAGE

More information

Computer-Aided Design Data Extraction Approach to Identify Product Information

Computer-Aided Design Data Extraction Approach to Identify Product Information Journal of Computer Science 5 (9): 624-629, 2009 ISSN 1549-3636 2009 Science Publications Computer-Aided Design Data Extraction Approach to Identify Product Information Mohamad Faizal Ab. Jabal, Mohd.

More information

Topics. 1. Raster vs vector graphics. 2. File formats. 3. Purpose of use. 4. Decreasing file size

Topics. 1. Raster vs vector graphics. 2. File formats. 3. Purpose of use. 4. Decreasing file size Topics 1. Raster vs vector graphics 2. File formats 3. Purpose of use 4. Decreasing file size Vector graphics Object-oriented graphics or drawings Consist of a series of mathematically defined points that

More information

Digital Photogrammetry. Presented by: Dr. Hamid Ebadi

Digital Photogrammetry. Presented by: Dr. Hamid Ebadi Digital Photogrammetry Presented by: Dr. Hamid Ebadi Background First Generation Analog Photogrammetry Analytical Photogrammetry Digital Photogrammetry Photogrammetric Generations 2000 digital photogrammetry

More information

Digital Art Requirements for Submission

Digital Art Requirements for Submission Requirements for Submission Contents 1. Overview What Is Digital Art? Types of Digital Art: Scans and Computer-Based Drawings 3 3 3 2. Image Resolution for Continuous-Tone Scans Continuous-Tone or Bi-tonal?

More information

2 CHAPTER 1. INTRODUCTION The rst step in comparing two images is removing as many of these factors as possible, which is a process referred to as nor

2 CHAPTER 1. INTRODUCTION The rst step in comparing two images is removing as many of these factors as possible, which is a process referred to as nor Chapter 1 Introduction 1.1 Motivation In the last half of the 19th century people commonly went to a photographic studio for portraits. Photography was still in its infancy, resulting in blackand-white

More information

SPRINGFIELD TECHNICAL COMMUNITY COLLEGE ACADEMIC AFFAIRS

SPRINGFIELD TECHNICAL COMMUNITY COLLEGE ACADEMIC AFFAIRS SPRINGFIELD TECHNICAL COMMUNITY COLLEGE ACADEMIC AFFAIRS Course Number: ARBT 125 Department: Architecture and Building Technology Course Title: Architectural CAD I Semester: Fall Year: 2013 Objectives/

More information