SEPM Products Release Notes

Size: px
Start display at page:

Download "SEPM Products Release Notes"

Transcription

1 SEPM Products Release Notes September 2009 SEPM X-Translator SEPM X-Raster Copyright SEPM 2009

2 Contents 1 Release Notes Product Versions SEPM X-Translator SEPM X-Raster Licensing Free Smallworld and TFM/TFD Formats License files Translator Feature Model Model Style Sets Rework of the Smallworld Source Overview Model Mode Dataless Mode Display Style Mode Data sources clipboard, objects and geometries Other X-Translator Improvements Export of alphanumeric tables New text source and target Spatial target DXF Model Properties for Model Styles Value Mapping 'Main geometries' feature User Interface Special Attributes SEPM X-Raster Internal file format for ECW and TIFF export formats

3 1 Release Notes 1.1 Product Versions SEPM X-Translator X-Translator Version Core Spatial Technology Version ( ) Smallworld SWAF Smallworld SWAF Smallworld SWAF SEPM X-Raster X-Translator Version Core Spatial Technology Version ( ) Smallworld SWAF Smallworld SWAF Smallworld SWAF 1-3

4 1.2 Licensing Free Smallworld and TFM/TFD Formats In a move to further push the X-Translator, the Smallworld and TFM/TFD licenses can now be freely used. A Smallworld X-Translator user can use this, for example, to copy data from one Smallworld collection to another or to temporarily store some data in TFM/TFD XML files License files You can now license individual formats by copying a xxx.lic file into the directory..\x_translator\licenses The licenses are dynamically read before each transfer. This makes it easier to add and remove licenses to an existing image without recompiling the x_translator_client_settings.magik. In previous releases the licenses dxf and dwg were defined, though this was referring to the same product (100.E0.003 on the SEPM price list). This is now simplified so that only a dxf license (dxf.lic) is needed. 1-4

5 1.3 Translator Feature Model Model Style Sets This X-Translator release introduces the Model Style Set structure: A Model Geometry may have 0, one or more Model Styles Sets. A model style set provides a classification of the Geometry or Collection into a set of Model Styles. Model Model Context Model Dataset Model Enumerator Model Relation Model Collection Model Enumerator Value Model Geometry Model Attribute Model Style Set Model Style More than one model style sets are created by the Smallworld source in the new Display Style Modes Display Scales and Style scales, as described below. A new XML schema file xtr_2009_03.xsd is provided to cover these changes. 1-5

6 1.4 Rework of the Smallworld Source Overview A rework of the Smallworld source covers the following requirements: New model generation modes: Parameter or Option Model Mode (In Smallworld Source options) Dataless Mode (In Smallworld Source options) Display Style Mode (in Smallworld Source Specification dialog) Description Collection Mode: A model collection has the same geometries as the Smallworld collection. This corresponds to the implementation of previous X-Translator releases. Geometry Mode: For each model geometry, a model collection is generated. Also in this mode only one dataset Geography is generated. The model collections are ordered on their geometry's ACE priority. By using the Geometry Mode, a similar order of the geometries in exported DXF oder DWG data can be achieved as in Smallworld (some restrictions apply, see below). Dataless is geometry: In this mode a dataless RWO leads to a model geometry of the owning collection. Dataless is collection: In this mode a dataless RWO table is treated like a real collection. Selected Display Style: Only one model style set is generated for the selected Display Style. This corresponds to the implementation of previous X-Translator releases. Display Scales: Model style sets are generated for all display scales (display styles) in which the owning geometry is visible. Style Scales: Model style sets are generated for all style scales (using the style attribute in the display scale object, similar to the presentation in the style system) in which the owning geometry is visible. Different implementation of the clipboard, objects and geometries data sources: In previous releases, the objects of the clipboard were only exported, if they were also visible in the selected display style. This implementation is now changed. The previous parameter export_only_objects (available only through using the API) has been renamed to objects. The new parameter geometries allows exporting a geometry set. In the new implementation, the Translator Feature Model is generated directly from the objects in the clipboard or from the objects/geometries parameters. This greatly simplifies the use of the X-Translator as an engine. 1-6

7 1.4.2 Model Mode The following examples shows the effect of the model mode: Lets say parks and footpaths in the Cambridge database are visible: When exporting to TFM/TFD, the following models are generated: Collection Mode The model collection park has two geometries annotation and coverage. Geometry Mode Only one dataset Geography is generated. For each visible geometry, one model collection is generated. Note also that the order of the collections depends on the ACE-priority: First park coverage, then footpath centreline, and then park annotation. 1-7

8 Using Geometry Mode to control the order of the DXF geometries You can use the Geometry Mode to create a similar order of the DXF or DWG entities. The following restrictions apply: If geometries have the same ACE priority, the order in the DXF/DWG data may still be different to Smallworld. In the case of mapped geometries, the Smallworld source Geometry Export Mode Top only creates one model geometry. In this case the priority used for the ordering in the TFM is the highest priority of all mapped geometry fields. If the mapped geometries have different ACE-priorities set, the order in the DXF/DWG data will not be the same as in Smallworld. The following screens from AutoCAD show the effects of using the geometry mode: Collection Mode The order is likely to not the same as in Smallworld Geometry Mode The oder of the geometries is the same as in Smallworld (see restrictions above). 1-8

9 1.4.3 Dataless Mode The following example shows the effect of the Dataless Mode for the Cambridge Road and Road Annotation objects: Dataless is geometry The Road Annotation appears as a model geometry of the collection Road. Dataless is collection In this mode, the Road Annotation is modelled as a separate table. 1-9

10 1.4.4 Display Style Mode Let's use again the Road collection to show the effect of the Display Style Mode. The following styles are defined for this collection: Not counting the Auto display style, there are six display styles defined in the Cambridge database (Detail, Block, Neighbourhood, City, Region, Country). The Centreline geometry is set visible in the following display styles: Display Style Mode = Selected Display Style One Model Style Set Detail is created. 1-10

11 Display Style Mode = Display Scales In this mode, Model Style Sets are created for each display scale in which the geometry is visible. Display Style Mode = Style Scales In this mode, Model Style Sets are created for those display scales that correspond to the different visibilities (e.g. "Detail etc." and "Neighbourhood etc." in the Style System). 1-11

12 1.4.5 Data sources clipboard, objects and geometries The data model of the Smallworld source is now directly generated from the objects or given through the objects or geometries properties: Let's say you select a bunch of objects in the map: The corresponding model is automatically derived from the given set of objects. The following code snippet shows how you could export a set of geometries through the X-Translator API and the new geometries property: _local l_geoms << l_maps.current_map.current_selection l_source_spec << x_translator_smallworld_source_spec.new( :data_source, :geometries, :geometries, l_geoms, :ace_context, "Electricity", :ace_control, l_ace_control, :gs_factory, l_gs_factory, :display_style_name, "Detail", :style_category, "Default", :geometry_export_mode, :top, :export_area, export_area, :source_world, source_world, :is_unit, _false, :unit_name, :mm, :csys_name, l_csys_name, ) _local l_target_spec << x_translator_dxf_target_spec.new( :path, "D:\Temp\new_sw_source\roads.dxf", :scale, , :is_unit, _false, :csys_name, l_csys_name, :unit_name, :m ) _local l_mapping << x_translator_mapping.new() _local l_engine << x_translator.new() l_engine.source_spec << l_source_spec l_engine.target_spec << l_target_spec l_engine.mapping << l_mapping l_engine.options << l_options l_engine.x_transfer() 1-12

13 1.5 Other X-Translator Improvements Export of alphanumeric tables You can now select tables with no geometries in the Smallworld source Tables tab for export. You could, for example, use the new text target specification to export this data to comma-separated text files. 1-13

14 1.5.2 New text source and target Text source and target specifications allow import and export of comma-delimited Ascii files. The following features are available: Lines with #Dataset and #Collection headers lead to automatically searching for the target dataset and collection, which is then used in the Connect Matching command. The external names of the datasets and collections are used. Lines with headers #x#<external geometry field name>, #y#.. and optionally #z#.. lead to a point geometry in the source model #id#<external name of an identifier field>. If set, the field is connected with the Connect ID to the target identifier field. For example, when using this file Select the directory with the file in the dialog Text Source Specification Select the corresponding target dataset in the Smallworld target: 1-14

15 The following source model is created and can be connected automatically to target collection with Connect Matching: You can now update the existing data in the database with the new data from the text file. 1-15

16 1.5.3 Spatial target The spatial target specification was already part of the X-Translator package for some time. You can now purchase this module as a separate product. Note that this feature is only available through Magik scripting and usually needs some time for setting up. The following functionality is available: Generation of the instance metadata shared constant based on a source TFM model Generation of SQL scripts to create data structures inside Oracle The x_translator_spatial_target_spec class to copy data from Smallworld to Oracle The following example shows how to replicate the Road table of the Cambridge database to Oracle: Create a x_translator_smallworld_source_spec, use the collection_predicates property to define the tables to export Create a x_translator_spatial_target_spec. Use the method x_create_database() to create SQL and instance metadata Install the data model in Oracle using Oracle tools Setup an x_oracle configuration using the Magik file generated in x_create_database() above Open the database with x_oracle_manager.connect_all(). Make the SDO Geometries visible in the ACE with the command: sw:x_translator_ace_interface.make_all_visible(:oradb, "Electricity") Use x_transfer() as shown below to copy data from Smallworld to Oracle _method system.export_oracam( p_is_create_model )... _local l_source_spec << x_translator_smallworld_source_spec.new( :data_source, :all, :ace_context, "Electricity", :collection_predicates, hash_table.new_with( :gis, { "min_road" } ), :display_style_name, "Region", :source_world, l_world, :is_unit, _false, :csys_name, :uk_british_national_grid, :unit_name, :mm ) _local l_target_spec << x_translator_spatial_target_spec.new( :ora_dataset_name, :oradb, :dir, l_dir, :configuration_name, :cambridge_bng_m, :is_unit, _false, :csys_name, :uk_british_national_grid, :unit_name, :mm 1-16

17 ) _if p_is_create_model _is _true _then l_source_spec.x_set_options(l_options) l_source_spec.x_open_read() _local l_model << l_source_spec.x_get_source_model(:initial) _else l_target_spec.x_create_database(l_model) _local l_mapping << x_translator_mapping.new() _local l_engine << x_translator.new() l_engine.source_spec << l_source_spec l_engine.target_spec << l_target_spec l_engine.mapping << l_mapping l_engine.options << l_options l_engine.log_dir << l_dir _endif _endmethod $ l_engine.x_transfer() DXF Model Properties for Model Styles You can now set DXF model style properties on individual model styles. (In previous releases it was only possible to set DXF properties for model geometries and model collections) 1-17

18 1.5.5 Value Mapping The value mapping allows mapping source values to target values. This is most useful to map source enumerator values to target enumerators, but the function can also be used for any data type. As an example, let's assume you would like to copy rail lines to roads in the Cambridge database: Create a new value mapping by selecting a source and a target attribute in the source and target model. Note that only the data type of the model attributes are used. In the mapping tree, select Add Value Mapping... with right-mouse-button menu. In the value mapping screen, you can now add mappings. For other data types you will have to enter the value in the text item. You can now select a value mapping for a given attribute mapping using the Assign Value Mapping... command When the data is now loaded, the values are converted accordingly 1-18

19 1.5.6 'Main geometries' feature When exporting to the Shape format, it was possible in previous SEPM Translator versions to tag special geometries of a collection as a 'Main Geometry'. Alphanumeric attributes were only exported for those main geometries to the Shape/DBF target files. The same behaviour can now be achieved through the following settings: In the model properties of the main geometry, set the Maingeometry toggle: In the Shape options, select the value Create attributes for main geometries only for Attribute mode User Interface The areas for the source model, target model and mapping can now be individually resized. 1-19

20 1.5.8 Special Attributes In some case, the definition of Special Source Attributes is useful to get around specific loading problems. You can add special attributes by using the right mouse menu Special Attributes... command, which launches the following dialog: The following special attributes are defined: Special Attribute System Date System Time Collection Counter Transfer Counter UVA Counter Fixed Value Description The current data The current time A counter which is set per source collection A counter which is set per transfer process The value is determined through a UVA. You can configure the UVA to use in the x_translator_settings. A fixed value (a string). 1-20

21 1.6 SEPM X-Raster Internal file format for ECW and TIFF export formats When exporting to ECW and TIFF files, the Smallworld data is first saved into temporary raster files. The previously used JPEG format is now changed to PNG, which removes the quality problem which was present with the JPEG format. 1-21

MicroStation. FDO Reader USER S MANUAL. [Företagets adress]

MicroStation. FDO Reader USER S MANUAL. [Företagets adress] MicroStation FDO Reader USER S MANUAL [Företagets adress] MicroStation FDO Reader - User s Manual, 2018-10-27 copyright, 2018 ringduvevägen 13, 132 47 saltsjö-boo e-mail: consulting@surell.se, web: www.surell.se

More information

SEPM Products SEPM X-Database SEPM X-Translator SEPM X-Raster SEPM NEPLAN Interface SEPM SIA405 Interface SEPM ISYBAU Interface

SEPM Products SEPM X-Database SEPM X-Translator SEPM X-Raster SEPM NEPLAN Interface SEPM SIA405 Interface SEPM ISYBAU Interface SEPM Products 2017-02 SEPM X-Database SEPM X-Translator SEPM X-Raster SEPM NEPLAN Interface SEPM SIA405 Interface SEPM ISYBAU Interface Product Description Copyright SEPM 2017 Document Data Key Abstract

More information

Introduction to Geodatabase and Spatial Management in ArcGIS. Craig Gillgrass Esri

Introduction to Geodatabase and Spatial Management in ArcGIS. Craig Gillgrass Esri Introduction to Geodatabase and Spatial Management in ArcGIS Craig Gillgrass Esri Session Path The Geodatabase - What is it? - Why use it? - What types are there? - What can I do with it? Query Layers

More information

Feature Enhancements by Release

Feature Enhancements by Release Autodesk Map Feature Enhancements by Release This document highlights the feature enhancements that have occurred with each release of Autodesk Map software from Release 4 (2000i) through the current 2004

More information

World Premium Points of Interest Getting Started Guide

World Premium Points of Interest Getting Started Guide World Premium Points of Interest Getting Started Guide Version: 2.0 NOTICE: Copyright Pitney Bowes 2017. All Rights Reserved. 1 Table of Contents INTRODUCTION... 3 1. Preface... 3 2. Data Characteristics...

More information

Using ESRI data in Autodesk ISD Products

Using ESRI data in Autodesk ISD Products GI13-3 Using ESRI data in Autodesk ISD Products 1.5 hr. Class 02-Dec-03 3:30pm - 5:00pm Session Description: We will focus on using data in a variety of ESRI formats within the Autodesk GIS product line,

More information

Establishing a Geospatial EnvironmentChapter1:

Establishing a Geospatial EnvironmentChapter1: Chapter 1 Establishing a Geospatial EnvironmentChapter1: The lessons in this chapter describe working with the SDF format, and feature sources such as raster and ODBC points. Feature sources can be both

More information

World Premium Points of Interest Getting Started Guide

World Premium Points of Interest Getting Started Guide World Premium Points of Interest Getting Started Guide Version: 2.3 NOTICE: Copyright Pitney Bowes 2019. All Rights Reserved. 1 Table of Contents INTRODUCTION... 3 1. Preface... 3 2. Data Characteristics...

More information

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Demo Introduction Keywords: Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Goal of Demo: Oracle Big Data Preparation Cloud Services can ingest data from various

More information

Croatian Motorways Road Database Management System

Croatian Motorways Road Database Management System Croatian Motorways Road Database Management System Marko Turković FOSS4G-Europe 2014 Presentation overview About us System introduction System component architecture Kosmo Desktop WebGIS portal Future

More information

World Premium Points of Interest Getting Started Guide

World Premium Points of Interest Getting Started Guide World Premium Points of Interest Getting Started Guide Version: 0.1 1 Table of Contents INTRODUCTION... 3 1. Preface... 3 2. Data Characteristics... 3 3. Loading the data into RDMS Databases... 3 Oracle...

More information

Objectives Learn how to work with projections in SMS, and how to combine data from different coordinate systems into the same SMS project.

Objectives Learn how to work with projections in SMS, and how to combine data from different coordinate systems into the same SMS project. v. 12.2 SMS 12.2 Tutorial Working with map projections in SMS Objectives Learn how to work with projections in SMS, and how to combine data from different coordinate systems into the same SMS project.

More information

Release notes for version 3.7.1

Release notes for version 3.7.1 Release notes for version 3.7.1 Important! Create a backup copy of your projects before updating to the new version. Projects saved in the new version can t be opened in versions earlier than 3.7. What

More information

Objectives Learn how to work with projections in SMS, and how to combine data from different coordinate systems into the same SMS project.

Objectives Learn how to work with projections in SMS, and how to combine data from different coordinate systems into the same SMS project. v. 12.3 SMS 12.3 Tutorial Working with map projections in SMS Objectives Learn how to work with projections in SMS, and how to combine data from different coordinate systems into the same SMS project.

More information

Marushka Server. Product Specification

Marushka Server. Product Specification Introductory Information Product Marushka Server represents a new generation of tools (devices) for publication and use of GIS data in the Internet and intranet. It is built on component technology in.net

More information

Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project.

Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project. v. 10.2 GMS 10.2 Tutorial Working with map projections in GMS Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project.

More information

Las Vegas, Nevada November 27-30, 2001

Las Vegas, Nevada November 27-30, 2001 Las Vegas, Nevada November 27-30, 2001 Speaker Name: LeAnne C. Thurmond Project Automation Services Fluor Daniel 100 Fluor Daniel Drive Greenville, SC 29607 USA Phone: 864-281-6855 Fax: 864-895-8161 leanne.thurmond@fluor.com

More information

SEPM Products Release New Features

SEPM Products Release New Features SEPM Products Release 2014-01 New Features Copyright SEPM 2014 Document Data Key Value Abstract This Document describes new features in the SEPM products 2014-01 Version 2014-01 Disclaimers All logos and

More information

To the GeoView System Overview Online Training Course

To the GeoView System Overview Online Training Course Welcome! To the GeoView System Overview Online Training Course The Alberta Department of Energy provides GeoView as a mapping system to enable users to find geographic information in Alberta. GeoView retrieves

More information

Autodesk Revit Structure Autodesk

Autodesk Revit Structure Autodesk Autodesk Revit Structure 2011 What s New Top Features Autodesk Revit Structure 2011 Software Enhanced Design Features Fit and Finish Slanted columns Beam systems and trusses Concrete clean-up Concrete

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

ArcMap - EXPLORING THE DATABASE Part I. SPATIAL DATA FORMATS Part II

ArcMap - EXPLORING THE DATABASE Part I. SPATIAL DATA FORMATS Part II Week 5 ArcMap - EXPLORING THE DATABASE Part I SPATIAL DATA FORMATS Part II topics of the week Exploring the Database More on the Table of Contents Exploration tools Identify, Find, Measure, Map tips, Hyperlink,

More information

CADMANAGERTOOLS.COM. LayoutManager 4.1. Layout Management tool for AutoCAD and Verticals

CADMANAGERTOOLS.COM. LayoutManager 4.1. Layout Management tool for AutoCAD and Verticals CADMANAGERTOOLS.COM LayoutManager 4.1 Layout Management tool for AutoCAD and Verticals Compatible with AutoCAD 2013 to 2018 LayoutManager Layout tool for AutoCAD Introduction: The LayoutManager is a powerful

More information

D2M2 - GIS USER'S MANUAL

D2M2 - GIS USER'S MANUAL D2M2 - GIS USER'S MANUAL USACE ERDC, July 2012 1 Content Overview of D2M2... 3 User Interface... 4 Menus... 4 File Menu... 4 Edit Menu... 5 View Menu... 5 Layer Menu... 6 Analysis Menu... 6 Tools Menu...

More information

Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project.

Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project. v. 10.4 GMS 10.4 Tutorial Working with map projections in GMS Objectives Learn how to work with projections in GMS, and how to combine data from different coordinate systems into the same GMS project.

More information

Welcome to AutoCAD 2018

Welcome to AutoCAD 2018 Welcome to AutoCAD 2018 Drawing File Format AutoCAD 2018 comes with a drawing file format change. Previously, the AutoCAD 2013 Drawing File Format has been used. As you can see in the screenshot, the text

More information

v Overview SMS Tutorials Prerequisites Requirements Time Objectives

v Overview SMS Tutorials Prerequisites Requirements Time Objectives v. 12.2 SMS 12.2 Tutorial Overview Objectives This tutorial describes the major components of the SMS interface and gives a brief introduction to the different SMS modules. Ideally, this tutorial should

More information

2 CARTALINX OPERATION MANUAL

2 CARTALINX OPERATION MANUAL 2 CARTALINX OPERATION MANUAL 2-1 Final Report (Volume IV) Usefulness of CartaLinx GeoConcept is an GIS software that is useful with good operability in mapping data processing, but it is not so strong

More information

Effective Collaboration using Autodesk Revit Structure and Autodesk Building Systems

Effective Collaboration using Autodesk Revit Structure and Autodesk Building Systems AUTODESK REVIT STRUCTURE AUTODESK BUILDING SYSTEMS Effective Collaboration using Autodesk Revit Structure and Autodesk Building Systems This white paper explains how structural engineers using Autodesk

More information

DesignCAD 25.1 Release Notes

DesignCAD 25.1 Release Notes DesignCAD 25.1 Release Notes October 2015. DesignCAD 25.1 contains the following enhancements and improvements: File Save improvements: Historically, some users have been having problems when saving directly

More information

FastLook. Distributed Network License

FastLook. Distributed Network License FastLook Distributed Network License This guide is intended to help you install the Distributed Network version of FastLook. Please refer to the electronic help file for more details on the operation of

More information

The Rapid Inquiry Facility (RIF)

The Rapid Inquiry Facility (RIF) The Rapid Inquiry Facility (RIF) Version 4.0 Data Loader user guide Authors (2017): Parkes, B. Small Area Health Statistics Unit (SAHSU) MRC-PHE Centre for Environment and Health Department of Epidemiology

More information

FastLook. LAN License. This guide is intended to help you install the FastLook LAN version.

FastLook. LAN License. This guide is intended to help you install the FastLook LAN version. FastLook LAN License This guide is intended to help you install the FastLook LAN version. Please refer to the electronic help file for more details on the operation of FastLook. Contents Overview...1 Server

More information

Contents. Overview...2. Server Install...2. Client Install...4. Administration Module...6. FastLook Features...10

Contents. Overview...2. Server Install...2. Client Install...4. Administration Module...6. FastLook Features...10 Contents Overview...2 Server Install...2 Client Install...4 Administration Module...6 FastLook Features...10 This guide is intended to help you install the LAN version of FastLook. Please refer to the

More information

12d Synergy V4 Release Notes. 12d Synergy V4 Release Notes. Prerequisites. Upgrade Path. Check Outs. Scripts. Workspaces

12d Synergy V4 Release Notes. 12d Synergy V4 Release Notes. Prerequisites. Upgrade Path. Check Outs. Scripts. Workspaces 12d Synergy V4 Release Notes V4 contains a large number of features. Many of these features are listed in this document, but this list may not be exhaustive. This document also contains pre-requisites

More information

Contents. Overview...2. License manager Installation...2. Configure License Manager...3. Client Installation...8. FastLook Features...

Contents. Overview...2. License manager Installation...2. Configure License Manager...3. Client Installation...8. FastLook Features... Contents Overview...2 License manager Installation...2 Configure License Manager...3 Client Installation...8 FastLook Features...10 This guide is intended to help you install the Distributed Network version

More information

RMRHome Home Inventory

RMRHome Home Inventory RMRHome (for Windows Mobile) User Guide RMR Software 2003 All rights reserved Contents Contents...1 RMRHome...2 Program Setup...3 Currencies...3 Preferences...3 Houses...5 Rooms Screen...5 Category Screen...6

More information

The Kronometer Handbook. Elvis Angelaccio

The Kronometer Handbook. Elvis Angelaccio Elvis Angelaccio 2 Contents 1 Introduction 5 2 Usage 6 2.1 General Usage........................................ 6 2.1.1 Save and Restore Sessions............................. 6 2.1.2 Save a Session....................................

More information

AutoCAD Mechanical Associative Hide

AutoCAD Mechanical Associative Hide AutoCAD Mechanical Associative Hide Jim Swain Design Applications Engineer Manufacturing Solutions Synergis September 26, 2005 This document is an introduction to the hiding tools available in AutoCAD

More information

TextAloud 4 New Features Updated September 1, 2017

TextAloud 4 New Features Updated September 1, 2017 TextAloud 4 New Features Updated September 1, 2017 New User Interface We have reworked the entire user interface and settings dialogs. Here is an overview of the main things to look for. New Settings Dialog

More information

Basics in good research data management (RDM) for reviewing DMPs

Basics in good research data management (RDM) for reviewing DMPs Basics in good research data management (RDM) for reviewing DMPs S. Venkataraman Digital Curation Centre, Edinburgh s.venkataraman@ed.ac.uk https://doi.org/10.5281/zenodo.1461601 FOSTER & OpenAIRE webinar,

More information

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE)

Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Spatial Data Standards for Facilities, Infrastructure, and Environment (SDSFIE) Browse/Generate User Guide Version 1.3 (23 April 2018) Prepared For: US Army Corps of Engineers 2018 1 Browse/Generate User

More information

Network licenses (5 seat minimum - price per seat and excl. VAT): Network extension (existing license required - price per seat and excl.

Network licenses (5 seat minimum - price per seat and excl. VAT): Network extension (existing license required - price per seat and excl. Pricing SketchUp Pro If you want to buy SketchUp Pro there are several options to choose from: Commercial Licenses A Standalone license costs per license only (excl. VAT): 655,- This price includes 1 year

More information

Esri Geodatabase (File Geodatabase API) Reader/Writer

Esri Geodatabase (File Geodatabase API) Reader/Writer FME Readers and Writers 2013 SP1 Esri Geodatabase (File Geodatabase API) Reader/Writer The Esri Geodatabase (File Geodatabase API) reader and writer modules allow FME to store data in and retrieve data

More information

AutoCAD Map 3D and ESRI ArcSDE

AutoCAD Map 3D and ESRI ArcSDE AUTOCAD MAP 3D 2009 WHITE PAPER AutoCAD Map 3D and ESRI ArcSDE Many organizations, such as utilities, telecommunication providers, and government agencies, depend on geospatial data that is stored in a

More information

How to view details for your project and view the project map

How to view details for your project and view the project map Tutorial How to view details for your project and view the project map Objectives This tutorial shows how to access EPANET model details and visualize model results using the Map page. Prerequisites Login

More information

gvsig Lecture 3 gvsig: an advanced GIS client

gvsig Lecture 3 gvsig: an advanced GIS client gvsig Lecture 3 gvsig: an advanced GIS client INDEX What is gvsig Features Supported formats Main Functions Developers guide to gvsig Internal organization Object model Used libraries Plugins The future

More information

Quick Start Guide. CodeGenerator v1.5.0

Quick Start Guide. CodeGenerator v1.5.0 Contents Revision History... 2 Summary... 3 How It Works... 4 Database Schema... 4 Customization... 4 APIs... 4 Annotations... 4 Attributes... 5 Transformation & Output... 5 Creating a Project... 6 General

More information

QDA Miner. Addendum v2.0

QDA Miner. Addendum v2.0 QDA Miner Addendum v2.0 QDA Miner is an easy-to-use qualitative analysis software for coding, annotating, retrieving and reviewing coded data and documents such as open-ended responses, customer comments,

More information

Network Analysis, Visualization, & Graphing TORonto (NAViGaTOR) User Documentation

Network Analysis, Visualization, & Graphing TORonto (NAViGaTOR) User Documentation Network Analysis, Visualization, & Graphing TORonto (NAViGaTOR) User Documentation Jurisica Lab, Ontario Cancer Institute http://ophid.utoronto.ca/navigator/ November 10, 2006 Contents 1 Introduction 2

More information

Renderize Live Overview

Renderize Live Overview Renderize Live Overview The Renderize Live interface is designed to offer a comfortable, intuitive environment in which an operator can create projects. A project is a savable work session that contains

More information

v SMS 11.2 Tutorial Overview Prerequisites Requirements Time Objectives

v SMS 11.2 Tutorial Overview Prerequisites Requirements Time Objectives v. 11.2 SMS 11.2 Tutorial Overview Objectives This tutorial describes the major components of the SMS interface and gives a brief introduction to the different SMS modules. Ideally, this tutorial should

More information

FDO Data Access Technology at a Glance

FDO Data Access Technology at a Glance Autodesk Geospatial FDO Data Access Technology at a Glance Work seamlessly with your geospatial data whatever the format 1 The Challenge The growing need for openness and interoperability between traditional

More information

Viewer. Quick Reference Guide

Viewer. Quick Reference Guide Viewer Quick Reference Guide igrafx 2009 Viewer Quick Reference Guide Table of Contents igrafx Viewer Quick Reference Guide........................................................3 igrafx Viewer Interface..................................................

More information

The license server and all workstations that will run applications dependent on network licensing must run TCP/IP protocol.

The license server and all workstations that will run applications dependent on network licensing must run TCP/IP protocol. Autodesk AutoCAD 2020 - including specialized toolsets System requirements Supported operating systems Microsoft Windows 7 SP1 with Update KB4019990 (64-bit only) Microsoft Windows 8.1 with Update KB2919355

More information

Definiens. Tissue Studio 4.4. Tutorial 4: Manual ROI Selection and Marker Area Detection

Definiens. Tissue Studio 4.4. Tutorial 4: Manual ROI Selection and Marker Area Detection Definiens Tissue Studio 4.4 Tutorial 4: Manual ROI Selection and Marker Area Detection Tutorial 4: Manual ROI Selection and Marker Area Detection Imprint and Version Copyright 2017 Definiens AG. All rights

More information

Getting Started with VicMap

Getting Started with VicMap Getting Started with VicMap This is a brief overview of some of the tools and features available on VicMap. At any time you can right click on the map and click Identify What s Here to find more information

More information

The viewer makes it easy to view and collaborate on virtually any file, including Microsoft Office documents, PDFs, CAD drawings, and image files.

The viewer makes it easy to view and collaborate on virtually any file, including Microsoft Office documents, PDFs, CAD drawings, and image files. Parts of this functionality will only be available in INTERAXO Pro. Introduction The viewer provides users with the capability to load a wide variety of document types online using a web browser. Documents

More information

SuperGIS Server 3.2 Value Edition Specification

SuperGIS Server 3.2 Value Edition Specification SuperGIS Server 3.2 Value Edition Specification 20140826 Specification 1. All of the services support SOAP (Simple Object Access Protocol). 2. Use map file created by SuperGIS Desktop as map services SuperGIS

More information

LAB 1: Introduction to ArcGIS 8

LAB 1: Introduction to ArcGIS 8 LAB 1: Introduction to ArcGIS 8 Outline Introduction Purpose Lab Basics o About the Computers o About the software o Additional information Data ArcGIS Applications o Starting ArcGIS o o o Conclusion To

More information

Release notes for version 3.7.2

Release notes for version 3.7.2 Release notes for version 3.7.2 Important! Create a backup copy of your projects before updating to the new version. Projects saved in the new version can t be opened in versions earlier than 3.7. Breaking

More information

SPATIAL DESIGN NETWORK ANALYSIS sdna in QGIS

SPATIAL DESIGN NETWORK ANALYSIS sdna in QGIS SPATIAL DESIGN NETWORK ANALYSIS sdna in QGIS 1 Installing sdna+ as plugin for QGIS... 2 1.1 Download & Install sdna... 2 1.2 Setting up sdna in QGIS... 3 1.3 Open the sdna toolbox... 5 2 sdna in QGIS Processing

More information

What s New in Emulate3D. New Tag Grid

What s New in Emulate3D. New Tag Grid What s New in 2016 Emulate3D New Tag Grid The TagBrowser Tag Grid now appears in the main Demo3D properties pane, making it easier to see the tags bound to each component in the model, and to observe component

More information

Converting Your PDFs to Excel

Converting Your PDFs to Excel Converting Your PDFs to Excel Easy 3-Step Guide STEP 1: OPEN YOUR PDF Select the Open... command from the File menu. STEP 3: CONVERTING TO EXCEL After selecting, you are ready for conversion. For conversions

More information

Exercise 6a: Using free and/or open source tools to build workflows to manipulate. LAStools

Exercise 6a: Using free and/or open source tools to build workflows to manipulate. LAStools Exercise 6a: Using free and/or open source tools to build workflows to manipulate and process LiDAR data: LAStools Christopher Crosby Last Revised: December 1st, 2009 Exercises in this series: 1. LAStools

More information

Introduction to ArcSDE 8. John Calkins

Introduction to ArcSDE 8. John Calkins Introduction to ArcSDE 8 John Calkins Why are you here? Introduction to ArcSDE? What is a GeoDatabase? Existing SDE user? Existing ArcInfo user? Technical details on implementation? Just confused... ArcSDE

More information

New features in MediaBank 3.1p1

New features in MediaBank 3.1p1 New features in MediaBank 3.1p1 Place Holders You can create Place Holders to represent elements that do not have physical assets attached to them. This makes it easier to track and work with assets before

More information

Reporter Tutorial: Intermediate

Reporter Tutorial: Intermediate Reporter Tutorial: Intermediate Refer to the following sections for guidance on using these features of the Reporter: Lesson 1 Data Relationships in Reports Lesson 2 Create Tutorial Training Report Lesson

More information

CHAPTER TWO QUICKSTART. Projects and Session Files. Layers and Map Compositions CHAPTER TWO QUICKSTART 5

CHAPTER TWO QUICKSTART. Projects and Session Files. Layers and Map Compositions CHAPTER TWO QUICKSTART 5 CHAPTER TWO QUICKSTART Projects and Session Files Projects are an organizing concept throughout TerrSet. Projects contain folders which in turn contain files. Projects are similar to the concept of a geodatabase

More information

DiskBoss DATA MANAGEMENT

DiskBoss DATA MANAGEMENT DiskBoss DATA MANAGEMENT Disk Change Monitor Version 9.3 May 2018 www.diskboss.com info@flexense.com 1 1 Product Overview DiskBoss is an automated, policy-based data management solution allowing one to

More information

barge In option 127 bigdecimal variables 16 biginteger variables 16 boolean variables 15 business hours step 100

barge In option 127 bigdecimal variables 16 biginteger variables 16 boolean variables 15 business hours step 100 A aa_sample1.aef file 25 aa script 1 acceptable digits, specifying 137 accept step 67 annotate step 99 attach to fax step 95 auto attendant sample script 1 B barge In option 127 bigdecimal variables 16

More information

99 Shapes and Shape Manager

99 Shapes and Shape Manager 99 Shapes and Shape Manager Copyright Bentley Systems. Introduction Bentley Rebar asks the user to place a bar by the number of legs, rather than input of the code shape as some other programs do. This

More information

CBCL Limited Tool Palettes Tutorial 2012 REV. 01. CBCL Design Management & Best CAD Practices. Our Vision

CBCL Limited Tool Palettes Tutorial 2012 REV. 01. CBCL Design Management & Best CAD Practices. Our Vision CBCL Limited Tool Palettes Tutorial CBCL Design Management & Best CAD Practices 2012 REV. 01 Our Vision To be the most respected and successful Atlantic Canada based employeeowned firm, delivering multidiscipline

More information

Using Ricoh ProcessDirector Plug-in for Adobe Acrobat

Using Ricoh ProcessDirector Plug-in for Adobe Acrobat RICOH ProcessDirector Using Ricoh ProcessDirector Plug-in for Adobe Acrobat Overview Using the plug-in 1 Version 3.6.0 Troubleshooting 3 Accessibility For information not in this manual, refer to the Help

More information

Converting Your PDFs to Excel

Converting Your PDFs to Excel Converting Your PDFs to Excel Easy 3-Step Guide STEP 1: OPEN YOUR PDF Select the Open... command from the File menu. STEP 3: CONVERTING TO EXCEL After selecting, you are ready for conversion. For conversions

More information

Quick Guide to MapWindow GIS Desktop Application

Quick Guide to MapWindow GIS Desktop Application Quick Guide to MapWindow 1 Quick Guide to MapWindow GIS Desktop Application Version 2 January 2007 Adapted by Tom Croft. This is a summary user guide for commonly used tools and capabilities and does not

More information

Managing Content with AutoCAD DesignCenter

Managing Content with AutoCAD DesignCenter Managing Content with AutoCAD DesignCenter In This Chapter 14 This chapter introduces AutoCAD DesignCenter. You can now locate and organize drawing data and insert blocks, layers, external references,

More information

v SMS 11.1 Tutorial Overview Time minutes

v SMS 11.1 Tutorial Overview Time minutes v. 11.1 SMS 11.1 Tutorial Overview Objectives This tutorial describes the major components of the SMS interface and gives a brief introduction to the different SMS modules. It is suggested that this tutorial

More information

AutoCAD DWG Drawing Limitations in SAP 3D Visual Enterprise 9.0 FP02

AutoCAD DWG Drawing Limitations in SAP 3D Visual Enterprise 9.0 FP02 AutoCAD DWG Drawing Limitations in SAP 3D Visual Enterprise 9.0 FP02 AutoCAD Import Limitations The following is a list of AutoCAD features that will not give an expected viewable when using SAP 3D Visual

More information

Report of the working group on meteorological visualisation applications. November Convener: Jens Daabeck Report: Iain Russell.

Report of the working group on meteorological visualisation applications. November Convener: Jens Daabeck Report: Iain Russell. Report of the working group on meteorological visualisation applications November 2005 Convener: Jens Daabeck Report: Iain Russell Slide 1 Output formats as they relate to meteorological plots Moderator:

More information

Data Immersion : Providing Integrated Data to Infinity Scientists. Kevin Gilpin Principal Engineer Infinity Pharmaceuticals October 19, 2004

Data Immersion : Providing Integrated Data to Infinity Scientists. Kevin Gilpin Principal Engineer Infinity Pharmaceuticals October 19, 2004 Data Immersion : Providing Integrated Data to Infinity Scientists Kevin Gilpin Principal Engineer Infinity Pharmaceuticals October 19, 2004 Informatics at Infinity Understand the nature of the science

More information

AutoCAD Civil 3D 2011 ESSENTIALS

AutoCAD Civil 3D 2011 ESSENTIALS AutoCAD Civil 3D 2011 ESSENTIALS SDC PUBLICATIONS www.sdcpublications.com Schroff Development Corporation Module 2 Parcels Level 1 This module introduces: Section 1: Parcels Overview Introduction to Parcels

More information

Healthcare Database Connector

Healthcare Database Connector Healthcare Database Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

FHWA's TNM 3.0 Status

FHWA's TNM 3.0 Status FHWA's TNM 3.0 Status Aaron Hastings ( Aaron.Hastings@dot.gov ) U.S. DOT / RITA Volpe Center Acoustics Facility Environmental Measurement and Modeling Division FHWA s Traffic Noise Model (TNM) Version

More information

Introduction to ArcGIS I

Introduction to ArcGIS I Introduction 1-1 What is ArcGIS? ArcGIS Clients ArcReader E X T E N S I O N S ArcGIS Desktop ArcView ArcEditor ArcInfo ArcGIS Engine ArcPad Custom Application E X T E N S I O N S Web Browser Components

More information

Integrating CAD Data with ArcGIS

Integrating CAD Data with ArcGIS Integrating CAD Data with ArcGIS Agenda An Overview of CAD Drawings CAD Data Structure in ArcGIS Visualization Georeferencing Data Conversion ArcGIS for AutoCAD Q & A CAD Drawings - Overview Widely used

More information

Exporting ArcScene to 3D Web Scenes. Documents. An Esri White Paper November 2013

Exporting ArcScene to 3D Web Scenes. Documents. An Esri White Paper November 2013 Exporting ArcScene to 3D Web Scenes Documents An Esri White Paper November 2013 Copyright 2013 Esri All rights reserved. Printed in the United States of America. The information contained in this document

More information

Questions and Answers

Questions and Answers Autodesk AutoCAD Raster Design 2011 Questions and Answers AutoCAD Raster Design 2011 Questions and Answers Make the most of rasterized scanned drawings, maps, aerial photos, satellite imagery, and digital

More information

A set of annotation templates that maybe used to label objects using information input in the data model mentioned above.

A set of annotation templates that maybe used to label objects using information input in the data model mentioned above. AUTOCAD MAP 3D 2009 WHITE PAPER Industry Toolkits Introduction In today s world, passing of information between organizations is an integral part of many processes. With this comes complexity in a company

More information

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

Tool to create service areas diagrams from data extracted from an SNS formatted database.

Tool to create service areas diagrams from data extracted from an SNS formatted database. History of Changes GIMS Package 11.4 September 2018 Display of gain labels on gain contours. Tool to create service areas diagrams from data extracted from an SNS formatted database. Toggling the display

More information

What's New in ArcGIS 9.2 Service Packs

What's New in ArcGIS 9.2 Service Packs What's New in ArcGIS 9.2 Service Packs 18 July 2007 Updated for Service Pack 3 This document describes the main enhancements to 9.2 added by the service packs. It does not cover the bug fixes and quality

More information

Press the Plus + key to zoom in. Press the Minus - key to zoom out. Scroll the mouse wheel away from you to zoom in; towards you to zoom out.

Press the Plus + key to zoom in. Press the Minus - key to zoom out. Scroll the mouse wheel away from you to zoom in; towards you to zoom out. Navigate Around the Map Interactive maps provide many choices for displaying information, searching for more details, and moving around the map. Most navigation uses the mouse, but at times you may also

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

MAP ASPEN Training Manual. Navigate back to City of Aspen Home, GIS Home, Map Aspen Home or the Data Catalog from any page in the site.

MAP ASPEN Training Manual. Navigate back to City of Aspen Home, GIS Home, Map Aspen Home or the Data Catalog from any page in the site. Home Page Features: Top Navigation Bar MAP ASPEN Training Manual Navigate back to City of Aspen Home, GIS Home, Map Aspen Home or the Data Catalog from any page in the site. Search Bar Search for all content

More information

Ocean Data View. Getting Started

Ocean Data View. Getting Started Ocean Data View Getting Started January 20, 2011 1 Contents 1 General Information... 3 1.1 Installation... 3 1.2 ODV User Directory... 3 1.3 Application Window... 3 1.4 Data Model... 5 1.5 Data Import...

More information

Stanfords Portal. User Guide. Stanfords Portal User Guide - 1 -

Stanfords Portal. User Guide. Stanfords Portal User Guide - 1 - - 1 - Stanfords Portal User Guide Stanfords Digital 12-14 Long Acre, WC2E 9LP Guide Contents Stanfords Portal User Guide - 2 - Stanfords For Business is one of the country s leading suppliers of large

More information

DAP Administrator 11 User Guide

DAP Administrator 11 User Guide DAP Administrator 11 User Guide www.geosoft.com Contents Chapter 1: DAP Administrator 1 DAP Administrator Overview 1 New Features in DAP Administrator 11 1 Chapter 2: Install DAP Administrator 4 Installing

More information

AutoCAD DWG Drawing Limitations in SAP 3D Visual Enterprise 9.0 FP03

AutoCAD DWG Drawing Limitations in SAP 3D Visual Enterprise 9.0 FP03 AutoCAD DWG Drawing Limitations in SAP 3D Visual Enterprise 9.0 FP03 AutoCAD Import Limitations The following is a list of AutoCAD features that will not give an expected viewable when using SAP 3D Visual

More information

Introduction to Autodesk MapGuide EnterpriseChapter1:

Introduction to Autodesk MapGuide EnterpriseChapter1: Chapter 1 Introduction to Autodesk MapGuide EnterpriseChapter1: In this chapter, you review the high-level key components that comprise Autodesk MapGuide Enterprise. The Autodesk MapGuide Studio, an integral

More information