Barbara Featherly 1,2

Size: px
Start display at page:

Download "Barbara Featherly 1,2"

Transcription

1 The Natural Resource Decision Support System (NRDSS): Creation of a 9.2 ArcGIS Server Website and a SQL Server 2005 ArcSDE 9.2 Database for the Minnesota Board of Water and Soil Resources (BWSR) Barbara Featherly 1,2 1 Department of Resource Analysis, Saint Mary s University of Minnesota, Winona, MN GeoSpatial Services, Saint Mary s University of Minnesota, Winona, MN Keywords: GIS, SSURGO, ArcGIS Server 9.2, ArcSDE 9.2, Microsoft Windows Applications, Website, SQL Server, ASP.net 2.0, VB.net, Soils Analysis, Soil Suitability Abstract In the fall of 2007, GeoSpatial Services (GSS) accepted a contract from the Minnesota Board of Water and Soil Resources (BWSR) to develop a 9.2 ArcGIS Server application. This application was to be a web mapping site that would support Soils Survey Geographic Database (SSURGO) soils data interaction and allow for querying of a subset of the SSURGO dataset for the State of Minnesota. In order to make management of the site possible, a number of applications and scripts were created. This paper describes the functionalities and tools designed and built in the project. Introduction The purpose of this research project was to create an application to aid in the distribution of soil information to users across Minnesota using ESRI s ArcServer 9.2.NET SDK. This project was labeled the Natural Resource Decision Support System (NRDSS) and was developed in conjunction with needs identified by the Minnesota Board of Water and Soil Resources (BWSR). In the past, there were earlier versions of this application in ArcIMS 9.1 that had been approved by Minnesota Board of Water and Soil Resources. The ArcGIS Server version of this project application was to recreate the functionality of the former site. As such, this paper focuses on the development functionality per infrastructure requirements. The application had four infrastructure requirements. The first requirement involved saving database information using SQL Server 2005 with the exception of soils shapefiles that were packaged with the Soils Survey Geographic Database (SSURGO). These files were packaged separately and saved in a predefined location on the hard drive. The second requirement stated the application needed to work in Internet Explorer Browser 6.0 or higher. The third requirement stated the system and network administrators would need to have access to the web server and the database server boxes. The final requirement was Microsoft Windows Operating Systems (OS) must be used to manage the basic web application tools and startup functions. This included adding the SSURGO shapefile to the map. There were several components and applications required in order to make the final application manageable and efficient. The ArcGIS Server web mapping application was the main website. This allows users of the internet to view, query, download, and print maps of soils information by predefined districts as well Featherly, Barbara The Natural Resource Decision Support System (NRDSS): Creation of a 9.2 ArcGIS Server Website and a SQL Server 2005 ArcSDE 9.2 Database for the Minnesota Board of Water and Soil Resources (BWSR). Volume 12, Papers in Resource Analysis. 20 pp. Saint Mary s University of Minnesota Central Services Press. Winona, MN. Retrieved (date) from

2 as other background information to support other natural resource management decisionmaking processes. To support the website and the database, several XP/Server 2003 windows applications were also created: Clean Files, Clean Up Tables, and Update Soils. Both clean up tools delete temporary files and tables created by the website in response to user requests. The update soils tool is a service that runs on a local computer and it allows administrators to reload SSURGO soils tables for each map unit. Since the database uses only select fields and tables from the entire SSURGO database, it was necessary to create a method of updating data where the user would not require any knowledge of Access or SQL Server More about the data structure will be discussed in the section, Windows Applications subsection Update Soils. There are two types of soil queries that run in the application: selection from a query tool and predefined queries. In order to manage the predefined queries, the Query Administration website was created. The website allows administrators to create, modify and delete queries that run against the soils database. Database Two databases were created using SQL Server The first database was dedicated to the SSURGO database files and all related tables. The second database was dedicated to all other data using SDE 9.2 spatial or tabular data including temporary tables. The data were split into two groups: SSURGO data and other data. The following sections explain the distribution and source of all data utilized in the main website and the administration website. SSURGO data The SSURGO databases are extensive tables possessing the ability to contain attributes for a myriad of soil properties reaching more than 500 different attributes. The reason for the number of attributes is because SSURGO databases are designed to hold information of all soil structures that may be present in land within the United States. Each set of tables is packaged in an Access database with an associated shapefile of the study area. NRCS distributes this data to the public on a website and is aggregated together by map areas. The map areas roughly equate to counties in Minnesota with some larger counties subdivided into districts. The SSURGO database contains many attributes that are relevant to specific soils types. For example there are places in the SSURGO database designated for the definition of soil permafrost characteristics, these attributes were not included because there are no soils in Minnesota with permafrost. In order to limit the database size and increase application s performance, the SSURGO database was simplified to include only those attributes identified by BWSR to be relevant to Minnesota soil structures. In addition to retaining only a portion of the attributes, the database was restructured such that every resulting table in the database contained a one-to-one relationship with all the others to allow for a direct linkage to information in the soil shapefiles. Attribute values were retained and only a few additional fields were generated to be used for table joining purposes. The database can be updated automatically using the soils update tool. In turn, this updates a single map district published by National Resources Conservation Service (NRCS), resulting in an up-to-date soils database for an area. Refer to the section on the soils update tool for more information. Refer to 2

3 Appendix A for a breakdown of the attributes from the SSURGO database. Refer to Appendix B for a complete breakdown of the data restructuring. The application that restructures the data assumes that each map unit has a maximum of six components and six horizons per component. When a database had more than six of either a component or a horizon than the tool retains the six with the highest percentage of the total parent unit. Other Data There are several other tables contained in the soils database. One table is an imported metadata table created by NRCS and distributed with the SSURGO databases. This table is used to inform users about the various fields while they are either creating a query in the main website or creating a predefined query in the Canned Query Administration website. Another table holds the user information for the Canned Query Administration website. For each predefined query created, a SQL Server procedure is produced in the database and can then be run by users of the main website. Another table in the soil database retains information about the predefined queries used to populate tools in the main site and makes the procedures more easily accessible. In a folder on the server that runs the website, all of the shapefiles are saved to a local disk. The final tables contain column information for fields not defined by SSURGO and another table for information describing the SSURGO shapefiles. This includes a listing of the soil district and availability status. Not all map areas were available when this application was created. The second database was Spatially Enabled using ESRI ArcSDE 9.2 SP5 and contains all of the vector data needed by the site. This includes a 30 meter digital elevation model for the entire state. The main site also includes a link to the Limick Aerial Photography service. This link connects the website to a web media service controlled by a third party. This service is provided free of charge and requires that the main website have access to the internet outside the network although it can be configured to run through a proxy server. Windows Applications These applications are used for maintenance purposes. The files are saved on the local disk. Both cleaning applications are executable files that are run by the Task management options of a Windows OS and were scheduled to run once every hour. The Update Soils application is a windows service that actively watches a folder on a local drive. Whenever the contents change (file is copied to folder), the system triggers for the executable to run. Clean Files This executable was made using Visual Studio 2005 windows form template using VB as the language and the.net framework. The ArcServer output folder is defined by the administrator of ArcGIS Server and can be found on the web server. This location is used by all the tools within the application to create temporary objects and map images. Every time the executable is run, the application checks the ArcServer output folder and looks for all files with the following extensions: csv, png, tiff, jpg, pdf and bmp, that are older than a half hour and deletes them. These are temporary files created by various tools that run on the website. When it is finished searching, the files in the main directory and the table_export sub directory, the application stops running. Clean Tables 3

4 This executable was made using Visual Studio 2005 windows form template using VB as the language and the.net framework. Every time the executable is run, this application creates a connection to the spatially enabled database described in the Other Data section above. It then searches the database for all tables starting with Query_ or Temp_ and tests their created date. All tables older than a half hour are deleted from the database. When searching is finished, the application closes its connection to the database and stops running. Update Soils This executable was made using Visual Studio 2005 windows service template using VB as the language and the.net framework. The service can be installed on any windows computer in the same network as the database server. The service is installed on a computer. Whenever it is running, it monitors the C:\update_soils\ directory of the computer. Whenever a file is copied to the directory, the service runs an executable that verifies that the file is an Access database and that it is finished loading. In order to extract the map unit from the Access database, the application establishes a connection with the SQL Server Soils database and begins extracting the needed tables for the database. To save room, the application only creates tables that are required to copy the data. For example, if none of the map units in the access database have more than 3 components, then tables for the other three components (4-6) and horizons (19-36) are not created. When all the rows for the needed fields are copied from the Access database, the application closes its connection with the SQL server database and deletes the access database from the directory. The application searches the directory for more access databases and follows the same protocol for each database. If an error occurs during the processing of a database, the database is not deleted but moved to the errors folder along with a log file with the same name as the database file and describing the error that is preventing importation. When all of the access databases found in the directory are processed, the executable file stops running and the service starts monitoring the directory. Whenever the service is stopped, the monitoring of the directory stops and the application is no longer triggered. Website Applications There were two websites created for this application. Both websites were developed to run in IIS 6.0 using Windows Server Any errors that occur in the sites are saved either in a log file on the local drive or contained within the IIS standard log depending on the source of the error. The first website discussed is the Administration site for the Canned Queries. This site is a vb.net ASPX web application that utilizes form authentication and a user table to secure the application against unauthorized use. The purpose of the site is to create, modify or delete TSQL procedures that are run in the second application. Whatever changes or queries are created, the mapping website responds to these changes in real-time as long as the user clicks the finish button for each tool. The second application is a vb.net ASPX ArcServer 9.2 mapping web application called NRDSS. This is the main site developed. The tools in the application can be split into these categories: Navigation or Zoom tools, Soils Queries, and the Soil export tools. Administration of Canned Queries 4

5 First, the user must login to the application (Figure 1). Once the user has logged in, they must choose the tool desired for use. Using frames the website shows a menu that remains on the left hand side of the client s screen (Figure 2). The right hand side of the screen changes depending on the tool selected by the user. The Help link opens a PDF version of the website s user manual. To logout of the site and close the browser window, the user must click the Exit Site link. To open the main website, the user clicks the Return to Mapping Site link. matching link. Create Query There are several steps to creating a query. To see images depicting these steps refer to Appendix C where the steps are numbered in order of use. This was created as a step by step process. The user creates the query and then enters each restriction one by one, finally triggering the creation of a SQL Server procedure. The first step allows user to give the query a name and a label. The name can not be more than 100 characters and can not have spaces or under scores in it. The label will be the name that will be visible in all dropdown menus like the Existing Queries drop down. Neither the name nor the label can be the same as those already in existence (Figure 3). Figure 1. Administration Website Login Screen. Figure 2. Administration Menu. The Contact Information link aids the user in reporting errors and issues experienced while running the site. When the user wishes to run the three main procedure tools in the application (Create, Modify and Delete Query), they click the Figure 3. Create Name, Label and Description. After clicking the start button more options appear. There are three drop down menus for each of the three different kinds of soil items: Mapunit, Component, and Horizon. The user chooses a variable and clicks the add button under the variable (Figure 4). When the user wishes to get more information about the variables in the drop downs, they choose a variable and click the Current Variable Information button. A description of the variable will appear below the form the user is working on. The first line shows the name of the variable, a colon and the variables data type. The second line holds the unit of measurement that the value it may hold. The last paragraph describes what the variable represents. When finished looking at the description, the user can click 5

6 the Close Description button and the area will turn blank (Appendix C). Figure 4. Menus for Soil Data. Clicking one of the Add buttons causes the Choose Operation buttons to be activated. The name of the variable is added to the variable restrictions list and the add buttons disappear. These buttons represent the different types of comparison operations that can be done. If the variable has a domain then only the = and Not buttons are active. The following is a description of the operations. See Figure 5 for an image of the menu: = is the variable equal to entry, < is the variable less than the entry, > is the variable greater than the entry, Not is the variable not equal to the entered value, and Like is used for textual fields and determines if the entry has the same value as the variable. The Like operation is the only field that the wildcard character % can be used. Refer to Table 1 for examples of all the different data entry approaches. Figure 5. Variable Operation Menu. Finally, the user must add a label so that users of the main website will be able to differentiate this restriction from others (Figure 6). Also note that several restrictions can have the same label so that once the query is run, it will evaluate those restrictions as a single restriction. For example, there were two restrictions (brockdepmin > 200) and (brockdepmin < 0) with the same label. The predefined query would give those features (mukeys) with a value less than 0 and more than 200 the same label. Table 1. Examples showing Restriction values. Numeric or Textual Entries Wild Card Entries Domain Entries Figure 6. Value Label Menu. If a user wanted to add another restriction, they would click on the Add Restrictions Button and follow the same procedure illustrated previously. Once all the labels and all of their restrictions are added, then the user fills out the Query description field. If the user clicks the Delete Button, the variable restriction that is selected in the list is deleted. Variable restrictions must be deleted at one time (Figure 7). When run from the main website, the procedure will evaluate a feature until it finds the first label that applies to it. It prioritizes from the top to the bottom of list. If a user wishes to change the priority of a label, they use the arrow keys (Figure 8). Variables can only be moved a single location at a time. The steps a user would follow would be as follows: 1) Select an entry from the variable restrictions list. 2) Click the up arrow to increase the labels priority or click the down arrow to decrease the labels priority. Once all the restrictions and the Query Descriptions have been entered, the user is to click the Finish button. An alert 6

7 will inform the user when the procedure has been created. The user tests a new query by opening the NRDSS site. For an image, refer to Create Query step 4 of Appendix C. The user chooses the query to delete and click s the Delete Selected. The procedure is deleted from of the database and the information saved for this query in the query table is removed (Figure 9). Figure 9. Delete Query Menu. NRDSS (ArcServer 9.2 web mapping Application) Figure 7. Example of the Menu for the Final Steps of the Create Query Tool. Refer to Appendix C for an image of the NRDSS mapping site. The site has a lot of different functionalities and each tool can be opened by clicking on the link with the same name as the tool. Tools sit in windows on the left hand side of the screen next to the map. Navigation or Zoom Tools Zoom to Soil District Figure 8. Example of the Menu for the Priority. A user selects a district from the list and the map zooms to the boundary of that district (Figure 10). Modify Query In order to start modifying a query, the first thing the user needs to do is choose a query to change. Once a query has been chosen and the appropriate button clicked, all information is loaded into the form about that query including the list of restrictions. The user follows the same work flow and uses the same tools as the Build Query Tool. The Table Description can be modified in order to fit the changes to the query. The name of the query can not be changed. Delete Query Figure 10. Zoom to District Menu. This is an Active Server Page (ASP) drop down list that is populated from the Soils_Districts table using a SQL Query that runs at page load. When a user chooses a district, a JavaScript triggers the AJAX procedure that runs the code that zooms to the extent of the feature in the District SDE layer with the given name. As soon as the user selects a district, the map automatically triggers the zoom. This is done to reduce the number of mouse clicks necessary to 7

8 complete the zoom process. Choose Quad The user selects a name of a county (Top), then selects the name of a 2400k Quad (Bottom) and the map zooms to the boundary of the selected quad. By triggering the change automatically, the number of mouse clicks needed is reduced (Figure 11). This was created using two ASP drop down list objects. When the user changes the district, it triggers a SQL query of the Quad look up table in the database and populates all quads in or near that county in alphabetic order. When a user changes the name of the Quad, it triggers the code that zooms to the extent of the feature with the given name in the Quads SDE layer. Figure 11. Zoom to Quad Menu. Enter Scale The user enters a map scale in the ASP textbox. After clicking go (html button), a JavaScript function that starts an AJAX procedure that will change the map s scale to the scale entered in the text box (Figure 12). Figure 12. Zoom to Scale Menu. Enter Township or Section When the user enters a Township, Range and Section (not required for tool to run), the map changes and zooms to the boundary of the entered Township and range (Figure 13). Figure 13. Zoom to Township or Section Menu. The Township, Range and Section entries are ASP text boxes. Direction (Dir) is an ASP drop down list. When the user presses the Zoom PLSS button, it triggers a function that queries either the Township or the Section SDE feature layer (depending on entry) and zooms the map to the extent of the feature that represents the Township, Range and optional Section values. If the search does not find a feature the application displays an alert to the user informing them that their entry did not return a result from the database. Run Soil Queries Map Builder (Create Selection Query) This tool allows users to search soil attributes for soil features in the map. When the query is complete, it selects those soil features visible in the map that match the query the user created. They are shown in yellow and the description is added to the Table of Contents of the map. Refer to the Map Builder section of Appendix C for more information on how this tool works from a user perspective. The results of the query are added to the Soils Export Tools list. This will export a shapefile with the spatial results that can be downloaded by the user. Canned Queries 8

9 The Canned Query Tool allows users to run predefined procedures created by the Query Administration website. Refer to the Canned Query section of Appendix C for more information on how this tool works from a user perspective. The tool takes the name of the procedure that the user selects and runs the TSQL procedure from the database. The procedure will run against the tables representing the Soils data that has been added to the map. The tool can only function on a single map district at a time. The results of the query are added to the map using a predefined coloration ramp (same for all queries run from the canned query drop down list). The layers are added to the TOC and a Query Results box is added to the export tools Extract Window (Figure 14). Only one Query Result is visible at a time. The user can choose to extract the results as a shapefile that is imported into a zip file. box and clicks the Extract Features HTML button. The system then exports a shapefile of the features visible in the map that is in the layer. When the process is complete, the shapefile is added to a zip file and a link to that file is added to the results window. The user can download the file and extract it to a folder. The shapefile can then be used in ArcMap. There are two other types of soil extracts that can be performed: Extract Soils Tables and Extract Query Results (Figure 15). Extract Soils Tables allow users to extract all the soil tables in the database related to the current soil map survey. The second tool allows for the extraction of query results. The tool exports a shapefile of the results in the map and the related table that holds the results information including labels. See section Extract Query Results for more information. Extract Soils Tables Figure 14. Extract Tools Menu. Soils Export Tools When the user chooses a soil map area to be added to the map, a check box is added to the Extract Tool list with the name of the map area as a label. The user then checks the When the user clicks the Export Soils Data html button, a JavaScript function configures the AJAX procedure that starts the export process. The system exports every table entry for all the features visible in the current map of the added soils map area. Each table is saved as a csv file delimited by a semicolon. Once all the tables are created they are zipped into a uniquely named zip file and a link is added to the results table. Once the tables are downloaded, they can be extracted to a folder and opened using Excel or any other database system compatible with delimited files. Extract Query Results (canned or map builder) Refer to Appendix C for a more detailed description of the workings of this tool. 9

10 In addition, time was spent learning SQL Server 2005 to create the necessary database tools required. The integration of other applications and creation of the Query Builder made the application user friendly. It also made it possible for internal BWSR support of the application by someone who did not know how to create procedures in a SQL Server database. Acknowledgements I would like to thank Lane Urtel for help. This project would have been much more difficult without his experience and support. I would also like to thank the experts that answer ESRI support forum questions. Without all the anonymous information and experiences shared on those many pages, this application would have taken much longer to develop and the final product would not have been as robust. Figure 15. Extract soils tables and Extract Features results along with the extract tool and the Query Results Layer example. Conclusion This paper explains the functionalities of an end product. The creation of the final product required large amounts of data and many applications. During the process of creating the individual pieces of the application the author developed experience with the language (vb.net) in the setting of the web development process, including best practices. The design required database functionality to join the data with spatial information. 10

11 Appendix A. Soils Database Data Dictionary. LEGEND - 1 Table Field Name Brief description Instances per General Data Record Type SSURGO Table Lkey Legend Key 1 Text (varchar) Legend Areaacres Area Acres 1 Number Legend Areaname Area Name 1 Text (varchar) Legend Areasymbol Area Symbol 1 Text (varchar) Legend Areatypename Area Type Name 1 Text (varchar) Legend Cordate Correlation Date 1 Date/Time Legend Legendcertstat Legend Certification Status 1 Text (varchar) Legend Legenddesc Legend Description 1 Text (varchar) Legend Legendsuituse Geographic Applicability 1 Text (varchar) Legend Mlraoffice MLRA Office 1 Text (varchar) Legend mouagncyresp MOU Agency Responsible 1 Text (varchar) Legend Projectscale Project Scale 1 Number Legend Ssastatus Survey Status 1 Text (varchar) Legend ssurgoarchived SSURGO Archived 1 Date/Time Legend iscomp1_3 Saves Yes/No if table exists 1 Boolean Created by update service iscomp1_3 Saves Yes/No if table exists 1 Boolean Created by update service ishoz01_6 Saves Yes/No if table exists 1 Boolean Created by update service ishoz07_12 Saves Yes/No if table exists 1 Boolean Created by update service ishoz13_18 Saves Yes/No if table exists 1 Boolean Created by update service ishoz19_24 Saves Yes/No if table exists 1 Boolean Created by update service ishoz25_30 Saves Yes/No if table exists 1 Boolean Created by update service ishoz31_36 Saves Yes/No if table exists 1 Boolean Created by update service Culumns per table: 22 MAPUNIT 1 Table Field Name Brief description Instances per Record General Data Type SSURGO Table Mukey Map Unit Key 1 Text (varchar) mapunit Lkey Legend Key 1 Text (varchar) mapunit Muacres Map Unit Acers 1 Number mapunit Muname Map Unit Name 1 Text (varchar) mapunit Musym Map Unit Symbol 1 Text (varchar) mapunit aws0150wta Available Water Storage cm Weighted Average 1 Decimal muaggatt Available Water Storage 0-25 aws025wta cm Weighted Average 1 Decimal muaggatt Brockdepmin Bedrock Depth - Minimum 1 Decimal muaggatt Drainage Class - Dominant Drclassdcd Condition 1 Text (varchar) muaggatt Drclasswettest Drainage Class Wettest 1 Text (varchar) muaggatt Engsldcd Engsldcp ENG - Sewage Lagoons - Dominant Condition 1 Text (varchar) muaggatt ENG - Sewage Lagoons - Dominant Component 1 Text (varchar) muaggatt 11

12 Engstafdcd Engstafll Engstafml Flodfreqdcd flodfreqdmax Hydgrpdcd ENG - Septic Tank Absorption Fields - Dominant Condition 1 Text (varchar) muaggatt ENG - Septic Tank Absorption Fields - Least Limiting 1 Text (varchar) muaggatt ENG - Septic Tank Absorption Fields - Most Limiting 1 Text (varchar) muaggatt Flooding Frequency - Dominant Condition 1 Text (varchar) muaggatt Flooding Frequency - Maximum Condition 1 Text (varchar) muaggatt Hydrologic Group - Dominant Conditions 1 Text (varchar) muaggatt Pondfreqprs Ponding Frequency - Presence 1 Text (varchar) muaggatt slopegraddcp slopegradwta wtdepannmin Slope Gradient - Dominant Component 1 Integer muaggatt Slope Gradient - Weighted Average 1 Integer muaggatt Water Table Depth - Annual Minimum 1 Text (varchar) muaggatt wtdepaprjunmin Water Table Depth - April - June Minimum 1 Integer muaggatt Hydclprs Hydric Classification - Presence 1 Text (varchar) muaggatt Culumns per table: 24 COMPONENTS - 2 Tables Field Name Brief description Instances per Record General Data Type SSURGO Table Mukey Map Unit Key 2 Text (varchar) Mapunit Cokey Component Key 6 Text (varchar) Component Erosion Indicator Kind - Listed by 6 Text (varchar) Erokind Component Coerosionacc Rvindicator RV indicator - Listed by Component 6 Text (varchar) Coerosionacc hydriccriterion Hydric Criterions - Listed by Component 6 Text (varchar) Cohydriccrite ria Compkind Component Kind 6 Text (varchar) Component Compname Component Name 6 Text (varchar) Component comppct_r Percent MapUnit 6 Integer Component Corsteel Risk for Steel Corrosion 6 Text (varchar) Component Drainagecl Drainage Class 6 Text (varchar) Component Frostact Potential for frost action 6 Text (varchar) Component Geomdesc Geomorphic Description 6 Text (varchar) Component Hydgrp Hydrological Group 6 Text (varchar) Component Hydricon Hydric Condition 6 Text (varchar) Component Hydricrating Component Hydric Rating 0 Text (varchar) Component Localphase Local Phase 6 Text (varchar) Component map_r Average amount of precipitation 6 Decimal Component Runoff Run Off Class 6 Text (varchar) Component slope_r Slope Gradient 6 Integer Component slopelenusle_r Slope Length 6 Decimal Component 12

13 Taxclname Taxonomic Class Name 6 Text (varchar) Component Culumns per table: 58 CHORIZON - Split into 6 tables Field Name Brief description 13 Instances per Record General Data Type SSURGO Table Mukey Map Unit Key - in every table 6 Text (varchar) Mapunit Cokey Component Key - in every table 6 Text (varchar) Component aashind_r AASHTO group index 30 Integer Chorizon awc_r Available Water Capacity - Representative Value 30 Decimal Chorizon Chkey Horizon Key - matches all lower records to component key 30 Text (varchar) Chorizon claytotal_r Total amount of clay present 30 Decimal Chorizon ec_r Electrical conductivity 30 Decimal Chorizon cec7_r Cation Exchange Capacity - Representative Value 30 Decimal Chorizon frag3to10 Rock Fragments Representative Value 30 Decimal Chorizon fraggt10_r Rock Fragments >10 - Representative Value 30 Decimal Chorizon hzdepb_r Horizon Bottom Depth - Representative Value 30 Integer Chorizon hzdept_r Horizon Top Depth - Representative Value 30 Integer Chorizon Hzname Official Designation 30 Text (varchar) Chorizon ksat_h Ksat - High Value 30 Decimal Chorizon ksat_l Ksat - Low Value 30 Decimal Chorizon ksat_r Ksat - Representative Value 30 Decimal Chorizon lep_r Linear Extensibility -High Value 30 Decimal Chorizon ll_r Liquid Limit - Representative Value 30 Decimal Chorizon om_r Organic Matter - Representative Value 30 Decimal Chorizon ph1to1h2o_r PH Soil Reaction - Representative Value 30 Decimal Chorizon pi_r Plasticity Index - Representative Value 30 Decimal Chorizon sandtotal_r Total amount of sand present 30 Decimal Chorizon silttotal_r Total amount of silt present 30 Decimal Chorizon Texdesc Horizon Texture Descriptions 30 Text (varchar) Chtexturegrp Texture Horizon Texture Modifier and Class Concatenation 30 Text (varchar) Chtexturegrp Unifiedcl Horizon Unified Classes 30 Text (varchar) Chunified Columns per table: 122 All soils data stats Maximum Number of Tables: 10 Maximum Number of Columns: 998 COLUMNINFO - 1 TABLE Field Name Brief description Instances per Record General Data Type SSURGO Table Tabphyname Table Physical Name 1 Text (varchar) Mdstattabcols Colphyname Column Physical Name 1 Text (varchar) Mdstattabcols Collogname Cloumn Logical Name 1 Text (varchar) Mdstattabcols Collabel Column Label 1 Text (varchar) Mdstattabcols Uom Unit of Measurement 1 Text (varchar) Mdstattabcols Coldesc Column Description 1 Text (varchar) Mdstattabcols Colprecision Column Precision 1 Integer Mdstattabcols

14 Culumns per table: 7 STOREDQUERY - 1 TABLE (Table created by Stored Query Administrator ) Field Name Brief description Instances General Data SSURGO per Type Table Record Sqkey StoredQuery-key 1 Text(varchar) N/A Islinked Boolean to determine if query is stand alone or part of a model. 1 Bit N/A linkchild linkparent linkorder sqsname reference to next query in the model - link to physical 1 Text(varchar) N/A reference to last query in the model - link to physical 1 Text(varchar) N/A What order the sequence should run (e.g. 3 would mean that the query should be run third) 1 Integer N/A Stored Query physical Name - link to physical location 1 Text(varchar) N/A Culumns per table: 6 Soils_Districts (Copied from the soil districts shapefile) Field Name Brief description 14 Instances per Record General Data Type SSURGO Table OBJECTID Unique Identifier 1 Integer Shapefile SASTATCODE Code that represents the data's availability 1 = Tabular Only 2 = Tabular and Spatial 0 = Unpublished 1 Integer Shapefile NAME District Name Label 1 Text(varchar) Shapefile STATUS PI Holds the download status of the feature 1st digit = STATATCODE 2nd digit = 1(Downloaded) or 0(Not Available) 1 Integer Shapefile PI availability 1 = Yes 0 = No 1 Integer Shapefile Columns per table: 5 Mdstatdomdet (Copied from Dodge SSURGO soils database - could be copied from any of the databases) Field Name Brief description Instances per General Data Record Type SSURGO Table Domainname 1 Text(varchar) Dodge County - mdstatdomdet Choice Choice 1 Text(varchar) Dodge County - mdstatdomdet choicesequence Choice Sequence 1 Integer Dodge County - mdstatdomdet Choicedesc Choice Description 1 Text(varchar) Dodge County - mdstatdomdet Choceobsolete Lists if domain no longer recorded 1 Boolean Dodge County - mdstatdomdet Columns per table: 5 STORED_QUERY_LOG (Stand Alone table created to store password/users for Admin site) Field Name Brief description Instances per Record General Data Type SSURGO Table IDField Unique Identifier 1 Integer Data Entry

15 User_Name Login Name 1 Text(varchar) Data Entry User_Pass Login Password 1 Text(varchar) Data Entry Can_Manage Field set if user can delete a query 1 Text(varchar) Data Entry Culumns per table: 4 Appendix B. Soils Database Data Model. Appendix C. Web Application Images. Extract Query Results Tool allows users to export Query Results as a zipped shapefile. Click this box to retrieve features data. Warnings: You must have a soils layer added to the map. Even if soils layer not visible it will extract data for soils features in the map. This action can take a while so be careful before resubmitting request. Wait until file link is shown in Results section of the Console. Click on the Get Data link. Click on save and follow the wizard instructions. 15

16 In order to view the query result in ArcMap you will need to extract them to a folder first. The Query Results Table is saved using a ; as the column delimiter. Open the file in Excel and export the table as a dbf4 document. Open ArcMap and add the Query Results shapefile and the Query Results dbf4 file. Create a spatial join between the two Mukey (shapefile) and MKEY (table). Export the shapefile from ArcMap and it will include all the information from both the Table and the shapefile. Create Query Full view of steps one through three. 16

17 The button Current Variable Information returns a description of a variable includes the data type and unit of measurement. Map Builder Allows user to search soils attributes for soils features in the map. Window opens when Clicked Choose Unit Type: MapUnit Component Horizon Choose variable that you wish to restrict the results by. Numbers in image shown above 1. Variable's full name 2. Variable Data Type 3. Unit of Measurement 4. Variable Description Click Next Step to enter value or restriction. The Variables data type will determine how the variable's restriction will be entered. 17

18 Entry Type #1 Entry Type #2 Entry Type #3 1. Variable is Textual Enter Text Click Next Step 2. Variable is Numeric Enter lowest value in From box Enter highest value in To box Click Next Step 3. Variable has a Domain Choose domain value Click Next Step If you have more than one domain in the results list the results returned will contain features with each domain entered. Click Next step to add the restrictions to the list. Click Go Back to choose a different variable. The restrictions once added have format: 1. Unit Type restirction from 2. Short name if variabe 3. Variable restriction entered Click Run Query to get results. Click Clear List to start a new set of Restrictions. Canned Query Tool allows users to run a predefined Query on the soils features in the map. Choose a query from the list Click Run Query Example: If you choose Flooding Frequency 18

19 Map Contents: Shows which colors have what label. Map: Each feature is colored according to the Label from the Map Contents that it corresponds to. If you choose Hydric Report: A new window will open showing the report for the entire soil survey area currently added to the map. You may need to have pop up blocker off to view the document. Extract Soils Tables Tool allows users to export a version of the soils information that has been added to the map. The tables are exported out as CSV and can be imported into most database systems. Click this box to retrieve soils data for the soils features in the map. Warnings: You must have a soils layer added to the map. Even if soils layer not visible it will extract data for soils features in the map. This action can take a while so be careful before resubmitting request. Wait until file link is shown in Results section of the Console. Click on the Get Data link Click on save and follow the wizard instructions. In order to view the files in excel you will need to extract them to a folder first. Each file is saved with using a ; as the column delimiter. 19

20 Main Website 20

Reading SSURGO Soils Data

Reading SSURGO Soils Data Reading SSURGO Soils Data Downloading SSURGO data 1. Download. You could google SSURGO download, or just go to the Soil Data Mart: http://soildatamart.nrcs.usda.gov/ a. Select the state (must be California

More information

Soil Data Viewer 5.1 User Guide

Soil Data Viewer 5.1 User Guide Soil Data Viewer 5.1 User Guide Soil Survey Division October 2006 INTRODUCTION... 5 WHAT IS SOIL DATA VIEWER... 5 WHAT SOFTWARE AND CAPABILITIES DO I NEED TO USE SOIL DATA VIEWER 5.1?... 5 WHAT DATA DO

More information

How to Download Census Data from American Factfinder and Display it in ArcMap

How to Download Census Data from American Factfinder and Display it in ArcMap How to Download Census Data from American Factfinder and Display it in ArcMap Factfinder provides census and ACS (American Community Survey) data that can be downloaded in a tabular format and joined with

More information

Downloading SSURGO Soil Data from Internet

Downloading SSURGO Soil Data from Internet Downloading SSURGO Soil Data from Internet Prepared by Venkatesh Merwade School of Civil Engineering, Purdue University vmerwade@purdue.edu September 2012 Purpose The purpose of this exercise to demonstrate

More information

HELCOM Data and Map Service. User Manual

HELCOM Data and Map Service. User Manual HELCOM Data and Map Service User Manual Version 2.2 - February 2015 1 Table of contents 1. General Information... 3 1.1 Background... 3 1.2 Technical requirements... 3 1.3 Contact... 3 2. Accessing HELCOM

More information

There are various ways to find data using the Hennepin County GIS Open Data site:

There are various ways to find data using the Hennepin County GIS Open Data site: Finding Data There are various ways to find data using the Hennepin County GIS Open Data site: Type in a subject or keyword in the search bar at the top of the page and press the Enter key or click the

More information

Spatial Database Support

Spatial Database Support Page 1 of 11 Spatial Database Support Global Mapper can import vector data from and export vector data to the following spatial databases: Esri ArcSDE Geodatabase Esri File Geodatabase Esri Personal Geodatabases

More information

Database Servers Tutorial

Database Servers Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents A quick tour of the database servers tutorial........................ 3 Exercise 1: Add a database server to the Catalog tree and create

More information

INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178

INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178 INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178 1) Navigate to the C:/temp folder 2) Make a directory using your initials. 3) Use your web browser to navigate to www.library.yale.edu/mapcoll/ and

More information

Soil Maps & GIS Using SSURGO Data in ArcView

Soil Maps & GIS Using SSURGO Data in ArcView Soil Maps & GIS Using SSURGO Data in ArcView A guide to obtaining, preparing, and using SSURGO soil data in ArcView projects. Dan Harms Jo Daviess Carroll AVC Elizabeth, IL 1 Table of Contents Introduction

More information

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve.

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve. Quick Start Guide DocuSign Retrieve 3.2.2 Published April 2015 Overview DocuSign Retrieve is a windows-based tool that "retrieves" envelopes, documents, and data from DocuSign for use in external systems.

More information

Data Visualization. Brief Overview of ArcMap

Data Visualization. Brief Overview of ArcMap Data Visualization Prepared by Francisco Olivera, Ph.D., P.E., Srikanth Koka and Lauren Walker Department of Civil Engineering September 13, 2006 Contents: Brief Overview of ArcMap Goals of the Exercise

More information

Quick Start Guide to. ArcGISSM. Online

Quick Start Guide to. ArcGISSM. Online Quick Start Guide to ArcGISSM Online ArcGIS Online Quick Start Guide ArcGIS SM Online is a cloud-based mapping platform for organizations. Users get access to dynamic, authoritative content to create,

More information

WFP Liberia Country Office

WFP Liberia Country Office 1 Oscar Gobbato oscar.gobbato@wfp.org oscar.gobbato@libero.it WFP Liberia Country Office GIS training - Summary Objectives 1 To introduce to participants the basic concepts and techniques in using Geographic

More information

Moving the TRITON Reporting Databases

Moving the TRITON Reporting Databases Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,

More information

GP REPORTS VIEWER USER GUIDE

GP REPORTS VIEWER USER GUIDE GP Reports Viewer Dynamics GP Reporting Made Easy GP REPORTS VIEWER USER GUIDE For Dynamics GP Version 2015 (Build 5) Dynamics GP Version 2013 (Build 14) Dynamics GP Version 2010 (Build 65) Last updated

More information

Software: AutoCAD Civil 3D 2014, NRCS C3D 2014 template, ESRI ArcMap. Notation:Button to Press Displayed Text Icon Action {Text to Enter} Menu Item

Software: AutoCAD Civil 3D 2014, NRCS C3D 2014 template, ESRI ArcMap. Notation:Button to Press Displayed Text Icon Action {Text to Enter} Menu Item Overview: Use the following processes for exchanging georeferenced data between AutoCAD Civil 3D 2014 and ArcMap. The work must be based in any real world coordinate system. (This example uses NAD 83 UTM

More information

Personal Geodatabase 101

Personal Geodatabase 101 Personal Geodatabase 101 There are a variety of file formats that can be used within the ArcGIS software. Two file formats, the shape file and the personal geodatabase were designed to hold geographic

More information

OneStop Reporting 3.7 Installation Guide. Updated: 2013-01-31

OneStop Reporting 3.7 Installation Guide. Updated: 2013-01-31 OneStop Reporting 3.7 Installation Guide Updated: 2013-01-31 Copyright OneStop Reporting AS www.onestopreporting.com Table of Contents System Requirements... 1 Obtaining the Software... 2 Obtaining Your

More information

Finding GIS Data and Preparing it for Use

Finding GIS Data and Preparing it for Use Finding_Data_Tutorial.Doc Page 1 of 19 Getting Ready for the Tutorial Sign Up for the GIS-L Listserv Finding GIS Data and Preparing it for Use The Yale University GIS-L Listserv is an internal University

More information

Telelogic DASHBOARD Installation Guide Release 3.6

Telelogic DASHBOARD Installation Guide Release 3.6 Telelogic DASHBOARD Installation Guide Release 3.6 1 This edition applies to 3.6.0, Telelogic Dashboard and to all subsequent releases and modifications until otherwise indicated in new editions. Copyright

More information

GIS I Business Exr02 (av 9-10) - Expand Market Share (v3b, Jul 2013)

GIS I Business Exr02 (av 9-10) - Expand Market Share (v3b, Jul 2013) GIS I Business Exr02 (av 9-10) - Expand Market Share (v3b, Jul 2013) Learning Objectives: Reinforce information literacy skills Reinforce database manipulation / querying skills Reinforce joining and mapping

More information

ConvincingMail.com Email Marketing Solution Manual. Contents

ConvincingMail.com Email Marketing Solution Manual. Contents 1 ConvincingMail.com Email Marketing Solution Manual Contents Overview 3 Welcome to ConvincingMail World 3 System Requirements 3 Server Requirements 3 Client Requirements 3 Edition differences 3 Which

More information

Web Ambassador Training on the CMS

Web Ambassador Training on the CMS Web Ambassador Training on the CMS Learning Objectives Upon completion of this training, participants will be able to: Describe what is a CMS and how to login Upload files and images Organize content Create

More information

MEDIAplus administration interface

MEDIAplus administration interface MEDIAplus administration interface 1. MEDIAplus administration interface... 5 2. Basics of MEDIAplus administration... 8 2.1. Domains and administrators... 8 2.2. Programmes, modules and topics... 10 2.3.

More information

Bitrix Site Manager ASP.NET. Installation Guide

Bitrix Site Manager ASP.NET. Installation Guide Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary

More information

Tutorial 3: Working with Tables Joining Multiple Databases in ArcGIS

Tutorial 3: Working with Tables Joining Multiple Databases in ArcGIS Tutorial 3: Working with Tables Joining Multiple Databases in ArcGIS This tutorial will introduce you to the following concepts: Identifying Attribute Data Sources Converting Tabular Data into GIS Databases

More information

Data Visualization. Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004

Data Visualization. Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004 Data Visualization Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004 Contents Brief Overview of ArcMap Goals of the Exercise Computer

More information

TSM Studio Server User Guide 2.9.0.0

TSM Studio Server User Guide 2.9.0.0 TSM Studio Server User Guide 2.9.0.0 1 Table of Contents Disclaimer... 4 What is TSM Studio Server?... 5 System Requirements... 6 Database Requirements... 6 Installing TSM Studio Server... 7 TSM Studio

More information

File Share Navigator Online 1

File Share Navigator Online 1 File Share Navigator Online 1 User Guide Service Pack 3 Issued November 2015 Table of Contents What s New in this Guide... 4 About File Share Navigator Online... 5 Components of File Share Navigator Online...

More information

TeamViewer 9 Manual Management Console

TeamViewer 9 Manual Management Console TeamViewer 9 Manual Management Console Rev 9.2-07/2014 TeamViewer GmbH Jahnstraße 30 D-73037 Göppingen www.teamviewer.com Table of Contents 1 About the TeamViewer Management Console... 4 1.1 About the

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Advanced Event Viewer Manual

Advanced Event Viewer Manual Advanced Event Viewer Manual Document version: 2.2944.01 Download Advanced Event Viewer at: http://www.advancedeventviewer.com Page 1 Introduction Advanced Event Viewer is an award winning application

More information

Cookbook 23 September 2013 GIS Analysis Part 1 - A GIS is NOT a Map!

Cookbook 23 September 2013 GIS Analysis Part 1 - A GIS is NOT a Map! Cookbook 23 September 2013 GIS Analysis Part 1 - A GIS is NOT a Map! Overview 1. A GIS is NOT a Map! 2. How does a GIS handle its data? Data Formats! GARP 0344 (Fall 2013) Page 1 Dr. Carsten Braun 1) A

More information

National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide

National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide National Fire Incident Reporting System (NFIRS 5.0) NFIRS Data Entry/Validation Tool Users Guide NFIRS 5.0 Software Version 5.6 1/7/2009 Department of Homeland Security Federal Emergency Management Agency

More information

MICROSTRATEGY 9.3 Supplement Files Setup Transaction Services for Dashboard and App Developers

MICROSTRATEGY 9.3 Supplement Files Setup Transaction Services for Dashboard and App Developers NOTE: You can use these instructions to configure instructor and student machines. Software Required Microsoft Access 2007, 2010 MicroStrategy 9.3 Microsoft SQL Server Express 2008 R2 (free from Microsoft)

More information

2/24/2010 ClassApps.com

2/24/2010 ClassApps.com SelectSurvey.NET Training Manual This document is intended to be a simple visual guide for non technical users to help with basic survey creation, management and deployment. 2/24/2010 ClassApps.com Getting

More information

Specific Information for installation and use of the database Report Tool used with FTSW100 software.

Specific Information for installation and use of the database Report Tool used with FTSW100 software. Database Report Tool This manual contains: Specific Information for installation and use of the database Report Tool used with FTSW100 software. Database Report Tool for use with FTSW100 versions 2.01

More information

Creating Database Tables in Microsoft SQL Server

Creating Database Tables in Microsoft SQL Server Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

Chapter 6: Data Acquisition Methods, Procedures, and Issues

Chapter 6: Data Acquisition Methods, Procedures, and Issues Chapter 6: Data Acquisition Methods, Procedures, and Issues In this Exercise: Data Acquisition Downloading Geographic Data Accessing Data Via Web Map Service Using Data from a Text File or Spreadsheet

More information

Creating a Participants Mailing and/or Contact List:

Creating a Participants Mailing and/or Contact List: Creating a Participants Mailing and/or Contact List: The Limited Query function allows a staff member to retrieve (query) certain information from the Mediated Services system. This information is from

More information

ArcGIS Tutorial: Adding Attribute Data

ArcGIS Tutorial: Adding Attribute Data ArcGIS Tutorial: Adding Attribute Data Introduction A common need in GIS is to map characteristics, or attributes, of different geographic areas. These maps are called thematic maps. Examples of thematic

More information

Audit TM. The Security Auditing Component of. Out-of-the-Box

Audit TM. The Security Auditing Component of. Out-of-the-Box Audit TM The Security Auditing Component of Out-of-the-Box This guide is intended to provide a quick reference and tutorial to the principal features of Audit. Please refer to the User Manual for more

More information

Getting Started - The Control Panel

Getting Started - The Control Panel Table of Contents 1. Getting Started - the Control Panel Login Navigation Bar Domain Limits Domain User Account Properties Session Management 2. FTP Management Creating and Editing Users Accessing FTP

More information

SysPatrol - Server Security Monitor

SysPatrol - Server Security Monitor SysPatrol Server Security Monitor User Manual Version 2.2 Sep 2013 www.flexense.com www.syspatrol.com 1 Product Overview SysPatrol is a server security monitoring solution allowing one to monitor one or

More information

Kaldeera Workflow Designer 2010 User's Guide

Kaldeera Workflow Designer 2010 User's Guide Kaldeera Workflow Designer 2010 User's Guide Version 1.0 Generated May 18, 2011 Index 1 Chapter 1: Using Kaldeera Workflow Designer 2010... 3 1.1 Getting Started with Kaldeera... 3 1.2 Importing and exporting

More information

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows) Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 4: Preparing Data for Analysis

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 4: Preparing Data for Analysis : Preparing Data for Analysis When a user acquires a particular data set of interest, it is rarely in the exact form that is needed during analysis. This tutorial describes how to change the data to make

More information

NetWrix Exchange Change Reporter

NetWrix Exchange Change Reporter NetWrix Exchange Change Reporter Version 7 Administrator s Guide Contents NetWrix Exchange Change Reporter Administrator s Guide 1. INTRODUCTION... 4 1.1 KEY FEATURES... 5 1.2 LICENSING... 6 1.3 HOW IT

More information

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 USING THE WEB CONSOLE Table Of Contents Getting Started with ZENworks Asset Management Web Console... 1 How to Get Started...

More information

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 1 Table of Contents Chapter 1: Installation Overview... 3 Introduction... 3 Minimum Requirements...

More information

Content Management System User Guide

Content Management System User Guide Content Management System User Guide support@ 07 3102 3155 Logging in: Navigate to your website. Find Login or Admin on your site and enter your details. If there is no Login or Admin area visible select

More information

BillQuick Agent 2010 Getting Started Guide

BillQuick Agent 2010 Getting Started Guide Time Billing and Project Management Software Built With Your Industry Knowledge BillQuick Agent 2010 Getting Started Guide BQE Software, Inc. 2601 Airport Drive Suite 380 Torrance CA 90505 Support: (310)

More information

Aras Corporation. 2005 Aras Corporation. All rights reserved. Notice of Rights. Notice of Liability

Aras Corporation. 2005 Aras Corporation. All rights reserved. Notice of Rights. Notice of Liability Aras Corporation 2005 Aras Corporation. All rights reserved Notice of Rights All rights reserved. Aras Corporation (Aras) owns this document. No part of this document may be reproduced or transmitted in

More information

Create and share a map with GIScloud.com

Create and share a map with GIScloud.com Create and share a map with GIScloud.com GIS Cloud is a web based Geographic Information System powered by Cloud Computing and with the full power of desktop GIS. It allows users to create and access your

More information

Executive Dashboard. User Guide

Executive Dashboard. User Guide Executive Dashboard User Guide 2 Contents Executive Dashboard Overview 3 Naming conventions 3 Getting started 4 Welcome to Socialbakers Executive Dashboard! 4 Comparison View 5 Setting up a comparison

More information

Publishing KML Services Tutorial

Publishing KML Services Tutorial Publishing KML Services Tutorial Copyright 1995-2010 Esri All rights reserved. Table of Contents Tutorial: Publishing a KML service............................ 3 Copyright 1995-2010 ESRI, Inc. All rights

More information

Build an ArcGIS Online Application

Build an ArcGIS Online Application Build an ArcGIS Online Application Sign into ArcGIS Online for Maryland 1. Open a web browser 2. Go to URL http://maryland.maps.arcgis.com/ 3. Click Sign In in the upper right corner of the web page 4.

More information

Once logged in you will have two options to access your e mails

Once logged in you will have two options to access your e mails How do I access Webmail? Webmail You can access web mail at:- http://stu.utt.edu.tt:2095 or https://stu.utt.edu.tt:2096 Enter email address i.e. user name (full email address needed eg. fn.ln@stu.utt.edu.tt

More information

Quick and Easy Web Maps with Google Fusion Tables. SCO Technical Paper

Quick and Easy Web Maps with Google Fusion Tables. SCO Technical Paper Quick and Easy Web Maps with Google Fusion Tables SCO Technical Paper Version History Version Date Notes Author/Contact 1.0 July, 2011 Initial document created. Howard Veregin 1.1 Dec., 2011 Updated to

More information

Tutorial 5: Summarizing Tabular Data Florida Case Study

Tutorial 5: Summarizing Tabular Data Florida Case Study Tutorial 5: Summarizing Tabular Data Florida Case Study This tutorial will introduce you to the following: Identifying Attribute Data Sources for Health Data Converting Tabular Data into Usable Databases

More information

RSA Authentication Manager 7.1 Basic Exercises

RSA Authentication Manager 7.1 Basic Exercises RSA Authentication Manager 7.1 Basic Exercises Contact Information Go to the RSA corporate web site for regional Customer Support telephone and fax numbers: www.rsa.com Trademarks RSA and the RSA logo

More information

ArcGIS online Introduction... 2. Module 1: How to create a basic map on ArcGIS online... 3. Creating a public account with ArcGIS online...

ArcGIS online Introduction... 2. Module 1: How to create a basic map on ArcGIS online... 3. Creating a public account with ArcGIS online... Table of Contents ArcGIS online Introduction... 2 Module 1: How to create a basic map on ArcGIS online... 3 Creating a public account with ArcGIS online... 3 Opening a Map, Adding a Basemap and then Saving

More information

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72 User Guide Contents 1 Introduction... 4 2 Requirements... 5 3 Important Note for Customers Upgrading... 5 4 Installing the Web Reports

More information

Team Foundation Server 2013 Installation Guide

Team Foundation Server 2013 Installation Guide Team Foundation Server 2013 Installation Guide Page 1 of 164 Team Foundation Server 2013 Installation Guide Benjamin Day benday@benday.com v1.1.0 May 28, 2014 Team Foundation Server 2013 Installation Guide

More information

VMware Mirage Web Manager Guide

VMware Mirage Web Manager Guide Mirage 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document,

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

More information

Logi Ad Hoc Reporting Report Design Guide

Logi Ad Hoc Reporting Report Design Guide Logi Ad Hoc Reporting Report Design Guide Version 10.2 Last Updated: May 2012 Page 2 Table of Contents INTRODUCTION... 4 What is Logi Ad Hoc Reporting?... 5 CHAPTER 1 Getting Started... 6 Learning the

More information

Guidelines on Information Deliverables for Research Projects in Grand Canyon National Park

Guidelines on Information Deliverables for Research Projects in Grand Canyon National Park INTRODUCTION Science is playing an increasing role in guiding National Park Service (NPS) management activities. The NPS is charged with protecting and maintaining data and associated information that

More information

ServerView Inventory Manager

ServerView Inventory Manager User Guide - English FUJITSU Software ServerView Suite ServerView Inventory Manager ServerView Operations Manager V6.21 Edition October 2013 Comments Suggestions Corrections The User Documentation Department

More information

Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc.

Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc. Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

More information

Enterprise Toolbar User s Guide. Revised March 2015

Enterprise Toolbar User s Guide. Revised March 2015 Revised March 2015 Copyright Notice Trademarks Copyright 2007 DSCI, LLC All rights reserved. Any technical documentation that is made available by DSCI, LLC is proprietary and confidential and is considered

More information

Install SQL Server 2014 Express Edition

Install SQL Server 2014 Express Edition How To Install SQL Server 2014 Express Edition Updated: 2/4/2016 2016 Shelby Systems, Inc. All Rights Reserved Other brand and product names are trademarks or registered trademarks of the respective holders.

More information

- Solvent extraction Database -

- Solvent extraction Database - - Solvent extraction Database - - manual - SXD user manual Three modes of functioning are available: Adminisitrator mode: database management and creation/deletion of users accounts. Operator mode: supply

More information

Getting Started with the ArcGIS Predictive Analysis Add-In

Getting Started with the ArcGIS Predictive Analysis Add-In Getting Started with the ArcGIS Predictive Analysis Add-In Table of Contents ArcGIS Predictive Analysis Add-In....................................... 3 Getting Started 4..............................................

More information

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Interneer, Inc. Updated on 2/22/2012 Created by Erika Keresztyen Fahey 2 Workflow - A102 - Basic HelpDesk Ticketing System

More information

Add User to Administrators Group using SQL Lookup Table

Add User to Administrators Group using SQL Lookup Table Add User to Administrators Group using SQL Lookup Table Summary This utility is intended to aid customers in the ability to make the user of a desktop a local administrator on the desktop. In order to

More information

Egnyte Single Sign-On (SSO) Installation for Okta

Egnyte Single Sign-On (SSO) Installation for Okta w w w. e g n y t e. c o m Egnyte Single Sign-On (SSO) Installation for Okta To set up Egnyte so employees can log in using SSO, follow the steps below to configure Okta and Egnyte to work with each other.

More information

Microsoft Access Glossary of Terms

Microsoft Access Glossary of Terms Microsoft Access Glossary of Terms A Free Document From www.chimpytech.com COPYRIGHT NOTICE This document is copyright chimpytech.com. Please feel free to distribute and give away this document to your

More information

1. Digital Asset Management User Guide... 2 1.1 Digital Asset Management Concepts... 2 1.2 Working with digital assets... 4 1.2.1 Importing assets in

1. Digital Asset Management User Guide... 2 1.1 Digital Asset Management Concepts... 2 1.2 Working with digital assets... 4 1.2.1 Importing assets in 1. Digital Asset Management User Guide........................................................................... 2 1.1 Digital Asset Management Concepts........................................................................

More information

Unemployment Insurance Data Validation Operations Guide

Unemployment Insurance Data Validation Operations Guide Unemployment Insurance Data Validation Operations Guide ETA Operations Guide 411 U.S. Department of Labor Employment and Training Administration Office of Unemployment Insurance TABLE OF CONTENTS Chapter

More information

Tutorial #1: Getting Started with ASP.NET

Tutorial #1: Getting Started with ASP.NET Tutorial #1: Getting Started with ASP.NET This is the first of a series of tutorials that will teach you how to build useful, real- world websites with dynamic content in a fun and easy way, using ASP.NET

More information

How to Create and Send a Froogle Data Feed

How to Create and Send a Froogle Data Feed How to Create and Send a Froogle Data Feed Welcome to Froogle! The quickest way to get your products on Froogle is to send a data feed. A data feed is a file that contains a listing of your products. Froogle

More information

ER/Studio Enterprise Portal 1.0.2 User Guide

ER/Studio Enterprise Portal 1.0.2 User Guide ER/Studio Enterprise Portal 1.0.2 User Guide Copyright 1994-2008 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights

More information

COGNOS Query Studio Ad Hoc Reporting

COGNOS Query Studio Ad Hoc Reporting COGNOS Query Studio Ad Hoc Reporting Copyright 2008, the California Institute of Technology. All rights reserved. This documentation contains proprietary information of the California Institute of Technology

More information

Groundwater Chemistry

Groundwater Chemistry Mapping and Modeling Groundwater Chemistry By importing Excel spreadsheets into ArcGIS 9.2 By Mike Price, Entrada/San Juan, Inc. In ArcGIS 9.2, Microsoft Excel spreadsheet data can be imported and used

More information

Team Foundation Server 2012 Installation Guide

Team Foundation Server 2012 Installation Guide Team Foundation Server 2012 Installation Guide Page 1 of 143 Team Foundation Server 2012 Installation Guide Benjamin Day benday@benday.com v1.0.0 November 15, 2012 Team Foundation Server 2012 Installation

More information

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide Page 1 of 243 Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide (This is an alpha version of Benjamin Day Consulting, Inc. s installation

More information

NovaBACKUP. Storage Server. NovaStor / May 2011

NovaBACKUP. Storage Server. NovaStor / May 2011 NovaBACKUP Storage Server NovaStor / May 2011 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without notice.

More information

GIS III: GIS Analysis Module 2a: Introduction to Network Analyst

GIS III: GIS Analysis Module 2a: Introduction to Network Analyst *** Files needed for exercise: nc_cty.shp; target_stores_infousa.dbf; streets.sdc (provided by street map usa); NC_tracts_2000sf1.shp Goals: To learn how to use the Network analyst tools to perform network

More information

ArcGIS Reference Document

ArcGIS Reference Document Migration of GIS Data to ArcSDE Page 1 of 10 Table of Contents A Brief Summary of DEP s GIS Data Storage o The Y Drive o ArcSDE (Spatial Database) Keeping Your GIS Project Data Current o Checking Your

More information

Liebert Nform Infrastructure Monitoring Software. User Manual - Version 4

Liebert Nform Infrastructure Monitoring Software. User Manual - Version 4 Liebert Nform Infrastructure Monitoring Software User Manual - Version 4 TABLE OF CONTENTS 1.0 ABOUT LIEBERT NFORM................................................1 1.1 How Do You Contact Emerson Network

More information

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided

More information

Pinpointe User s Guide

Pinpointe User s Guide Pinpointe User s Guide Edition 2.1 October 2008 About This User s Guide How to Use This User s Guide This user s guide describes Pinpointe s Graphical User Interface (GUI). It shows you how to use each

More information

SelectSurvey.NET Basic Training Class 1

SelectSurvey.NET Basic Training Class 1 SelectSurvey.NET Basic Training Class 1 3 Hour Course Updated for v.4.143.001 6/2015 Page 1 of 57 SelectSurvey.NET Basic Training In this video course, students will learn all of the basic functionality

More information

USDA Carbon Data Visualization Tool Software Users Manual

USDA Carbon Data Visualization Tool Software Users Manual USDA Carbon Data Visualization Tool Software Users Manual Version 1.0 April 2012 Critigen and The catalyst to modernize critical infrastructure are trademarks of Critigen. All other trademarks used herein

More information

GETTING STARTED GUIDE. FileAudit VERSION. www.isdecisions.com

GETTING STARTED GUIDE. FileAudit VERSION. www.isdecisions.com GETTING STARTED GUIDE FileAudit 5 VERSION www.isdecisions.com Introduction FileAudit monitors access or access attempts to sensitive files and folders on Microsoft Windows servers. FileAudit allows you

More information