Esri Geodatabase (File Geodatabase API) Reader/Writer

Size: px
Start display at page:

Download "Esri Geodatabase (File Geodatabase API) Reader/Writer"

Transcription

1 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 from Esri s File Geodatabase, based on the File Geodatabase API. In contrast to corresponding ArcObjects-based Readers/Writers, no additional software is required to use this format, but less functionality is available. Format Notes The File Geodatabase API reader/writer provides Geodatabase support without an installed Esri product on Windows and Linux; however, it is a limited set of geometry and works only with 10.0 File Geodatabases or higher. For example, annotation is unsupported. For more information: FME and ESRI Versions and Compatibility Comparison of FME Readers/Writers for SDE and Geodatabase Overview The Geodatabase reader and writer translates several different types of features: reading and writing of point, line, polygon, and multipoint feature classes partial reading of some of the other File Geodatabase types (e.g., dimensions, parcel fabrics) exposed using the basic geometric types listed above reading and writing of non-spatial tables The File Geodatabase modules also provide the following capabilities: Programmatic Table Creation: Feature classes and tables need not be created before a data import operation. All table creation details are handled by FME. When FME creates a feature class, it consults the first feature destined for the corresponding feature type to determine if Z and/or measure values should be included. Index Creation: Attribute fields can be flagged as indexed. When the associated feature class or table is created, attribute indices are created as well. Table Selection: A subset of tables and feature classes to read can be selected from a list. Feature classes within a feature dataset are listed together for easy selection. Attribute Query Support: SQL where clauses can be specified to limit the data being exported. Spatial Query Support: A bounding box can be specified to limit the data being exported. This can be configured in the reader settings or accessed via the FeatureReader transformer

2 Esri Geodatabase (File Geodatabase API) Reader/Writer Enhanced Geometry Model: Curved segments within lines and polygons are maintained as arcs and not stroked. Fully Automatic Import and Export: FME supports fully automated import and export of data through its graphical interfaces, e.g. FME Quick Translator. This is ideal for quick data imports and exports. Unicode Support: Geodatabase text columns are stored in the UTF-16 encoding on Windows platforms, and in UTF-32 encoding on Linux platforms. FME can read and write this data. Feature Datasets: Feature datasets are read and written. On read, they are included in FME s feature type names. On write, they are created as necessary. Domains and Subtypes: Coded domain and subtype fields are read and written using their decoded values (i.e., the descriptions and not coded values are used). In the current release, FME does not support creating tables or feature classes with subtypes or domain restrictions, and does not include this metadata on the schema. Coordinate Systems: Features are tagged with their spatial reference (coordinate system) on read. Feature classes are created with the spatial reference associated with incoming features. Note that the File Geodatabase API supports a fixed list of coordinate systems. Data in other coordinate systems cannot be read or written. Measures: In addition to reading and writing X, Y, and optional Z ordinates, measure values are supported as well. Esri Geodatabase (File Geodatabase API) Quick Facts About Quick Facts Tables Format Type Identifier Reader/Writer Licensing Level Dependencies Dataset Type Feature Type Typical File Extensions Automated Translation Support User-Defined Attributes Coordinate System Support Generic Color Support Spatial Index FILEGDB Both Professional See Format Notes. File Geodatabase (*.gdb directory) Feature dataset/feature class feature class table.gdb Yes Yes Yes No Always

3 FME Readers and Writers 2013 SP1 Schema Required Transaction Support Enhanced Geometry Geometry Type Yes No Yes filegdb_type Geometry Support Geometry Supported? Geometry Supported? aggregate yes point yes circles yes polygon yes circular arc yes raster no donut polygon yes solid no elliptical arc yes surface no ellipses yes text no line yes z values yes none yes Reader Overview The reader extracts data from the selected File Geodatabase using the File Geodatabase API. ArcGIS feature classes and tables become FME feature types, and ArcGIS features and rows become FME features. For feature classes within a feature dataset, the FME feature type name is formed as follows: <feature dataset name>/<feature class name>. As with other database readers in FME, the IDs and DEF directives are used to determine which feature classes and tables to read. This is covered in more detail in subsequent sections. WHERE clauses and bounding box constraints can be used to further limit the data read. Esri Geodatabase (File Geodatabase API) Reader Parameters Schema Attributes Additional Attributes to Expose This parameter exposes Format Attributes in Workbench when you create a workspace: In a dynamic scenario, it means these attributes can be passed to the output dataset at runtime

4 Esri Geodatabase (File Geodatabase API) Reader/Writer In a non-dynamic scenario where you have multiple feature types, it is convenient to expose additional attributes from one parameter. For example, if you have ten feature types and want to expose the same attribute in each one, it is easier to define it once than it is to set each feature type individually in the workspace. Search Envelope Use Search Envelope Using the minimum and maximum x and y parameters, define a bounding box that will be used to filter the input features. Only features that interact with the bounding box are returned. If all four coordinates of the search envelope are specified as 0, the search envelope will be disabled. Clip to Search Envelope Check this box if you want to remove any portions of exported features outside the area of interest. Writer Overview The writer exports data to a new or existing File Geodatabase using the File Geodatabase API. Esri Geodatabase (File Geodatabase API) Writer Parameters Overwrite Geodatabase Setting this parameter to Yes deletes the existing database. The default is No. Attribute Definitions The supported attribute types are listed in the following table. FME Attribute Type smallint int single double date objectid globalid guid blob

5 FME Readers and Writers 2013 SP1 FME Attribute Type xml text smallint This type is used to represent 16-bit integer values. int This type is used to represent 32-bit integer values. single This type is used to represent 32-bit float values. double This type is used to represent 64-bit float values. date This is used to store and retrieve date information within the Geodatabase. When a date field is read by the Geodatabase, it is placed in the FME feature with the form HHMMSS, YYYYMMDD, or YYYYMMDDHHMMSS. The time portion is specified using the 24-hour clock. When writing, the date attribute must also be in one of these three forms. These forms are compatible with all other FME dates. objectid This type is used to represent object IDs. There is (at most) one per row. This field type is read only; values will be automatically assigned on write. globalid This type is used to represent global IDs. There is one per row. This field type is read only. guid This type is used to represent GUIDs. blob This type is used to represent arbitrary length binary data. xml This type is used to represent XML data

6 Esri Geodatabase (File Geodatabase API) Reader/Writer text(n) This type is used to represent character values with a length not exceeding n characters. FME will read from and write to geodatabases using the UTF-16 (on Windows platforms) or UTF-32 (on Linux platforms) encodings. Tips for Using the File Geodatabase Writer When reading or writing, NULL values are represented by missing attributes. When inserting data, if an attribute is missing, NULL will be written in its place. When reading, NULL values will result in the corresponding attribute being omitted on the feature. Format Mapping File Directives Note: FME translations were originally based entirely on Mapping Files. Mapping files still exist under the surface but the interface has been almost entirely replaced by Workbench's graphical interface. Information on mapping files is included in this manual for technical reference purposes. Mapping Files are ASCII text files that contain a series of rules that specify the FME readers, writers, and transformations (in Workbench, these are represented by transformers). A mapping file (.fme) is a series of commands for FME to perform. Mapping files use functions and factories to transform the data. They also contain the definition and parameters for the readers and writers. A mapping file can be run through the FME Quick Translator. Before FME Workbench was designed and developed (about 2001), this was the only way to configure a translation process. You can create a mapping file either by manually programming it or by using FME Workbench. In Workbench, there is still an Export as.fme tool on the toolbar. The Workbench file format itself (.fmw file) is partially a mapping file with an XML header. When FME runs a workspace it is converted into a mapping file. Since mapping files are written in a plain ASCII format, so you can use any text editor to edit them. To see what a mapping file looks like: select one or more transformers in Workbench, copy them, and then paste them in a text editor. The mapping file equivalent of those transformers will be pasted. Directives and Reader/Writer Keywords Directives are processed by the reader or writer. Directives are prefixed by the current <ReaderKeyword> or <WriterKeyword> in a mapping file. By default, the keywords for formats are the format shortname (viewable in the Formats Gallery, or in the Format Quick Facts tables. Reader Directives This section describes the directives that are recognized by the File Geodatabase reader module

7 FME Readers and Writers 2013 SP1 Each directive is prefixed by the current <ReaderKeyword> when placed in a mapping file. Unless otherwise specified, the <ReaderKeyword> for the File Geodatabase reader is FILEGDB. DATASET This directive specifies the path to the File Geodatabase. Required <ReaderKeyword>_DATASET test.gdb DEF Source File Geodatabase This directive defines the schema of source (reader) feature types along with associated parameters. <ReaderKeyword>_DEF <feature type name> filegdb_type ( geodb_no_geom geodb_point geodb_multipoint geodb_polyline geodb_polygon) [ <attribute name> <attribute type> ]+ [ filegdb_where <where clause> ] Feature Type Properties DEF Line Parameter filegdb_type Contents Specifies the type of the table or feature class. : Allowed Geometries <attribute name> Specifies the name and type of a field in the table or feature class. See Attribute Definitions

8 Esri Geodatabase (File Geodatabase API) Reader/Writer DEF Line Parameter Contents below for a list of valid field types. The spatial (shape) column is not included here. : User Attributes filegb_where Specifies a where clause used to filter data when reading from the table or feature class. Do not include the word WHERE in this setting. : WHERE Clause IDs This directive specifies which feature types (ultimately, feature classes and tables) will be read. If the IDs directive is not specified, but DEF directives are, the DEF directives will determine which feature types will be read. If neither is specified, all feature types are read. <ReaderKeyword>_IDs ( <feature type name> )+ Feature Types to Read SEARCH_ENVELOPE This directive specifies a bounding box used to filter the input features. Only features that interact with the bounding box are returned. If this directive is not specified, then all features are returned.this directive is only honoured by the MITAB-based MapInfo reader in FME. This is the only MapInfo reader available on the UNIX platforms supported by FME, and can optionally be enabled on Windows platforms by renaming the mitab.dll in the FME home directory to mapinfo.dll. <ReaderKeyword>_SEARCH_ENVELOPE <minx> <miny> <maxx> <maxy> Note: If all four coordinates of the search envelope are specified as zero, the search envelope will be disabled

9 FME Readers and Writers 2013 SP1 Minimum X, Minimum Y, Maximum X, Maximum Y SEARCH_ENVELOPE_COORDINATE_SYSTEM This directive specifies the coordinate system of the search envelope if it is different than the coordinate system of the data. The COORDINATE_SYSTEM directive, which specifies the coordinate system associated with the data to be read, must always be set if the SEARCH_ENVELOPE_COORDINATE_ SYSTEM directive is set. If this directive is set, the minimum and maximum points of the search envelope are reprojected from the SEARCH_ENVELOPE_COORDINATE_SYSTEM to the reader COORDINATE_SYSTEM prior to applying the envelope. <ReaderKeyword>_SEARCH_ENVELOPE_COORDINATE_SYSTEM <coordinate system> Search Envelope Coordinate System CLIP_TO_ENVELOPE This directive specifies whether or not FME should clip features to the envelope specified in the SEARCH_ENVELOPE directive. Values YES NO (default) <ReaderKeyword>_CLIP_TO_ENVELOPE [yes no] Clip To Envelope EXPOSED_ATTRS This directive allows the selection of format attributes to be explicitly added to the reader feature type

10 Esri Geodatabase (File Geodatabase API) Reader/Writer This is similar to exposing format attributes on a reader feature type once it has been generated; however, it is even more powerful because it enables schema-driven applications other than Workbench to access and leverage these attributes as if they were explicitly on the schema as user attributes. The result of picking a list of attributes is a comma-separated list of attribute names and types that will be added to the schema features. Currently all reader feature types will receive the same set of additional schema attributes for a given instance of the reader. Not applicable. While it is possible for FME Objects applications to invoke this directive, the required format is not documented. This directive is intended for use in our GUI applications (for example, Workbench) only. Additional Attributes to Expose RETRIEVE_ALL_SCHEMAS This parameter is only applicable when generating a mapping file, generating a workspace or when retrieving schemas in an FME Objects application. When set to yes, schemas for all of the tables and feature classes in the database are returned. When set to no (or missing), and if RETRIEVE_ALL_TABLE_NAMES is similarly set to no (or missing), only schemas requested by the IDs parameter are returned. Values YES NO (default) Not applicable. FME Objects applications would include RETRIEVE_ALL_SCHEMAS followed by YES in the parameters array passed to IFMEUniversalReader::open(). Not applicable

11 FME Readers and Writers 2013 SP1 RETRIEVE_ALL_TABLE_NAMES This parameter is only applicable when generating a mapping file, generating a workspace or when retrieving schemas in an FME Objects application. When set to yes, and if RETRIEVE_ALL_SCHEMAS is set to no (or missing), names for all of the tables and feature classes in the database are returned. When set to no (or missing), and if RETRIEVE_ALL_SCHEMAS is similarly set to no (or missing), the schemas requested by the IDs directive are returned. Values YES NO (default) Not applicable. FME Objects applications would include RETRIEVE_ALL_TABLE_NAMES followed by YES in the parameters array passed to IFMEUniversalReader::open(). Not applicable (used when you browse a Table List) EXPOSED_ATTRS This directive allows the selection of format attributes to be explicitly added to the reader feature type. This is similar to exposing format attributes on a reader feature type once it has been generated; however, it is even more powerful because it enables schema-driven applications other than Workbench to access and leverage these attributes as if they were explicitly on the schema as user attributes. The result of picking a list of attributes is a comma-separated list of attribute names and types that will be added to the schema features. Currently all reader feature types will receive the same set of additional schema attributes for a given instance of the reader. Not applicable. While it is possible for FME Objects applications to invoke this directive, the required format is not documented. This directive is intended for use in our GUI applications (for example, Workbench) only

12 Esri Geodatabase (File Geodatabase API) Reader/Writer Additional Attributes to Expose Writer Directives This section describes the directives that are recognized by the File Geodatabase writer module. Each directive is prefixed by the current <WriterKeyword> when placed in a mapping file. Unless otherwise specified, the <WriterKeyword> for the File Geodatabase writer is FILEGDB. DATASET This directive specifies the path to the File Geodatabase. Required <WriterKeyword>_DATASET test.gdb DEF Destination File Geodatabase This directive defines the schema of destination (writer) feature types along with associated parameters. Required <WriterKeyword>_DEF <feature type name> filegdb_type ( geodb_no_geom geodb_point geodb_multipoint geodb_polyline geodb_polygon) [ <attribute name> <attribute type>[,<index type>] ]* [ filegdb_drop_table ( YES NO ) ] [ filegdb_truncate_table ( YES NO ) ] [ filegdb_object_id_field <object ID field> ] [ filegdb_object_id_alias <object ID alias> ] [ filegdb_shape_field <spatial column field> ] [ filegdb_shape_alias <spatial column alias> ] [ filegdb_config_keyword <configuration keyword> ] [ filegdb_xy_tolerance <xy tolerance> ] [ filegdb_z_tolerance <z tolerance> ]

13 FME Readers and Writers 2013 SP1 Feature Type Properties DEF Line Parameter filegdb_type Contents Specifies the type of the table or feature class. : Allowed Geometries <attribute name> Specifies the name and type of a field in the table or feature class. See Attribute Definitions below for a list of valid field types. The spatial (shape) column is not included here. The valid index types are: INDEXED The specified indices are created along with tables or feature classes; they are never added to existing tables or feature classes. : User Attributes filegb_drop_table Specifies whether or not to drop the existing table or feature class, if it exists. The default value is no. : Drop Existing Table filegb_truncate_table Specifies whether or not to truncate the existing table or feature class, if it exists. The default value is no. : Truncate Existing Table filegb_object_id_field Specifies the name of the column containing object IDs for the current table or feature class. If the value conflicts with a user attribute, then the writer will change the value for this field (by appending a numeric suffix) and log a warning. The default value is OBJECTID. : Object ID Field filegb_object_id_alias Specifies the alias for the object IDs column for the current table or feature class. The alias is used in ArcMap (and possibly in other ArcGIS products) when viewing data; the object ID column will be labeled by its alias. This is only relevant if the table or feature class will

14 Esri Geodatabase (File Geodatabase API) Reader/Writer DEF Line Parameter Contents be created by FME. The default value is OBJECTID. : Object ID Alias filegdb_shape_field Specifies the name of the column containing the shape data for features in the current feature class. This applies only to feature classes. If the value conflicts with a user attribute, then the writer will change the value for this field (by appending a numeric suffix) and log a warning. The default value is SHAPE. : Shape Field filegdb_shape_alias Specifies the alias for the shape data column. This applies only to feature classes. When viewing data in ArcMap (and possibly in other ArcGIS products), the shape data column will be labelled by its alias. The default value is SHAPE. This is only relevant if the table or feature class will be created by FME. : Shape Alias filegdb_config_keyword Specifies the configuration keyword. See ArcGIS documentation for additional details. This is only relevant if the table or feature class will be created by FME. The default value is DEFAULTS. : Configuration Keyword filegdb_xy_tolerance Specifies the xy tolerance for the feature class. By default, the File Geodatabase API determines the value based on the coordinate system. : XY Tolerance filegdb_z_tolerance Specifies the z tolerance for the feature class. This is only relevant if the table or feature class will be created by FME, and the data includes z values. The default value is : Z Tolerance

15 FME Readers and Writers 2013 SP1 OVERWRITE_GEODB If set to YES, deletes the existing database. <WriterKeyword>_OVERWRITE_GEODB ( YES NO ) Overwrite Geodatabase Feature Representation In addition to the generic FME feature attributes that FME Workbench adds to all features (see About Feature Attributes), this format adds the format-specific attributes described in this section. The Geodatabase modules make use of the following special attribute names. Attribute Name filegdb_type Contents The type of geometric entity stored within the feature. The valid values are listed below: geodb_no_geom geodb_point geodb_multipoint geodb_polyline geodb_polygon Features read or written also have an attribute for each column in the database table. Tables filegdb_type: geodb_no_geom Features with this value consist of no coordinates. Points filegdb_type: geodb_point Features with this value are point features

16 Esri Geodatabase (File Geodatabase API) Reader/Writer Multipoints filegdb_type: geodb_multipoint Features with this value are multi-part features consisting of points. Polylines filegdb_type: geodb_polyline Features with this value consist of one or more linear geometries (arcs, lines, or paths consisting of arcs and/or lines). Polygons filegdb_type: geodb_polygon Features with this value consist of one or more area geometries (polygons, ellipses, or donuts)

dbase (DBF) Reader/Writer

dbase (DBF) Reader/Writer FME Readers and Writers 2013 SP1 dbase (DBF) Reader/Writer The dbase Format (DBF) Reader/Writer allows FME to read and write data in the DBF format. All DBF files are formatted according to the dbase III

More information

ASPRS LIDAR Data Exchange Format (LAS) Reader/Writer

ASPRS LIDAR Data Exchange Format (LAS) Reader/Writer FME Readers and Writers 2013 SP1 ASPRS LIDAR Data Exchange Format (LAS) Reader/Writer Format Note: This format is not supported by FME Base Edition. The American Society Photogrammetry and Remote Sensing

More information

The SEG-Y Reader/Writer provides FME with direct access to data in SEG-Y format.

The SEG-Y Reader/Writer provides FME with direct access to data in SEG-Y format. FME Readers and Writers 2013 SP2 SEG-Y Reader/Writer The SEG-Y Reader/Writer provides FME with direct access to data in SEG-Y format. Overview The SEG-Y format is a tape standard developed by the Society

More information

WMS (Web Map Service) Reader

WMS (Web Map Service) Reader FME Readers and Writers 2013 SP1 WMS (Web Map Service) Reader The Web Map Service (WMS) Reader allows FME to retrieve spatially referenced raster maps from a WMS-compliant server. Overview WMS is an OpenGIS

More information

Wavefront OBJ Reader/Writer

Wavefront OBJ Reader/Writer FME Readers and Writers 2013 SP1 Wavefront OBJ Reader/Writer The Obj Reader and Writer module enables FME to read and write the Wavefront Obj format. The Obj format, originally developed for use with Wavefront's

More information

MapInfo TAB Reader/Writer

MapInfo TAB Reader/Writer FME Readers and Writers 2013 SP1 MapInfo TAB Reader/Writer The MapInfo Native Format Reader and Writer modules provide FME with the ability to read and write directly to MapInfo files. The MapInfo Native

More information

Esri Geodatabase Reader/Writer

Esri Geodatabase Reader/Writer FME Readers and Writers 2013 SP1 Esri Geodatabase Reader/Writer Note: To use FME s Esri Geodatabase Reader/Writer, you must also install ArcGIS Desktop. The Geodatabase reader and writer modules allow

More information

Aircom ENTERPRISE Map Data/ASSET Data Reader/Writer

Aircom ENTERPRISE Map Data/ASSET Data Reader/Writer Aircom ENTERPRISE Map Data/ASSET Data Reader/Writer FORMAT NOTES: This format is not supported by FME Base Edition. This format requires an extra-cost plug-in. Please contact Safe Software for details.

More information

Microsoft SQL Server (Spatial) Reader/Writer

Microsoft SQL Server (Spatial) Reader/Writer FME Readers and Writers 2013 SP1 Microsoft SQL Server (Spatial) Reader/Writer Note: Format Note: This format is supported only by FME Database Edition and above. Overview The Microsoft SQL Server (Spatial)

More information

Directory and File Pathnames Reader

Directory and File Pathnames Reader FME Readers and Writers 2013 SP1 Directory and File Pathnames Reader Overview The Directory and File Pathnames reader produces an FME feature for each file and/or directory contained in the specified directory.

More information

Smallworld 4 Reader/Writer

Smallworld 4 Reader/Writer FME Readers and Writers 2013 SP2 Smallworld 4 Reader/Writer This chapter explains how FME reads and writes data to a Smallworld database. Format Notes This format is supported only by the FME Smallworld

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

FME Desktop. Esri ArcGIS v10.3 Pathway Training. FME Edition

FME Desktop. Esri ArcGIS v10.3 Pathway Training. FME Edition FME Desktop Esri ArcGIS v10.3 Pathway Training FME 2015.1.1 Edition Safe Software Inc. makes no warranty either expressed or implied, including, but not limited to, any implied warranties of merchantability

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

FME Desktop. Esri ArcGIS v Pathway Training. FME 2014-SP2 Edition

FME Desktop. Esri ArcGIS v Pathway Training. FME 2014-SP2 Edition FME Desktop Esri ArcGIS v10.2.1 Pathway Training FME 2014-SP2 Edition Safe Software Inc. makes no warranty either expressed or implied, including, but not limited to, any implied warranties of merchantability

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

Data Interoperability Extension Tutorial

Data Interoperability Extension Tutorial Data Interoperability Extension Tutorial Copyright 1995-2012 Esri All rights reserved. Table of Contents About the Data Interoperability extension tutorial...................... 3 Exercise 1: Using direct-read

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

FME / ArcGIS 9 Data Interoperability Extension

FME / ArcGIS 9 Data Interoperability Extension FME / ArcGIS 9 Data Interoperability Extension About us Founded: 1993 Head office: Vancouver, Canada # of Employees: 45 Target markets: GIS & GPS vendors, Telecom and utilities, Oil & gas, Government agencies

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

FME Extension for ArcGIS

FME Extension for ArcGIS FME Extension for ArcGIS Welcome to the FME Extension for ArcGIS The FME Extension for ArcGIS uses Safe Software's FME technology. The FME Extension for ArcGIS allows users to integrate spatial data formats

More information

Utility Network Management in ArcGIS: Migrating Your Data to the Utility Network. John Alsup & John Long

Utility Network Management in ArcGIS: Migrating Your Data to the Utility Network. John Alsup & John Long Utility Network Management in ArcGIS: Migrating Your Data to the Utility Network John Alsup & John Long Presentation Outline Utility Network Preparation - Migration Patterns - Understanding the Asset Package

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

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) Migration Workflow User Guide Version 1.0 (01 August 2018) Prepared For: US Army Corps of Engineers 2018 Revision History

More information

An Introduction to Data Interoperability

An Introduction to Data Interoperability Esri International User Conference San Diego, California 2012 Technical Workshops July 24/25 An Introduction to Data Interoperability Bruce Harold - Esri Dale Lutz Safe Software Background Why Data Interoperability?

More information

Using the Geodatabase

Using the Geodatabase Using the Geodatabase February 13, 2002 Presented by: John Stroud, ESRI GeoDatabase Geodatabase comes in two flavors Personal mdb format ArcSDE rdbms format ArcGIS is a suite of three products ArcView,

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

Create a personal geodatabase

Create a personal geodatabase Create a personal geodatabase To create a personal geodatabase that corresponds to the same release as the ArcGIS for Desktop client you are using, follow these steps: 1. In ArcCatalog, right-click the

More information

Data Interoperability An Introduction

Data Interoperability An Introduction Data Interoperability An Introduction Bruce Harold Dale Lutz - Esri Inc - Safe Software What is the Data Interoperability Extension? Moving data from app to app ETL in industry jargon If you are not the

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

ArcGIS Extension User's Guide

ArcGIS Extension User's Guide ArcGIS Extension 2010 - User's Guide Table of Contents OpenSpirit ArcGIS Extension 2010... 1 Installation ( ArcGIS 9.3 or 9.3.1)... 3 Prerequisites... 3 Installation Steps... 3 Installation ( ArcGIS 10)...

More information

Key Terms. Attribute join Target table Join table Spatial join

Key Terms. Attribute join Target table Join table Spatial join Key Terms Attribute join Target table Join table Spatial join Lect 10A Building Geodatabase Create a new file geodatabase Map x,y data Convert shape files to geodatabase feature classes Spatial Data Formats

More information

ArcMap Editing Tips and Tricks. Sean Jones

ArcMap Editing Tips and Tricks. Sean Jones ArcMap Editing Tips and Tricks Sean Jones Overview Topics - Tuning your editing map - Creating features - Editing features and attributes - Aligning and editing coincident features - Addins Format - Software

More information

Administering Your Oracle Geodatabase. Jim McAbee Mandar Purohit

Administering Your Oracle Geodatabase. Jim McAbee Mandar Purohit Administering Your Oracle Geodatabase Jim McAbee Mandar Purohit Intended Audience Desktop Web Device You are.. - A geodatabase administrator - An accidental DBA - A deliberate DBA - Not sure what DBA means

More information

ArcGIS Pro Editing: An Introduction. Jennifer Cadkin & Phil Sanchez

ArcGIS Pro Editing: An Introduction. Jennifer Cadkin & Phil Sanchez ArcGIS Pro Editing: An Introduction Jennifer Cadkin & Phil Sanchez See Us Here WORKSHOP ArcGIS Pro Editing: An Introduction LOCATION SDCC - Ballroom 20 D TIME FRAME Thursday 10:00 11:00 ArcGIS Pro: 3D

More information

Data Interoperability An Introduction

Data Interoperability An Introduction 2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop Data Interoperability An Introduction Bruce Harold Esri Dale Lutz Safe Software Background Why Data Interoperability?

More information

Why use an RDBMS? ❽ Data maintenance ❽ Standardized access ❽ Multi-user access ❽ Data protection

Why use an RDBMS? ❽ Data maintenance ❽ Standardized access ❽ Multi-user access ❽ Data protection 1 Why use an RDBMS? ❽ Data maintenance ❽ Standardized access ❽ Multi-user access ❽ Data protection 2 RDBMSs offer Data protection ❽ Recovery ❽ Concurrency ❽ Security 3 Data protection ❽ Recovery from ❽

More information

MrSID Plug-in for 3D Analyst

MrSID Plug-in for 3D Analyst LizardTech MrSID Plug-in for 3D Analyst User Manual Copyrights Copyright 2009 2010 LizardTech. All rights reserved. Information in this document is subject to change without notice. The software described

More information

PUG List. Raster Analysis 3D Analysis Geoprocessing. Steve Kopp

PUG List. Raster Analysis 3D Analysis Geoprocessing. Steve Kopp PUG List Raster Analysis 3D Analysis Geoprocessing Steve Kopp Contour Polygons Spatial Analyst - color-filled contours. Similar to thematic classification, where blue = -1000 to zero, and red = 0 to +1000,

More information

Leveraging SAP HANA and ArcGIS. Melissa Jarman Eugene Yang

Leveraging SAP HANA and ArcGIS. Melissa Jarman Eugene Yang Melissa Jarman Eugene Yang Outline SAP HANA database ArcGIS Support for HANA Database access Sharing via Services Geodatabase support Demo SAP HANA In-memory database Support for both row and column store

More information

Accessing and Administering your Enterprise Geodatabase through SQL and Python

Accessing and Administering your Enterprise Geodatabase through SQL and Python Accessing and Administering your Enterprise Geodatabase through SQL and Python Brent Pierce @brent_pierce Russell Brennan @russellbrennan hashtag: #sqlpy Assumptions Basic knowledge of SQL, Python and

More information

Administering Your Oracle Geodatabase. Amit Kesarwani Mandar Purohit

Administering Your Oracle Geodatabase. Amit Kesarwani Mandar Purohit Administering Your Oracle Geodatabase Amit Kesarwani Mandar Purohit Intended Audience Desktop Web Device You are.. - A geodatabase administrator - An accidental DBA - A deliberate DBA Portal Portal Server

More information

Enterprise Architect. User Guide Series. Geospatial Models. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Geospatial Models. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Geospatial Models Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Table of Contents Geospatial Modeling 3 Geodatabase Design for ArcGIS 4 ArcGIS

More information

What s New for Developers in ArcGIS Maura Daffern October 16

What s New for Developers in ArcGIS Maura Daffern October 16 What s New for Developers in ArcGIS 10.1 Maura Daffern October 16 mdaffern@esri.ca Today s Agenda This seminar is designed to help you understand: 1) Using Python to increase productivity 2) Overview of

More information

Enterprise Architect. User Guide Series. Geospatial Models

Enterprise Architect. User Guide Series. Geospatial Models Enterprise Architect User Guide Series Geospatial Models Sparx Systems Enterprise Architect supports Geography Markup Language (GML) application schemas and ArcGIS geodatabase modeling to define geospatial

More information

ArcGIS Pro Editing. Jennifer Cadkin & Phil Sanchez

ArcGIS Pro Editing. Jennifer Cadkin & Phil Sanchez ArcGIS Pro Editing Jennifer Cadkin & Phil Sanchez ArcGIS Pro Editing Overview Provides tools that allow you to maintain, update, and create new data - Modifying geometry, drawing new features - Entering

More information

Topology in the Geodatabase: An Introduction

Topology in the Geodatabase: An Introduction Topology in the Geodatabase: An Introduction Colin Zwicker Erik Hoel ESRI Super Secret Topology Laboratory, May 2016 Agenda ArcGIS Topology defined Validating a topology Editing a topology Geoprocessing

More information

LSGI 521: Principles of GIS. Lecture 5: Spatial Data Management in GIS. Dr. Bo Wu

LSGI 521: Principles of GIS. Lecture 5: Spatial Data Management in GIS. Dr. Bo Wu Lecture 5: Spatial Data Management in GIS Dr. Bo Wu lsbowu@polyu.edu.hk Department of Land Surveying & Geo-Informatics The Hong Kong Polytechnic University Contents 1. Learning outcomes 2. From files to

More information

Mississippi Public Schools 2015

Mississippi Public Schools 2015 Mississippi Public Schools 2015 Shapefile and geodatabase Tags education, administrative, schools, public, K-12 Summary To add to the state data clearinghouse the Mississippi public schools point feature.

More information

Topology in the Geodatabase an Introduction. Erik Hoel Doug Morgenthaler

Topology in the Geodatabase an Introduction. Erik Hoel Doug Morgenthaler Topology in the Geodatabase an Introduction Erik Hoel Doug Morgenthaler ESRI Super Secret Topology Laboratory, May 2012 Agenda ArcGIS Topology defined Validating a topology Editing a topology Geoprocessing

More information

Understanding and Working with the OGC Geopackage. Keith Ryden Lance Shipman

Understanding and Working with the OGC Geopackage. Keith Ryden Lance Shipman Understanding and Working with the OGC Geopackage Keith Ryden Lance Shipman Introduction - Introduction to Simple Features - What is the GeoPackage? - Esri Support - Looking ahead Geographic Things 3 Why

More information

Building 3D models with the horizons method

Building 3D models with the horizons method ARC HYDRO GROUNDWATER TUTORIALS SUBSURFACE ANALYST Building 3D models with the horizons method Arc Hydro Groundwater (AHGW) is a geodatabase design for representing groundwater datasets within ArcGIS.

More information

Design a Geodatabase. Rasu Muthurakku, Enterprise Solutions Architect / Consultant

Design a Geodatabase. Rasu Muthurakku, Enterprise Solutions Architect / Consultant Rasu Muthurakku, Enterprise Solutions Architect / Consultant Agenda Overview Key Factors Design - Recommendations Key Considerations, Best Practices and Recommendations / Lessons Learned! Overview What

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

Safe Software is the world s leading supplier of spatial data translation software. We are focused on helping organizations enhance access to spatial

Safe Software is the world s leading supplier of spatial data translation software. We are focused on helping organizations enhance access to spatial Safe Software is the world s leading supplier of spatial data translation software. We are focused on helping organizations enhance access to spatial data resources by providing software solutions that

More information

Global_Price_Assessments

Global_Price_Assessments Page 1 of 6 Global_Price_Assessments Shapefile Thumbnail Not Available Tags assessments, platts, crude oil, global, crude, petroleum Summary The S&P Global Platts Global Price Assessment geospatial data

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

SilvAssist 3.5 Instruction Manual Instruction Manual for the SilvAssist Toolbar For ArcGIS. Version 3.5

SilvAssist 3.5 Instruction Manual Instruction Manual for the SilvAssist Toolbar For ArcGIS. Version 3.5 Instruction Manual for the SilvAssist Toolbar For ArcGIS Version 3.5 1 2 Contents Introduction... 5 Preparing to Use SilvAssist... 6 Polygon Selection... 6 Plot Allocator... 7 Requirements:... 7 Operation...

More information

Cartographic Techniques and Representations

Cartographic Techniques and Representations Cartographic Techniques and Representations NEARC 2007 ESRI Technical Session ESRI, Boston Overview of Presentation Labeling and Annotation Masking Layout Tips Cartographic Representations Labeling versus

More information

ArcGIS Pro SDK for.net: An Overview of the Geodatabase API. Colin Zwicker Ling Zhang Nghiep Quang

ArcGIS Pro SDK for.net: An Overview of the Geodatabase API. Colin Zwicker Ling Zhang Nghiep Quang ArcGIS Pro SDK for.net: An Overview of the Geodatabase API Colin Zwicker Ling Zhang Nghiep Quang What will not be deeply discussed Add-in model & threading model - ArcGIS Pro SDK for.net: Beginning Pro

More information

1Integrate REST API Guide

1Integrate REST API Guide 1Integrate REST API Guide Product version: v 2.3 Document version: v 1.2.2 Document date: 29/11/2018 Copyright 2018 1Spatial plc and its affiliates. All rights reserved. Other trademarks are registered

More information

Data Interoperability Advanced Use

Data Interoperability Advanced Use Data Interoperability Advanced Use Bruce Harold Dale Lutz bharold@esri.com Safe Software This is your world ask us today about best practices Automate Moving Data No Domain Limitations ArcGIS Data Interoperability

More information

Working with Feature Layers. Russell Brennan Gary MacDougall

Working with Feature Layers. Russell Brennan Gary MacDougall Working with Feature Layers Russell Brennan Gary MacDougall Working with Feature Layers Session will focus on feature access and editing Highlight new features added over the last few releases Agenda Introduction

More information

ArcGIS Pro: What s New in Editing and Data Management

ArcGIS Pro: What s New in Editing and Data Management Federal GIS Conference February 9 10, 2015 Washington, DC ArcGIS Pro: What s New in Editing and Data Management Robert LeClair ArcGIS Pro Overview Esri FedUC 2015 Technical Workshop ArcGIS Pro: What's

More information

SOFTWARE PRODUCT. GEOINFORMATION SYSTEM «PANORAMA» (GIS Panorama) Applied tasks. Import and export data of format ArcSDE to DB Oracle

SOFTWARE PRODUCT. GEOINFORMATION SYSTEM «PANORAMA» (GIS Panorama) Applied tasks. Import and export data of format ArcSDE to DB Oracle APPROVED -AS Orig. Inv. No. Signature and date Repl. inv. No. Copy inv. No. Signature and date SOFTWARE PRODUCT GEOINFORMATION SYSTEM «PANORAMA» (GIS Panorama) Applied tasks. Import and export data of

More information

Fractionation_Facilities

Fractionation_Facilities Page 1 of 8 Fractionation_Facilities Shapefile Thumbnail Not Available Tags ngl, natural gas liquids, gas processing, fractionators Summary The S&P Global Platts Fractionation facilities geospatial data

More information

Spatially Enable Your DBA PUG Miles Phillips LandWorks, Inc Feb 27, 2008

Spatially Enable Your DBA PUG Miles Phillips LandWorks, Inc Feb 27, 2008 Spatially Enable Your DBA PUG 2008 Miles Phillips mphillips@landworks.com LandWorks, Inc Feb 27, 2008 Audience Experienced DBAs assigned to support ArcSDE Experienced ArcGIS users that need to understand

More information

file:///c:/users/c_harmak/appdata/local/temp/arc8f36/tmp308d.tmp.htm

file:///c:/users/c_harmak/appdata/local/temp/arc8f36/tmp308d.tmp.htm Page 1 of 6 FireDistricts_CoB Shapefile Tags Bradenton, boundary, fire districts Summary The best current representation of the City of Bradenton Florida's fire districts and sub-districts. Description

More information

Elec_ISO_LMP_PricingPoints

Elec_ISO_LMP_PricingPoints Page 1 of 7 Elec_ISO_LMP_PricingPoints Shapefile Tags locational marginal pricing, lmp, independent system operator, iso, nodal, trade, market Summary The S&P Global Platts ISO Nodal Pricing Points geospatial

More information

Streamlining Editing Workflows. Amber Bethell

Streamlining Editing Workflows. Amber Bethell Streamlining Editing Workflows Amber Bethell Workflow for solving geographic problems Ask a question Create or acquire data Validate and update data Analyze data Create cartographic product Act upon knowledge

More information

Arcgis 10 Manually Move Labels

Arcgis 10 Manually Move Labels Arcgis 10 Manually Move Labels The "easy custom labeling" Tool in QGIS seems to come close to the ArcGIS solution. However, after I created my custom label layer I am not able to move my labels at the

More information

Welcome to the FME Data Inspector

Welcome to the FME Data Inspector Welcome to the FME Data Inspector FME Data Inspector is a Safe Software Technology Preview Safe Software is the world s leading supplier of spatial data translation software. We are focused on helping

More information

MST: Converting from Shape file to PostGIS using FME. Version 0.2

MST: Converting from Shape file to PostGIS using FME. Version 0.2 MST: Converting from Shape file to PostGIS using FME Version 0.2 Revisions Filename ConvertingFromShape2PostGIS_v0.1.docx Project Document Version Control Vs. Date Author Change Details 0.2 08-01-2018

More information

Terminals. Shapefile. Thumbnail Not Available. Tags barge, rail, truck, tanker, ports, terminals, crude, refined, products

Terminals. Shapefile. Thumbnail Not Available. Tags barge, rail, truck, tanker, ports, terminals, crude, refined, products Page 1 of 11 Terminals Shapefile Thumbnail Not Available Tags barge, rail, truck, tanker, ports, terminals, crude, refined, products Summary The S&P Global Platts Oil Terminals geospatial data layer was

More information

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

Building tools with Python

Building tools with Python Esri International User Conference San Diego, California Technical Workshops 7/25/2012 Building tools with Python Dale Honeycutt Session description Building Tools with Python A geoprocessing tool does

More information

Working with Metadata in ArcGIS

Working with Metadata in ArcGIS Esri International User Conference San Diego, California Technical Workshops July 26, 2012 Working with Metadata in ArcGIS Aleta Vienneau Metadata in ArcGIS ArcGIS metadata goals Editing metadata Setting

More information

Whitepaper. Reading Map 3D Object Data with FME. Overview. FME and Spatial Data Interoperability. Spatial ETL Tools

Whitepaper. Reading Map 3D Object Data with FME. Overview. FME and Spatial Data Interoperability. Spatial ETL Tools Whitepaper Reading Map 3D Object Data with FME Overview A key challenge for users of spatial data is interoperability. Even for a committed user of AutoCAD Map 3D, there are likely to be occasional needs

More information

Integrating ArcGIS to Enterprise Oracle Spatial Using Direct Connect

Integrating ArcGIS to Enterprise Oracle Spatial Using Direct Connect Integrating ArcGIS to Enterprise Oracle Spatial Using Direct Connect Michael D. Tsengouras Principal Software Engineer Navigation Technologies Corporation Abstract: Many organizations are adopting Enterprise

More information

Calculate a Distance Matrix of Locations along River Network

Calculate a Distance Matrix of Locations along River Network Calculate a Distance Matrix of Locations along River Network These instructions enable you to measure the length of line segments between points, which is much more useful than simple straight-line distances

More information

TIBCO OpenSpirit ArcGIS Extension Release Notes

TIBCO OpenSpirit ArcGIS Extension Release Notes TIBCO OpenSpirit ArcGIS Extension Release Notes Software Release 2010.1.1 September 2012 ii Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

ESRI Technology Update. Joe Holubar Larry Young

ESRI Technology Update. Joe Holubar Larry Young ESRI Technology Update Joe Holubar Larry Young Continued Improvement Improving Quality and Extending and Refining Functionality First Half of 2009: Minor Update Release (ArcGIS 9.3.1) ArcGIS Explorer Fall

More information

MapInfo Professional Evolution!

MapInfo Professional Evolution! MapInfo Professional Evolution! A long history of improvement This presentation covers what is new in all of the MapInfo Pro releases since v9.0! MapInfo Pro Release History A feature release every year

More information

ArcGIS Basics Working with Labels and Annotation

ArcGIS Basics Working with Labels and Annotation ArcGIS Basics Working with Labels and Annotation Labeling in ArcGIS has changed considerably from the old ArcView 3.X version. In ArcGIS label positions are generated automatically, are not selectable,

More information

1. INTERLIS 2 Reader/Writer for FME

1. INTERLIS 2 Reader/Writer for FME 1. INTERLIS 2 Reader/Writer for FME The INTERLIS 2 reader and writer module (ili2fme) provides the Feature Manipulation Engine (FME) with access to INTERLIS 2 and INTERLIS 1 transfer files. ili2fme is

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

This support note will discuss several methods of creating no spray zones for Sentinel GIS>

This support note will discuss several methods of creating no spray zones for Sentinel GIS> Reason Sentinel Adulticiding support a polygon no spray layer. Adulticiding mobile software warns the driver when they are approaching a no spray zone so they can turn off the sprayer. Because no spray

More information

TRAINING GUIDE. Data Quality Tools for GIS and Lucity Spatial

TRAINING GUIDE. Data Quality Tools for GIS and Lucity Spatial TRAINING GUIDE Data Quality Tools for GIS and Lucity Spatial Data Quality Tools for GIS and Lucity Spatial In this session, we ll cover the tools that can be used to ensure your GIS data is clean in regards

More information

Matthew Heric, Geoscientist and Kevin D. Potter, Product Manager. Autometric, Incorporated 5301 Shawnee Road Alexandria, Virginia USA

Matthew Heric, Geoscientist and Kevin D. Potter, Product Manager. Autometric, Incorporated 5301 Shawnee Road Alexandria, Virginia USA INTEGRATIONS OF STRUCTURED QUERY LANGUAGE WITH GEOGRAPHIC INFORMATION SYSTEM PROCESSING: GeoServer Matthew Heric, Geoscientist and Kevin D. Potter, Product Manager Autometric, Incorporated 5301 Shawnee

More information

1. INTERLIS 2 Reader/Writer for FME

1. INTERLIS 2 Reader/Writer for FME 1. INTERLIS 2 Reader/Writer for FME The INTERLIS 2 reader and writer module (ili2fme) provides the Feature Manipulation Engine (FME) with access to INTERLIS 2 and INTERLIS 1 transfer files. ili2fme is

More information

8 Querying and Selecting Data

8 Querying and Selecting Data 8 Querying and Selecting Data In this chapter, we will cover the following recipes: ff ff ff ff ff Constructing proper attribute query syntax Creating feature layers and table views Selecting features

More information

1 INTRODUCTION TO EASIK 2 TABLE OF CONTENTS

1 INTRODUCTION TO EASIK 2 TABLE OF CONTENTS 1 INTRODUCTION TO EASIK EASIK is a Java based development tool for database schemas based on EA sketches. EASIK allows graphical modeling of EA sketches and views. Sketches and their views can be converted

More information

The Road to Runtime. Mark Cederholm UniSource Energy Services Flagstaff, Arizona

The Road to Runtime. Mark Cederholm UniSource Energy Services Flagstaff, Arizona The Road to Runtime Mark Cederholm UniSource Energy Services Flagstaff, Arizona A Brief History of Field Apps at UniSource ArcExplorer Free Users can customize map symbology No GPS No Editing No custom

More information

Geodatabases. Dr. Zhang SPRING 2016 GISC /03/2016

Geodatabases. Dr. Zhang SPRING 2016 GISC /03/2016 Geodatabases Dr. Zhang SPRING 2016 GISC 1401 10/03/2016 Using and making maps Navigating GIS maps Map design Working with spatial data Spatial data infrastructure Interactive maps Map Animations Map layouts

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

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) Model Builder User Guide Version 1.3 (24 April 2018) Prepared For: US Army Corps of Engineers 2018 Revision History Model

More information

Answer the following general questions: 1. What happens when you right click on an icon on your desktop? When you left double click on an icon?

Answer the following general questions: 1. What happens when you right click on an icon on your desktop? When you left double click on an icon? Name: Date: June 27th, 2011 GIS Boot Camps For Educators Practical: Explore ArcGIS 10 Desktop Tools and functionality Day_1 Lecture 1 Sources: o ArcGIS Desktop help o ESRI website o Getting to Know ArcGIS

More information

Using Python in ArcGIS Oli Helm May 2, 2013

Using Python in ArcGIS Oli Helm May 2, 2013 Using Python in ArcGIS 10.1 Oli Helm May 2, 2013 ohelm@esri.ca Today s Agenda This seminar is designed to help you understand: 1) Python Essentials 2) What s new in Python in ArcGIS 10.1 3) Python Add-Ins

More information

Elec_ISO_RTO_Regions

Elec_ISO_RTO_Regions Page 1 of 8 Elec_ISO_RTO_Regions Shapefile Tags independent system operator, iso, regional transmission organization, rto, utilitiescommunication, economy Summary The S&P Global Platts Independent System

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