AiM 8.0 Quick Reference Guide Styled Layer Descriptor (SLD)

Size: px
Start display at page:

Download "AiM 8.0 Quick Reference Guide Styled Layer Descriptor (SLD)"

Transcription

1 AiM 8.0 Quick Reference Guide 2015 AssetWorks LLC 1777 NE Loop 410, Suite 1250 San Antonio, Texas (800)

2 TABLE OF CONTENTS INTRODUCTION... 3 SLD... 4 MODIFYING THE.SLD FILE... 4.SLD FILE STRUCTURE... 4 TYPES OF OBJECTS... 6 Point... 7 Line... 9 Polygons CONCLUSION LIST OF TABLES

3 INTRODUCTION The purpose of this document is to provide quick reference guide for modifying an existing Styled Layer Descriptor (SLD).XML file. This document will show how easily layers can be modified to better display GIS information. For instance, editing the.sld file enables users to change the color of a polygon fill or the font for textual information. This document does not provide a tutorial for adding attributes not currently specified, as this would require coding knowledge that is beyond the scope of this document. For more indepth information, consult the online help for the GIS server (e.g., the Geoserver online documentation is found here in the SLD Cookbook and the SLD Reference, respectively: and The examples in this document are found in the Geoserver SLD Cookbook. 3

4 SLD MODIFYING THE.SLD FILE The purpose of this document is to provide a working knowledge of the.sld file structure and the different vector types of objects (polygon, line, and point) to modify with examples of each. Raster objects are not covered in this document..sld FILE STRUCTURE The.SLD file is a compilation of GIS layer definitions. In order to modify this file, users must have an editor program to modify the.sld file (e.g., Crimson Editor), know the location of the.sld file (located in the Tomcat\webapps\root directory), and then the name of the layers to modify (some institutions have an.sld file that contains myriad entries making it difficult to find the layer). The GIS Viewer enables users to select the layers to display and thus determine the layer to modify. The names of the layers in the Layer Block of the GIS Viewer, correspond to the names of the layers in the.sld file. Each layer definition is marked with a beginning and end NamedLayer line. The actual name of the layer is the next line after the first NamedLayer line (<Name>). The example below shows a layer definition with the beginning and end of the definition highlighted (in this case, the layer name is geo:asw_planters): <NamedLayer> <Name>geo:ASW_PLANTERS</Name> <UserStyle> <Name>default</Name> <IsDefault>true</IsDefault> <FeatureTypeStyle> <Rule> <PolygonSymbolizer> <Fill> <CssParameter name="fill">#c4c2f2</cssparameter> <CssParameter name="fill-opacity">1</cssparameter> </Fill> <Stroke> 4

5 <CssParameter name="stroke">#000000</cssparameter> <CssParameter name="stroke-opacity">1</cssparameter> </Stroke> </PolygonSymbolizer> </Rule> </FeatureTypeStyle> </UserStyle> <UserStyle> <Name>selected</Name> <FeatureTypeStyle> <Rule> <PolygonSymbolizer> <Fill> <CssParameter name="fill">#ffff00</cssparameter> <CssParameter name="fill-opacity">1</cssparameter> </Fill> </PolygonSymbolizer> </Rule> </FeatureTypeStyle> </UserStyle> </NamedLayer> Note that the NamedLayer lines are indented farthest to the left. Indents take place as the definition drills into the different aspects of the objects (and always with a beginning and an end, except for lines containing the values to modify). These values are located to the far right of the lines. 5

6 TYPES OF OBJECTS Before discussing the differences of each of the objects, it is important to focus on the commonality that all the objects have, the ability to have a textual label of the object. The example below shows the beginning and end of the label definition (TextSymbolizer). Note the name of the label is easily identifiable (SmithLibrary) should the user want to modify the label. In addition, note the font and fill of the text are clearly identified. <TextSymbolizer> <Label> <ogc:propertyname>smithlibrary</ogc:propertyname> </Label> <Font> <CssParameter name="font-family">times New Roman</CssParameter> <CssParameter name="font-style">normal</cssparameter> <CssParameter name="font-size">12</cssparameter> </Font> <Fill> <CssParameter name="fill">#000000</cssparameter> <CssParameter name="fill-opacity">1</cssparameter> </Fill> </TextSymbolizer> Note: To turn off the text for the SmithLibrary label, look for the section in the.xml file that defines the TextSymbolizer. The section between these two lines contains the.xml code that creates and formats the text identification label names (i.e., Handles). Below is a method of commenting out the entire section to prevent the.xml code from executing. after the second <TextSymbolizer> line. Then save the file. The label is now commented out and will not appear in the GIS viewer. Insert a line above the first <TextSymbolizer> line and type <!-- and /--> 6

7 POINT Points are the simplest type of shape, possessing only position and no other dimensions, there are many ways to style a point in the.sld file. The style shown below is an example of a point style definition. It shows the beginning and end PointSymbolizer definition lines (highlighted). In addition, a complex common element, the TextSymbolizer (lines 12 through 38) is also displayed. 1 <PointSymbolizer> 2 <Graphic> 3 <Mark> 4 <WellKnownName>circle</WellKnownName> 5 <Fill> 6 <CssParameter name="fill">#ff0000</cssparameter> 7 </Fill> 8 </Mark> 9 <Size>6</Size> 10 </Graphic> 11 </PointSymbolizer> 12 <TextSymbolizer> 13 <Label> 14 <ogc:propertyname>smithlibrary</ogc:propertyname> 15 </Label> 16 <Font> 17 <CssParameter name="font-family">arial</cssparameter> 18 <CssParameter name="font-size">12</cssparameter> 19 <CssParameter name="font-style">normal</cssparameter> 20 <CssParameter name="font-weight">bold</cssparameter> 21 </Font> 7

8 22 <LabelPlacement> 23 <PointPlacement> 24 <AnchorPoint> 25 <AnchorPointX>0.5</AnchorPointX> 26 <AnchorPointY>0.0</AnchorPointY> 27 </AnchorPoint> 28 <Displacement> 29 <DisplacementX>0</DisplacementX> 30 <DisplacementY>25</DisplacementY> 31 </Displacement> 32 <Rotation>-45</Rotation> 33 </PointPlacement> 34 </LabelPlacement> 35 <Fill> 36 <CssParameter name="fill">#990099</cssparameter> 37 </Fill> 38 </TextSymbolizer> The following are examples associated with the point object example above: <WellKnownName> (Line 4) The <WelllKnownName> is the name of the common shape to render the object. The options are circle, square, triangle, star, cross, and x. The defaulted value is a square. Note the fill (in hexadecimal format) and size of the object is included. Objects may also be selected from an existing file as in the example below (although a full URL could be specified, no path information is necessary because this graphic is contained in the same directory as the.sld). In this example, the path is Tomcat/Webapps/Root/Shape directory (highlighted). The statement is between the two <Mark> lines. <Mark> <WellKnownName>shape://times</WellKnownName> 8

9 <Stroke> <CssParameter name="stroke">#990099</cssparameter> <CssParameter name="stroke-width">1</cssparameter> </Stroke> </Mark> <Font> (lines 16 through 21) The <Font> element specifies the font to be used for the label. A set of <CssParameter> elements specify the details of the font. Anchor Point (lines 24 through 27) Specifies the location within the label-bounding box that is aligned with the label point. The location is specified by <AnchorPointX> and <AnchorPointY> sub-elements, with values. Values may contain expressions. Displacement (lines 28 through 31) Specifies that the label point should be offset from the original point. The offset is specified by <DisplacementtX> and <DisplacementY> sub-elements, with values in pixels. Values may contain expressions. Rotation (line 32) Specifies the rotation of the label in clockwise degrees (negative values are counterclockwise). Value may contain expressions. The default value is zero. Fill (lines 35 through 37) The <Fill> element specifies the fill style for the label text. The syntax is identical to that of the PolygonSymbolizer <Fill> element. LINE A <LineSymbolizer> styles feature lines. Lines are one-dimensional geometries that have both position and length. Each line is comprised of one or more line segments, and has either two ends or none (if it is closed). In the example below is a line layer as defined between the <LineSymbolizer> lines (shown highlighted): 1 <NamedLayer> 2 <Name>RIVER_ROADS</Name> 9

10 3 <UserStyle> 4 <Name>RIVER_ROADS</Name> 5 <FeatureTypeStyle> 6 <Rule> 7 <LineSymbolizer> 8 <Stroke> 9 <CssParameter name="stroke">#552222</cssparameter> 10 <CssParameter name="stroke-opacity">1</cssparameter> 11 <CssParameter name="stroke-width">1</cssparameter> 12 </Stroke> 13 </LineSymbolizer> 14 </Rule> 15 </FeatureTypeStyle> 16 </UserStyle> 17 </NamedLayer> Stroke (lines 8 through 12) Lines in the.sld file have no notion of a fill, only stroke (i.e., edge). Thus, unlike points or polygons, it is not possible to style the edge of the line geometry. It is, however, possible to achieve this effect by drawing each line twice: once with a certain width and again with a slightly smaller width. This gives the illusion of fill and stroke by obscuring the larger lines everywhere except along the edges of the smaller lines. POLYGONS Polygons are two-dimensional shapes that contain both an outer edge (i.e., stroke) and an inside (i.e., fill). A polygon can be thought of as an irregularly shaped point and is styled in similar ways to points.. Every polygon contains one label point within its boundary. In addition, polygons have attributes that describe the geographic feature they represent. 1 <PolygonSymbolizer> 2 <Fill> 10

11 3 <CssParameter name="fill">#c4c2f2</cssparameter> 4 <CssParameter name="fill-opacity">1</cssparameter> 5 </Fill> 6 <Stroke> 7 <CssParameter name="stroke">#000000</cssparameter> 8 <CssParameter name="stroke-opacity">1</cssparameter> 9 </Stroke> 10 </PolygonSymbolizer> Fill (lines 2 through 5) The <Font> element specifies the font to be used for the label. A set of <CssParameter> elements specify the details of the font. Stroke (lines 6 through 9) Lines in the.sld file have no notion of a fill, only stroke (i.e., edge). Thus, unlike points or polygons, it is not possible to style the edge of the line geometry. It is, however, possible to achieve this effect by drawing each line twice: once with a certain width and again with a slightly smaller width. This gives the illusion of fill and stroke by obscuring the larger lines everywhere except along the edges of the smaller lines. Here is an example of managing the scale of the presentation. 1 <Rule> 2 <Name>Medium</Name> 3 <MinScaleDenominator> </MinScaleDenominator> 4 <MaxScaleDenominator> </MaxScaleDenominator> 5 <PolygonSymbolizer> 6 <Fill> 7 <CssParameter name="fill">#0000cc</cssparameter> 8 </Fill> 9 <Stroke> 10 <CssParameter name="stroke">#000000</cssparameter> 11

12 11 <CssParameter name="stroke-width">4</cssparameter> 12 </Stroke> 13 </PolygonSymbolizer> 14 </Rule> MinScaleDenominator/MaxScaleDenominator (lines 3 and 4) It is often desirable to make shapes larger at higher zoom levels when creating a natural-looking map. Zoom levels (or more accurately, scale denominators) refer to the scale of the map. A scale denominator of 10,000 means the map has a scale of 1:10,000 in the units of the map projection. This style contains three rules, defined as follows: TABLE 1: POLYGON SCALE DENOMINATOR RULES Rule Order Rule Name Scale Denominator Stroke Width Label Display? 1 Large 1:100,000,000 or less 7 Yes 2 Medium 1:100,000,000 to 1:200,000,000 4 No 3 Small Greater than 1:200,000,000 2 No The first rule is for the smallest scale denominator, corresponding to when the view is zoomed in. The scale rule is set such that the rule will apply only where the scale denominator is 100,000,000 or less. The second rule is for the intermediate scale denominators, corresponding to when the view is partially zoomed. The scale rules set the rule such that it will apply to any map with a scale denominator between 100,000,000 and 200,000,000. Note: The <MinScaleDenominator> is inclusive and the <MaxScaleDenominator> is exclusive. The third rule is for the largest scale denominator, corresponding to when the map is zoomed out. The scale rule is set such that the rule will apply to any map with a scale denominator of 200,000,000 or greater. The resulting style produces a polygon stroke that gets larger as one zooms in and labels that only display when zoomed in to a sufficient level. 12

13 Default Layer vs. Selected style This example illustrates how the default layer (which appears when the GIS Viewer is selected from the WorkDesk) is different from the selected style that displays when objects are retrieved from any other screen (e.g., Master Asset Profile or Property Profile Screens). In addition, the select layer is applied to search results when clicking the GIS Viewer Icon from a Browse Screen. The default layer (line 4) and the selected style (line 25) are highlighted. 1 <NamedLayer> 2 <Name>bldgs</Name> 3 <UserStyle> 4 <Name>default</Name> 5 <IsDefault>true</IsDefault> 6 <FeatureTypeStyle> 7 <Rule> 8 <PointSymbolizer> 9 <Graphic> 10 <Mark> 11 <WellKnownName>circle</WellKnownName> 12 <Fill> 13 <CssParameter name="fill">#cc0000</cssparameter> 14 <CssParameter name="fill-opacity">1</cssparameter> 15 </Fill> 16 </Mark> 17 <Opacity>1</Opacity> 18 <Size>8</Size> 19 </Graphic> 20 </PointSymbolizer> 13

14 21 </Rule> 22 </FeatureTypeStyle> 23 </UserStyle> 24 <UserStyle> 25 <Name>selected</Name> 26 <FeatureTypeStyle> 27 <Rule> 28 <PointSymbolizer> 29 <Graphic> 30 <Mark> 31 <WellKnownName>circle</WellKnownName> 32 <Fill> 33 <CssParameter name="fill">#ffff00</cssparameter> 34 <CssParameter name="fill-opacity">1</cssparameter> 35 </Fill> 36 </Mark> 37 <Opacity>1</Opacity> 38 <Size>16</Size> 39 </Graphic> 40 </PointSymbolizer> 41 </Rule> 42 </FeatureTypeStyle> 43 </UserStyle> 44 </NamedLayer> 14

15 Default layer (lines 4 through 20) This layer is the default layer for AiM entities as defined on the GIS Setup Screen, Default Layers Block. The default layer is the one displayed when users access the GIS Viewer from the WorkDesk. Selected style (lines 25 through 40) The selected style information is added to the.sld file to represent the layer turned on when an object is selected on screens other than the WorkDesk. When the GIS Viewer Icon is selected from a particular record, for instance from the Master Asset Profile Screen, the selected style is displayed for that particular record. When the GIS Viewer Icon is selected from a Browse Screen, all the retrieved records will be displayed with the selected style after clicking the GIS Viewer Icon. CONCLUSION The quick reference nature of this guide precludes an exhaustive discussion on how to code and the various ways to modify your GIS display and reporting. Please provide specific examples you would like to see in the guide. Please contact your Customer Service Representative for comments concerning improving this document. 15

16 LIST OF TABLES TABLE 1: POLYGON SCALE DENOMINATOR RULES

GeoServer - WMS and WPS - Rendering Transformations - Point Clustering

GeoServer - WMS and WPS - Rendering Transformations - Point Clustering GeoServer - WMS and WPS - Rendering Transformations - Point Clustering Point Cluster: The Point Stacker rendering transformation is a Vector-to-Vector transformation which displays a data set of points

More information

Styling on the Web (CSS & SLD)

Styling on the Web (CSS & SLD) Styling on the Web (CSS & SLD) 1.0 - Barend Köbben ITC Dept. of GeoInformation Processing INTERNATIONAL INSTITUTE FOR GEO-INFORMATION SCIENCE AND EARTH OBSERVATION THE CARTOGRAPHIC

More information

INTERACTIVE STYLE GENERATION FOR LAYER VISUALIZATION THROUGH A WMS

INTERACTIVE STYLE GENERATION FOR LAYER VISUALIZATION THROUGH A WMS INTERACTIVE STYLE GENERATION FOR LAYER VISUALIZATION THROUGH A WMS Maldonado Ibáñez, Ana (MS) 1 Moya Honduvilla, Javier (BS) 2 Manso Callejo, Miguel Ángel (MS) 3 Mercator Research Group (Universidad Politécnica

More information

Street Smart SLD examples. Versie NL Datum: 20 oktober CycloMedia Technology B.V.

Street Smart SLD examples. Versie NL Datum: 20 oktober CycloMedia Technology B.V. Versie NL171020 Datum: 20 oktober 2017 2 Index INDEX... 2 1. INTRODUCTION... 3 2. SLD/SE 1.1... 4 2.1 POINT... 4 2.1.1 Marker as point symbolizer... 4 2.1.2 Marker as point symbolizer with stroke... 4

More information

INTERACTIVE STYLE GENERATION FOR LAYER VISUALIZATION THROUGH A WMS

INTERACTIVE STYLE GENERATION FOR LAYER VISUALIZATION THROUGH A WMS MALDONADO IBÁÑEZ - MOYA HoNDUVILLA - MANso CALLEJO: INTERACTIVE STYLE GENERATION... INTERACTIVE STYLE GENERATION FOR LAYER VISUALIZATION THROUGH A WMS Maldonado Ibáñez, Ana 1 Moya Honduvilla, Javier Manso

More information

Towards a Declarative Portrayal and Interaction Model for GIS and LBS

Towards a Declarative Portrayal and Interaction Model for GIS and LBS Towards a Declarative Portrayal and Interaction Model for GIS and LBS Thomas Brinkhoff Institute for Applied Photogrammetry and Geoinformatics (IAPG) FH Oldenburg/Ostfriesland/Wilhelmshaven (University

More information

Rendering map data with Python and Mapnik. From Bits To Pictures. Hartmut Holzgraefe. FOSDEM - Feb. 4th, 2018

Rendering map data with Python and Mapnik. From Bits To Pictures. Hartmut Holzgraefe. FOSDEM - Feb. 4th, 2018 Rendering map data with Python and Mapnik From Bits To Pictures Hartmut Holzgraefe hartmut@php.net FOSDEM - Feb. 4th, 2018 Hartmut Holzgraefe (OpenStreetMap) Python Mapnik FOSDEM - Feb. 4th, 2018 1 / 56

More information

INTRODUZIONE A MAPNIK

INTRODUZIONE A MAPNIK INTRODUZIONE A MAPNIK Mapnik è un software libero per la rappresentazione di dati geografici Permette la realizzazione di immagini singole oppure di tile per la pubblicazione sul web Multipiattaforma Linux

More information

Speaker notes. Who am I?

Speaker notes. Who am I? Who am I? Hartmut Holzgraefe from Bielefeld, Germany Studied electric engineering, computer science, and biology OpenStreetMapper since 2007 (anniversary next week) Principal Database Support Engineer

More information

MAPNIK (0.7.0) XML Schema Reference for the. Map Definition File

MAPNIK (0.7.0) XML Schema Reference for the. Map Definition File MAPNIK (0.7.0) XML Schema Reference for the Map Definition File 1 2 Table of Contents XML Schema for the Mapnik Map File...7 Map Element...8 General Form...8 Children...9 Example...9 Datasource Element

More information

Guide to WB Annotations

Guide to WB Annotations Guide to WB Annotations 04 May 2016 Annotations are a powerful new feature added to Workbench v1.2.0 (Released May 2016) for placing text and symbols within wb_view tabs and windows. They enable generation

More information

Stairwalker User Manual

Stairwalker User Manual Stairwalker User Manual Document authors: - Dennis Muller (UT) - Jochem Elsinga (UT) - Maurice van Keulen (UT) Software developers: - Andreas Wombacher (UT) - Jan Flokstra (UT) - Henke Pons (Arcadis) -

More information

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved.

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved. Master web design skills with Microsoft FrontPage 98. This step-by-step guide uses over 40 full color close-up screen shots to clearly explain the fast and easy way to design a web site. Use edteck s QuickGuide

More information

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements?

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements? BASIC GAUGE CREATION The Video VBox setup software is capable of using many different image formats for gauge backgrounds, static images, or logos, including Bitmaps, JPEGs, or PNG s. When the software

More information

National Weather Map

National Weather Map Weather Map Objectives Each student will utilize the Google Docs drawing application to create a map using common weather map symbols that show the current state of the weather in the United States. Benchmarks

More information

Google LayOut 2 Help. Contents

Google LayOut 2 Help. Contents Contents Contents... 1 Welcome to LayOut... 9 What's New in this Release?... 10 Learning LayOut... 12 Technical Support... 14 Welcome to the LayOut Getting Started Guide... 15 Introduction to the LayOut

More information

L E S S O N 2 Background

L E S S O N 2 Background Flight, Naperville Central High School, Naperville, Ill. No hard hat needed in the InDesign work area Once you learn the concepts of good page design, and you learn how to use InDesign, you are limited

More information

version 8.5 release notes

version 8.5 release notes version 8.5 release notes build #9647 form Z pro v8.5 introduces a new suite of creative design tools to enhance form generation. These tools offer a variety of ways to create new and interesting forms

More information

About Freeway. Freeway s Tools and Palettes

About Freeway. Freeway s Tools and Palettes About Freeway The most important thing to appreciate before you start a site in Freeway is how the process works, especially if you have tried other Web publishing software before. Freeway is not an HTML

More information

InDesign Tools Overview

InDesign Tools Overview InDesign Tools Overview REFERENCE If your palettes aren t visible you can activate them by selecting: Window > Tools Transform Color Tool Box A Use the selection tool to select, move, and resize objects.

More information

Generating Vectors Overview

Generating Vectors Overview Generating Vectors Overview Vectors are mathematically defined shapes consisting of a series of points (nodes), which are connected by lines, arcs or curves (spans) to form the overall shape. Vectors can

More information

Center for Faculty Development and Support Creating Powerful and Accessible Presentation

Center for Faculty Development and Support Creating Powerful and Accessible Presentation Creating Powerful and Accessible Presentation PowerPoint 2007 Windows Tutorial Contents Create a New Document... 3 Navigate in the Normal View (default view)... 3 Input and Manipulate Text in a Slide...

More information

Inkscape Tutorial. v2.0. Simon Andrews.

Inkscape Tutorial. v2.0. Simon Andrews. Inkscape Tutorial v2.0 Simon Andrews simon.andrews@babraham.ac.uk What is Inkscape? Vector Graphics Editor Free Software Cross Platform Easy to use Good for: Compositing Drawing Not for: Bitmap editing

More information

Prezi.com: The Zooming Presentation Editor. Created by Russell Smith Technology Facilitator North Edgecombe High School

Prezi.com: The Zooming Presentation Editor. Created by Russell Smith Technology Facilitator North Edgecombe High School Prezi.com: The Zooming Presentation Editor Created by Russell Smith Technology Facilitator North Edgecombe High School What is Prezi.com? Prezi.com is a website that allows you to create and customize

More information

- Is the process of combining texts and graphics layout to produce publications e.g. cards,

- Is the process of combining texts and graphics layout to produce publications e.g. cards, DESKTOP PUBLISHING (DTP) - Is the process of combining texts and graphics layout to produce publications e.g. cards, newspapers, catalogues etc. - A special DTP software is always used. PURPOSE OF DTP

More information

Introduction to GIS 2011

Introduction to GIS 2011 Introduction to GIS 2011 Digital Elevation Models CREATING A TIN SURFACE FROM CONTOUR LINES 1. Start ArcCatalog from either Desktop or Start Menu. 2. In ArcCatalog, create a new folder dem under your c:\introgis_2011

More information

Schematics in ArcMap Tutorial

Schematics in ArcMap Tutorial Schematics in ArcMap Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents Introducing Schematics in ArcMap Tutorial........................ 3 Exercise 1: Getting familiar with Schematics

More information

How to create shapes. Drawing basic shapes. Adobe Photoshop Elements 8 guide

How to create shapes. Drawing basic shapes. Adobe Photoshop Elements 8 guide How to create shapes With the shape tools in Adobe Photoshop Elements, you can draw perfect geometric shapes, regardless of your artistic ability or illustration experience. The first step to drawing shapes

More information

Lesson 1. Unit 2 Practice Problems. Problem 2. Problem 1. Solution 1, 4, 5. Solution. Problem 3

Lesson 1. Unit 2 Practice Problems. Problem 2. Problem 1. Solution 1, 4, 5. Solution. Problem 3 Unit 2 Practice Problems Lesson 1 Problem 1 Rectangle measures 12 cm by 3 cm. Rectangle is a scaled copy of Rectangle. Select all of the measurement pairs that could be the dimensions of Rectangle. 1.

More information

The Vizard IDE: Inspector

The Vizard IDE: Inspector Show The Vizard IDE: Inspector Inspector is a visual tool for browsing the scene graph of any Viz ard compatible 3d model. Use it to: Identify sub- parts of models so that you can get a handle to and manipulate

More information

Heidelberg Pattern Generator SOP

Heidelberg Pattern Generator SOP Heidelberg Pattern Generator SOP Page 1 of 15 Heidelberg Pattern Generator SOP 1. Scope 1.1 This document provides the operating procedures for the Heidelberg Pattern Generator with Version 3.12.5 software.

More information

Paint Tutorial (Project #14a)

Paint Tutorial (Project #14a) Paint Tutorial (Project #14a) In order to learn all there is to know about this drawing program, go through the Microsoft Tutorial (below). (Do not save this to your folder.) Practice using the different

More information

Tutorial 1. Extending ArcIMS Using ArcXML Rendering

Tutorial 1. Extending ArcIMS Using ArcXML Rendering Extending ArcIMS Using ArcXML Rendering Tutorial 1 This is the first of three companion tutorials for Extending ArcIMS MapServices Using ArcXML, an article by Mark Ho that appeared in the January March

More information

Working with Charts Stratum.Viewer 6

Working with Charts Stratum.Viewer 6 Working with Charts Stratum.Viewer 6 Getting Started Tasks Additional Information Access to Charts Introduction to Charts Overview of Chart Types Quick Start - Adding a Chart to a View Create a Chart with

More information

1 of 7 11/12/2009 9:29 AM

1 of 7 11/12/2009 9:29 AM 1 of 7 11/12/2009 9:29 AM Home Beginner Tutorials First Website Guide HTML Tutorial CSS Tutorial XML Tutorial Web Host Guide SQL Tutorial Advanced Tutorials Javascript Tutorial PHP Tutorial MySQL Tutorial

More information

Working with Graphics and Text

Working with Graphics and Text Chapter 2 Working with Graphics and Text Learning Objectives After completing this chapter, you will be able to: Create vector graphics using drawing tools Modify the shape and size of the selected objects

More information

4. If you are prompted to enable hardware acceleration to improve performance, click

4. If you are prompted to enable hardware acceleration to improve performance, click Exercise 1a: Creating new points ArcGIS 10 Complexity: Beginner Data Requirement: ArcGIS Tutorial Data Setup About creating new points In this exercise, you will use an aerial photograph to create a new

More information

Dave s Phenomenal Maya Cheat Sheet Polygon Modeling Menu Set By David Schneider

Dave s Phenomenal Maya Cheat Sheet Polygon Modeling Menu Set By David Schneider Dave s Phenomenal Maya Cheat Sheet Polygon Modeling Menu Set By David Schneider POLYGONS NURBS to Polygons This allows the user to change the objects created with NURBS into polygons so that polygon tools

More information

Adobe Illustrator CS5 Part 2: Vector Graphic Effects

Adobe Illustrator CS5 Part 2: Vector Graphic Effects CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Illustrator CS5 Part 2: Vector Graphic Effects Summer 2011, Version 1.0 Table of Contents Introduction...2 Downloading the

More information

Creating Multimedia SWF Products

Creating Multimedia SWF Products Chapter InDesign can be used to create multimedia products that combine movie clips, sounds, images and animations into professional products that can be distributed on CD, DVD or as SWF files that can

More information

Lesson 2 Installing and Using Quantum GIS (QGIS)

Lesson 2 Installing and Using Quantum GIS (QGIS) Lesson 2 Installing and Using Quantum GIS (QGIS) Use file Explorer to open County QGIS portable hard drive provided. The program execute (.exe) will be at the bottom of the list. Double click on the file.

More information

QRG: Using the WYSIWYG Editor

QRG: Using the WYSIWYG Editor WYSIWYG Editor QRG: Using the WYSIWYG Editor WYSIWYG stands for What You See Is What You Get. The WYSIWYG Editor is the reason you don t need to be an IT Programmer to write content for your web page.

More information

pine cone Ratio = 13:8 or 8:5

pine cone Ratio = 13:8 or 8:5 Chapter 10: Introducing Geometry 10.1 Basic Ideas of Geometry Geometry is everywhere o Road signs o Carpentry o Architecture o Interior design o Advertising o Art o Science Understanding and appreciating

More information

Parallel or Perpendicular? How Can You Tell? Teacher Notes Page 1 of 6

Parallel or Perpendicular? How Can You Tell? Teacher Notes Page 1 of 6 Teacher Notes How can a student be sure when lines are parallel or perpendicular to a given graph using the graphing calculator? The difficulty lies in matching a mechanical graph that is on a rectangular

More information

Max scene used to generate the image from the second pdf in this tutorial.

Max scene used to generate the image from the second pdf in this tutorial. Tutorial covers creating vector drawings from a 3ds max scene and methods for compositing these drawings back into a rendering. Rendering set up is based of the lighting set up from the mental ray/skylight/mr

More information

In this exercise, you will convert labels into geodatabase annotation so you can edit the text features.

In this exercise, you will convert labels into geodatabase annotation so you can edit the text features. Instructions: Use the provided data stored in a USB. For the report: 1. Start a new word document. 2. Follow an exercise step as given below. 3. Describe what you did in that step in the word document

More information

Ai Adobe. Illustrator. Creative Cloud Beginner

Ai Adobe. Illustrator. Creative Cloud Beginner Ai Adobe Illustrator Creative Cloud Beginner Vector and pixel images There are two kinds of images: vector and pixel based images. A vector is a drawn line that can be filled with a color, pattern or gradient.

More information

Components for Xcelsius. Micro Components

Components for Xcelsius. Micro Components Components for Xcelsius Micro Components Inovista Micro Components for Xcelsius Inovista provides a full range of spark lines, micro charts, icons, text and shape indicators that can be deployed to create

More information

Unit 1, Lesson 11: Polygons

Unit 1, Lesson 11: Polygons Unit 1, Lesson 11: Polygons Lesson Goals Understand and explain that one can find the area of any polygon by decomposing and rearranging it into rectangles and triangles. Understand the defining characteristics

More information

Objectives This tutorial demonstrates how to use feature objects points, arcs and polygons to make grid independent conceptual models.

Objectives This tutorial demonstrates how to use feature objects points, arcs and polygons to make grid independent conceptual models. v. 9.0 GMS 9.0 Tutorial Use points, arcs and polygons to make grid independent conceptual models Objectives This tutorial demonstrates how to use feature objects points, arcs and polygons to make grid

More information

EXERCISE: Publishing spatial data with GeoServer

EXERCISE: Publishing spatial data with GeoServer EXERCISE: Publishing spatial data with GeoServer Barend Köbben Ivana Ivánová August 30, 2015 Contents 1 Introduction 2 2 GeoServer s main concepts 2 3 Publishing spatial dataset to the GeoServer 5 3.1

More information

Adobe InDesign CC Tutorial Part 1. By Kelly Conley

Adobe InDesign CC Tutorial Part 1. By Kelly Conley Adobe InDesign CC Tutorial Part 1 By Kelly Conley 1 Table of Contents Overview Overview 3 Interface Overview 4 Documents 5 Creating and Setting a New Document 5 Text 6 Creating a Text Frame and Entering

More information

Release Highlights for BluePrint-PCB Product Version 3.0

Release Highlights for BluePrint-PCB Product Version 3.0 Release Highlights for BluePrint-PCB Product Version 3.0 Introduction BluePrint V3.0 Build 568 is a rolling release, containing defect fixes for 3.0 functionality. Defect fixes for BluePrint V3.0 Build

More information

Desktop Publishing. MIT Computer Centre 5/1. Shortcut Key of UNDO is A) Ctrl + X B) Ctrl + H C) Ctrl + Y D) Ctrl + Z Correct Answer : D

Desktop Publishing. MIT Computer Centre 5/1. Shortcut Key of UNDO is A) Ctrl + X B) Ctrl + H C) Ctrl + Y D) Ctrl + Z Correct Answer : D Shortcut Key of UNDO is A) Ctrl + X B) Ctrl + H C) Ctrl + Y D) Ctrl + Z Desktop Publishing 2. What is the character to be shortened to its normal shape and display something below its location? A) Superscript

More information

v Annotation Tools GMS 10.4 Tutorial Use scale bars, North arrows, floating images, text boxes, lines, arrows, circles/ovals, and rectangles.

v Annotation Tools GMS 10.4 Tutorial Use scale bars, North arrows, floating images, text boxes, lines, arrows, circles/ovals, and rectangles. v. 10.4 GMS 10.4 Tutorial Use scale bars, North arrows, floating images, text boxes, lines, arrows, circles/ovals, and rectangles. Objectives GMS includes a number of annotation tools that can be used

More information

The original image. Let s get started! The final result.

The original image. Let s get started! The final result. Vertical Photo Panels Effect In this Photoshop tutorial, we ll learn how to create the illusion that a single photo is being displayed as a series of vertical panels. It may look complicated, but as we

More information

c.def (pronounced SEE-def) Language Reference Manual

c.def (pronounced SEE-def) Language Reference Manual c.def (pronounced SEE-def) Macromedia Flash TM animation language Language Reference Manual Dennis Rakhamimov (dr524@columbia.edu), Group Leader Eric Poirier (edp29@columbia.edu) Charles Catanach (cnc26@columbia.edu)

More information

Coordinate Systems/Units

Coordinate Systems/Units GIS and Mapping Procedures in fgis Beginning a fgis Project Adding Basemap Data Adding GPS Data Editing Layer Properties Checking Feature Attributes Adding Acres to Area Features Adding Acres Labels to

More information

Rethinking the Presentation with Prezi Guide to the Prezi Interface

Rethinking the Presentation with Prezi Guide to the Prezi Interface Guide to the Prezi Interface Presented by www.jmarkcoleman.com mark@jmarkcoleman.com @jmarkcoleman While Prezi is a mature web tool, it is under constant revision. This guide is current as of early November,

More information

3D Programming. 3D Programming Concepts. Outline. 3D Concepts. 3D Concepts -- Coordinate Systems. 3D Concepts Displaying 3D Models

3D Programming. 3D Programming Concepts. Outline. 3D Concepts. 3D Concepts -- Coordinate Systems. 3D Concepts Displaying 3D Models 3D Programming Concepts Outline 3D Concepts Displaying 3D Models 3D Programming CS 4390 3D Computer 1 2 3D Concepts 3D Model is a 3D simulation of an object. Coordinate Systems 3D Models 3D Shapes 3D Concepts

More information

Autodesk Topobase : Best Practices for Working with DWG

Autodesk Topobase : Best Practices for Working with DWG Autodesk Topobase : Best Practices for Working with DWG 2010 Autodesk, Inc. All rights reserved. NOT FOR DISTRIBUTION. The contents of this guide were created for use with Autodesk Topobase 2010 with Update

More information

3D Body. Modified by Jason Howie on 8-Oct Parent page: PCB Dialogs. Other Related Resources 3D Body (Object)

3D Body. Modified by Jason Howie on 8-Oct Parent page: PCB Dialogs. Other Related Resources 3D Body (Object) 3D Body Modified by Jason Howie on 8-Oct-2016 Other Related Resources 3D Body (Object) Parent page: PCB Dialogs The 3D Body Dialog. Summary The 3D Body dialog allows you to modify the attributes of an

More information

Flash Info Cube. User Guide. Copyright 2006 Data Springs Inc. All rights reserved.

Flash Info Cube. User Guide. Copyright 2006 Data Springs Inc. All rights reserved. Flash Info Cube User Guide Copyright 2006 Data Springs Inc. All rights reserved. Table of contents: 1 INTRODUCTION...3 2 INSTALLATION PROCEDURE...4 3 ADDING FLASH INFO CUBE MODULE TO A PAGE...7 4 FLASH

More information

EzyRings. Table of Contents

EzyRings. Table of Contents vcomp Pty Ltd (ABN 39 103 040 311) PO Box 7356 Cloisters Square Perth WA 6850 Telephone +618 9312 6158 Fax +618 9312 6158 EzyRings Reporting System Table of Contents Report Designer... 3 Company Header...

More information

Geography 281 Map Making with GIS Project Three: Viewing Data Spatially

Geography 281 Map Making with GIS Project Three: Viewing Data Spatially Geography 281 Map Making with GIS Project Three: Viewing Data Spatially This activity introduces three of the most common thematic maps: Choropleth maps Dot density maps Graduated symbol maps You will

More information

Geometry Regents Lomac Date 3/17 due 3/18 3D: Area and Dissection 9.1R. A point has no measure because a point represents a

Geometry Regents Lomac Date 3/17 due 3/18 3D: Area and Dissection 9.1R. A point has no measure because a point represents a Geometry Regents Lomac 2015-2016 Date 3/17 due 3/18 3D: Area and Dissection Name Per LO: I can define area, find area, and explain dissection it relates to area and volume. DO NOW On the back of this packet

More information

Step 1: Analyze a Baseline Model

Step 1: Analyze a Baseline Model Step 1: Analyze a Baseline Model Let's start by opening the model and running a baseline analysis. Performing analysis on a model before setting up optimization helps ensure that any constraints and other

More information

ArcView QuickStart Guide. Contents. The ArcView Screen. Elements of an ArcView Project. Creating an ArcView Project. Adding Themes to Views

ArcView QuickStart Guide. Contents. The ArcView Screen. Elements of an ArcView Project. Creating an ArcView Project. Adding Themes to Views ArcView QuickStart Guide Page 1 ArcView QuickStart Guide Contents The ArcView Screen Elements of an ArcView Project Creating an ArcView Project Adding Themes to Views Zoom and Pan Tools Querying Themes

More information

VLSI Lab Tutorial 1. Cadence Virtuoso Schematic Composer Introduction

VLSI Lab Tutorial 1. Cadence Virtuoso Schematic Composer Introduction VLSI Lab Tutorial 1 Cadence Virtuoso Schematic Composer Introduction 1.0 Introduction The purpose of the first lab tutorial is to help you become familiar with the schematic editor, Virtuoso Schematic

More information

Adobe Photoshop Sh S.K. Sublania and Sh. Naresh Chand

Adobe Photoshop Sh S.K. Sublania and Sh. Naresh Chand Adobe Photoshop Sh S.K. Sublania and Sh. Naresh Chand Photoshop is the software for image processing. With this you can manipulate your pictures, either scanned or otherwise inserted to a great extant.

More information

Einführung in Visual Computing

Einführung in Visual Computing Einführung in Visual Computing 186.822 Rasterization Werner Purgathofer Rasterization in the Rendering Pipeline scene objects in object space transformed vertices in clip space scene in normalized device

More information

8.G Reflections, Rotations, and

8.G Reflections, Rotations, and 8.G Reflections, Rotations, and Translations Alignments to Content Standards: 8.G.A.1 Task In this task, using computer software, you will apply reflections, rotations, and translations to a triangle.

More information

What s New in TerraExplorer Suite 5.0

What s New in TerraExplorer Suite 5.0 What s New in TerraExplorer Suite 5.0 The new release of the TerraExplorer Suite marks major improvements in the capabilities for working with GIS layers. A new streaming mechanism allows connection to

More information

Intermediate Microsoft Office 2016: Word

Intermediate Microsoft Office 2016: Word Intermediate Microsoft Office 2016: Word Updated January 2017 Price: $1.20 Lesson 1: Setting Margins A margin is the distance from the text to the paper s edge. The default setting is 1 all around the

More information

Drill Table. Summary. Modified by Phil Loughhead on 16-Jun Parent page: PCB Dialogs

Drill Table. Summary. Modified by Phil Loughhead on 16-Jun Parent page: PCB Dialogs Drill Table Old Content - visit altium.com/documentation Modified by Phil Loughhead on 16-Jun-2015 Parent page: PCB Dialogs The Drill Table Dialog. Summary A standard element required for manufacture of

More information

for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1

for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1 ArcSketch User Guide for ArcSketch Version 1.1 ArcSketch is a sample extension to ArcGIS. It works with ArcGIS 9.1 ArcSketch allows the user to quickly create, or sketch, features in ArcMap using easy-to-use

More information

Scalable Vector Graphics (SVG) vector image World Wide Web Consortium (W3C) defined with XML searched indexed scripted compressed Mozilla Firefox

Scalable Vector Graphics (SVG) vector image World Wide Web Consortium (W3C) defined with XML searched indexed scripted compressed Mozilla Firefox SVG SVG Scalable Vector Graphics (SVG) is an XML-based vector image format for twodimensional graphics with support for interactivity and animation. The SVG specification is an open standard developed

More information

Krita Vector Tools

Krita Vector Tools Krita 2.9 05 Vector Tools In this chapter we will look at each of the vector tools. Vector tools in Krita, at least for now, are complementary tools for digital painting. They can be useful to draw clean

More information

Drill Table. Summary. Availability. Modified by on 19-Nov Parent page: Objects

Drill Table. Summary. Availability. Modified by on 19-Nov Parent page: Objects Drill Table Old Content - visit altium.com/documentation Modified by on 19-Nov-2013 Parent page: Objects The Drill Table presents a live summary of all drill holes present in the board. Summary A standard

More information

Create Geomark in Google Earth Tutorial

Create Geomark in Google Earth Tutorial Create Geomark in Google Earth Tutorial General business example a potential applicant / user wants to create an area of interest that can be shared electronically to another party eg: another agency,

More information

Watershed Modeling Maricopa County: Master Plan Creating a Predictive HEC-1 Model

Watershed Modeling Maricopa County: Master Plan Creating a Predictive HEC-1 Model v. 9.0 WMS 9.0 Tutorial Watershed Modeling Maricopa County: Master Plan Creating a Predictive HEC-1 Model Build a watershed model to predict hydrologic reactions based on land use development in Maricopa

More information

TIMSS 2011 Fourth Grade Mathematics Item Descriptions developed during the TIMSS 2011 Benchmarking

TIMSS 2011 Fourth Grade Mathematics Item Descriptions developed during the TIMSS 2011 Benchmarking TIMSS 2011 Fourth Grade Mathematics Item Descriptions developed during the TIMSS 2011 Benchmarking Items at Low International Benchmark (400) M01_05 M05_01 M07_04 M08_01 M09_01 M13_01 Solves a word problem

More information

INSTRUCTORS: A. SANPHAWAT JATUPATWARANGKUL A. NATTAPOL SUPHAWONG A. THEEPRAKORN LUNTHOMRATTANA COMPUTER AIDED DESIGN I AUTOCAD AND ILLUSTRATOR CS

INSTRUCTORS: A. SANPHAWAT JATUPATWARANGKUL A. NATTAPOL SUPHAWONG A. THEEPRAKORN LUNTHOMRATTANA COMPUTER AIDED DESIGN I AUTOCAD AND ILLUSTRATOR CS INSTRUCTORS: A. SANPHAWAT JATUPATWARANGKUL A. NATTAPOL SUPHAWONG A. THEEPRAKORN LUNTHOMRATTANA COMPUTER AIDED DESIGN I AUTOCAD AND ILLUSTRATOR CS BITMAP IMAGES VS VECTOR GRAPHICS WORKING WITH BITMAP IMAGES

More information

Using Flash Animation Basics

Using Flash Animation Basics Using Flash Contents Using Flash... 1 Animation Basics... 1 Exercise 1. Creating a Symbol... 2 Exercise 2. Working with Layers... 4 Exercise 3. Using the Timeline... 6 Exercise 4. Previewing an animation...

More information

GETTING AROUND STAGE:

GETTING AROUND STAGE: ASM FLASH INTRO FLASH CS3 is a 2D software that is used extensively for Internet animation. Its icon appears as a red square with a stylized Fl on it. It requires patience, because (like most computer

More information

1. NJDEP Landscape 3.3 Viewer Interface

1. NJDEP Landscape 3.3 Viewer Interface Using the Landscape Project through NJDEP Landscape 3.3 Viewer Google Chrome or Mozilla Firefox are recommended for the use of this app. Navigate to the NJDEP-DFW s Landscape Project web page at www.njfishandwildlife.com/ensp/landscape/

More information

Fireworks 3 Animation and Rollovers

Fireworks 3 Animation and Rollovers Fireworks 3 Animation and Rollovers What is Fireworks Fireworks is Web graphics program designed by Macromedia. It enables users to create any sort of graphics as well as to import GIF, JPEG, PNG photos

More information

Section 12.1 Translations and Rotations

Section 12.1 Translations and Rotations Section 12.1 Translations and Rotations Any rigid motion that preserves length or distance is an isometry. We look at two types of isometries in this section: translations and rotations. Translations A

More information

HBS Training - IT Solutions. PlanWeb. Intermediate

HBS Training - IT Solutions. PlanWeb. Intermediate HBS Training - IT Solutions PlanWeb Intermediate CONTENTS Logging on to the system...3 The PlanWeb Window...5 The Tool Bar...6 The Status Bar...6 The Map Window...6 The Information Window...7 Changing

More information

Creating a Smaller Data Set from a Larger Data Set Vector Data

Creating a Smaller Data Set from a Larger Data Set Vector Data Creating a Smaller Data Set from a Larger Data Set Vector Data Written by Barbara Parmenter, revised by Carolyn Talmadge January 16, 2015 USING THE SELECTION METHOD QUICK METHOD BY CREATING A LAYER FILE...

More information

Maps as Numbers: Data Models

Maps as Numbers: Data Models Maps as Numbers: Data Models vertices E Reality S E S arcs S E Conceptual Models nodes E Logical Models S Start node E End node S Physical Models 1 The Task An accurate, registered, digital map that can

More information

Changing Image Display

Changing Image Display 12-Jul-09 Changing Image Display One way to customize collections is to change the settings of the four viewers within the CONTENTdm Web templates to improve the display of your collection. You can change

More information

v Data Visualization SMS 12.3 Tutorial Prerequisites Requirements Time Objectives Learn how to import, manipulate, and view solution data.

v Data Visualization SMS 12.3 Tutorial Prerequisites Requirements Time Objectives Learn how to import, manipulate, and view solution data. v. 12.3 SMS 12.3 Tutorial Objectives Learn how to import, manipulate, and view solution data. Prerequisites None Requirements GIS Module Map Module Time 30 60 minutes Page 1 of 16 Aquaveo 2017 1 Introduction...

More information

Collaboration Tools. Instructor Guide. Copyright 2015 by Edmentum. All Rights Reserved.

Collaboration Tools. Instructor Guide. Copyright 2015 by Edmentum. All Rights Reserved. Collaboration Tools Instructor Guide Copyright 2015 by Edmentum. All Rights Reserved. Contents Introduction... 3 Viewing Collaborations... 3 Creating Collaborations... 4 Facilitating a Collaboration...

More information

Adobe Illustrator. Always NAME your project file. It should be specific to you and the project you are working on.

Adobe Illustrator. Always NAME your project file. It should be specific to you and the project you are working on. Adobe Illustrator This packet will serve as a basic introduction to Adobe Illustrator and some of the tools it has to offer. It is recommended that anyone looking to become more familiar with the program

More information

QRG: Adding Images, Files and Links in the WYSIWYG Editor

QRG: Adding Images, Files and Links in the WYSIWYG Editor QRG: Adding Images, Files and Links in the WYSIWYG Editor QRG: Adding Images, Files and Links in the WYSIWYG Editor... 1 Image Optimisation for Web use:... 2 Add an Image... 2 Linking to a File... 4 Adding

More information

Adobe Flash CS4 Part 1: Introduction to Flash

Adobe Flash CS4 Part 1: Introduction to Flash CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Flash CS4 Part 1: Introduction to Flash Fall 2010, Version 1.0 Table of Contents Introduction...3 Downloading the Data Files...3

More information

Course Guide (/8/teachers/teacher_course_guide.html) Print (/8/teachers/print_materials.html) LMS (/8

Course Guide (/8/teachers/teacher_course_guide.html) Print (/8/teachers/print_materials.html) LMS (/8 (http://openupresources.org)menu Close OUR Curriculum (http://openupresources.org) Professional Development (http://openupresources.org/illustrative-mathematics-professional-development) Implementation

More information

Create a new document: Save your document regularly! The Big Picture: File>New

Create a new document: Save your document regularly! The Big Picture: File>New Create a new document: File>New 1. On the menu bar, click File, then New. (Note: From now on, this will be indicated using the following notation style: File>New.) 2. Type in the dimensions for the publication

More information

SEER-3D: An Introduction

SEER-3D: An Introduction SEER-3D SEER-3D allows you to open and view part output from many widely-used Computer-Aided Design (CAD) applications, modify the associated data, and import it into SEER for Manufacturing for use in

More information