GIS Pathway... http://gispathway.com ...helping guiding you to success in the world of GIS! Tue, 25 Sep 2012 01:56:04 +0000 en-US hourly 1 http://wordpress.org/?v=3.4.2 GIS programs will benefit from $500 million in college grants http://gispathway.com/2012/09/20/gis-programs-will-benefit-from-500-million-in-college-grants/ http://gispathway.com/2012/09/20/gis-programs-will-benefit-from-500-million-in-college-grants/#comments Fri, 21 Sep 2012 02:49:13 +0000 Timothy http://gispathway.com/?p=2339 At least two colleges have stated that they plan to apply grant funds to their Geographic Information Systems (GIS) programs.  There are a total of 297 schools that will receive grants as individual applicants or as members of a consortium.

The University of Hawaii Maui College in connection with Kauai Community College and Hawaii Community College plan to target the GIS industry.  In addition to developing a GIS certificate program, the university/colleges have made plans to partner with key employers such as U.S. Geologic Survey and Esri.

The other is Stark State College that will cover curriculum development for new associate degrees and certificates related to the emerging oil and gas industry.  It will also go towards creating and supplying training labs for computers, geographic information systems (GIS), and geology.

This grant will add a big boost for these two programs, and there is sure to be more benefits for other GIS programs at the nearly 300 recipient schools.

Secretary of Labor Hilda L. Solis today announced $500 million in grants to community colleges and universities around the country for the development and expansion of innovative training programs. The grants are part of the Trade Adjustment Assistance Community College and Career Training initiative, which promotes skills development and employment opportunities in fields such as advanced manufacturing, transportation and health care, as well as science, technology, engineering and math careers through partnerships between training providers and local employers. The U.S. Department of Labor is implementing and administering the program in coordination with the U.S. Department of Education.

Read more from the Department of Labor’s press release…
Grantee Summary PDF

Related Info:

Maps of grant totals by state for round one, and combined totals from round one and round two.

Stark State to tap grant for shale-related training

 

]]>
http://gispathway.com/2012/09/20/gis-programs-will-benefit-from-500-million-in-college-grants/feed/ 0
Centralia College adds new GIS courses http://gispathway.com/2012/09/17/centralia-college-adds-new-gis-courses/ http://gispathway.com/2012/09/17/centralia-college-adds-new-gis-courses/#comments Mon, 17 Sep 2012 13:00:17 +0000 Timothy http://gispathway.com/?p=2323 Centralia College East in Morton, Washington recently added two new Geographic Information Systems (GIS) courses to their list of courses.  GIS 110 provides the introduction to the geographic information systems technology and is a prerequisite to GIS 250 which covers advanced topics and remote sensing.

Below are the course descriptions for the two new courses:

 

GIS 110
INTRODUCTION TO GIS (5)
Introduction to the principles of geographic information systems: data sources, data models, capturing and manipulating GIS data, geography concepts, and spatial data. Hands-on practice with GIS software. Prerequisite: MATH 098, must have computer skills (email, file structure, windows).

GIS 250
GIS AND REMOTE SENSING W/ LAB (5)
Application of geographic information systems (GIS) and techniques of remote sensing in natural resource management, including area determination, scale, height measurement, and forest analysis. Detailed cases are studied. Prerequisite: GIS 110, ENGL 099, MATH 099 or instructor permission.

Read more from the news release: GIS classes offered at Morton education center

Centralia College is the oldest continuously operating community college in the state of Washington. The college was founded in 1925 and has a rich heritage of professional, technical, transfer, and basic skills programs serving the community.

Centralia College East
701 Airport Way
P.O. Box 147
Morton, WA 98356
(360) 496-5022

 

]]>
http://gispathway.com/2012/09/17/centralia-college-adds-new-gis-courses/feed/ 0
Esri Technical Certification and Prep Courses http://gispathway.com/2011/08/24/esri-technical-certification-and-prep-courses/ http://gispathway.com/2011/08/24/esri-technical-certification-and-prep-courses/#comments Wed, 24 Aug 2011 12:15:46 +0000 Timothy http://gispathway.com/?p=2272 The Esri Technical Certification is beginning to really take off.  Several areas have finished development and are now available.  If you are not familiar with the certification, it is similar to the Microsoft Certifications.

You can find a great overview of the certification and its benefits by watching this training seminar.  You can also check out each area below:

Desktop

ArcGIS Desktop
Associate

Professional

Developer

ArcGIS Desktop Developer
Associate

Professional

Web Application Developer
Associate

Professional

Mobile Developer
Associate

Professional

Enterprise
Enterprise Administration
Associate
Enterprise Geodatabase Management
Associate

Professional

Enterprise System Design
Associate

Professional

If you are a bit leery about taking the exam, Esri provides a refresher course to prepare for the exam.  These courses do not teach specifically to the exam, but they cover keys areas.  The courses are instructor-led for in-person or on-line.

Esri Certification Exam Prep Courses

Also find a great inside scoop from the writer of the prep course in Training Spotlight: ArcGIS Desktop Professional Certification.

]]>
http://gispathway.com/2011/08/24/esri-technical-certification-and-prep-courses/feed/ 0
Taking advantage of Python in ArcGIS http://gispathway.com/2011/05/12/taking-advantage-of-python-in-arcgis/ http://gispathway.com/2011/05/12/taking-advantage-of-python-in-arcgis/#comments Fri, 13 May 2011 00:49:59 +0000 Timothy http://gispathway.com/?p=2259 Python is the next big programming language for ArcGIS. With the addition of the ArcPy module in ArcGIS 10 there is so much more that can be done with Python. In previous version of ArcGIS VBA made is easy to customize the interface and basic processes. At the release of ArcGIS 10.1 VBA will no longer be supported.

So now that Python has been proven as a great tool, who do you begin.  Sure you can start with www.python.org but the is so much information is on the site you are not sure where to start.  Well, there is a endless source for finding code samples.  Search the ArcGIS Help Library to find the tool you would like to use.  Then scroll to near the bottom and there is a code sample to use in the Python Window or as a stand-alone script for that particular tool.

Another  method that saves a lot of time is to use ModelBuilder and create a model for the desired process.  Once you get the model working then export the model as a script (Model > Export > Script).  The output of this export provides a great starting point for expanding on the python code to get the task accomplished.

Here is a quick example from the Buffer tool help document:

Python Widnow Script
import arcpy
arcpy.env.workspace = "C:/data"
arcpy.Buffer_analysis("roads", "C:/output/majorrdsBuffered" "100 Feet", "FULL", "ROUND", "LIST", "Distance")

Stand-alone Script
# Name: Buffer.py
# Description: Find areas of suitable vegetation which exclude areas heavily impacted by major roads
# Author: ESRI

# import system modules
import arcpy
from arcpy import env

# Set environment settings
env.workspace = “C:/data/Habitat_Analysis.gdb”

# Select suitable vegetation patches from all vegetation
veg = “vegtype”
suitableVeg = “C:/output/Output.gdb/suitable_vegetation”
whereClause = “HABITAT = 1″
arcpy.Select_analysis(veg, suitableVeg, whereClause)

# Buffer areas of impact around major roads
roads = “majorrds”
roadsBuffer = “C:/output/Output.gdb/buffer_output”
distanceField = “Distance”
sideType = “FULL”
endType = “ROUND”
dissolveType = “LIST”
dissolveField = “Distance”
arcpy.Buffer_analysis(roads, roadsBuffer, distanceField, sideType, endType, dissolveType, dissolveField)

# Erase areas of impact around major roads from the suitable vegetation patches
eraseOutput = “C:/output/Output.gdb/suitable_vegetation_minus_roads”
xyTol = “1 Meters”
arcpy.Erase_analysis(suitableVeg, roadsBuffer, eraseOutput, xyTol)

]]>
http://gispathway.com/2011/05/12/taking-advantage-of-python-in-arcgis/feed/ 0
Geospatial Inteligent Mobile Application – Touch Inspect http://gispathway.com/2010/04/15/geospatial-inteligent-mobile-application-touch-inspect/ http://gispathway.com/2010/04/15/geospatial-inteligent-mobile-application-touch-inspect/#comments Thu, 15 Apr 2010 13:44:23 +0000 Timothy http://gispathway.com/?p=2219 I am not much on mobile GIS as I spend much of my time in the office, but this new technology is one of a kind.  The release of the Touch Inspect™ has been out for a few months.  It is put out by Mobile Epiphany which was founded in 2008.  Mobile Epiphany is a Colorado-based software development company that creates enterprise class mobile solutions that improve workflow and productivity across a variety of industries.

So what is the Touch Inspect™ ?

Touch Inspect™ is an application for Windows Mobile, XP, Vista and Windows 7 devices, which provides enterprise class, media-enhanced, geospatially intelligent, asset-centric field data collection and worker decision support.

What can the Touch Inspect™ do?

Touch Inspect™ was designed to collect a wide variety of data types in the field using capabilities far beyond simple forms and barcode scans. The application uses GPS to allow workers to map the location of individual assets as well as search for them by proximity to the user. Using an array of multimedia features, users can gather more detailed visual information about assets as well. For example, a utility inspector could take a picture of a metal power pole then use the drawing tool to circle rust spots in the picture and save it to the inspection history. Inspectors who see the pole at some later date could then call up the picture for comparison, to see if the rust spots have grown, and decide whether or not to recommend maintenance. Mobile epiphany refers to this as one part of field decision support.

The new application also solves data problems associated with other solutions. Data loss is prevented by storing information on the handheld device itself, then transmitting it to the database when a connection is available. Even if the connection is lost, the data is safely stored on the device for later transmission. Another noteworthy feature is the ability to transmit data in real time and auto-generate reports in moments.

What makes the Touch Inspect™ different ?

Unlike other applications which require server setup time and cost (not to mention that everyone doesn’t have their own IT department), Touch Inspect™ allows their system to be purchased monthly (Software as a Subscription) or hosted quarterly, meaning the users do not have to even think about server technology. That approach makes functionality that was traditionally only available to the largest of corporations now readily available to small and medium size business users. It is designed to be configured in hours and start running almost immediately. And for the larger enterprises that insist on housing their own servers, Mobile Epiphany makes the technology available in that format as well.

The new application also solves data problems associated with other solutions. Data loss is prevented by storing information on the handheld device itself, then transmitting it to the database when a connection is available. Even if the connection is lost, the data is safely stored on the device for later transmission. Another noteworthy feature is the ability to transmit data in real time and auto-generate reports in moments.

As the name implies, the interface is finger-touch based with large, color-coded graphics and minimal, but bold and easy-to-read text for faster navigation. Other design features such as multi-function buttons keep the screen uncluttered while still allowing for high levels of intuitive functionality. And because Touch Inspect™ is easily configurable, it allows users to define their own work flow, meaning that the application can be specifically tailored to any industry that needs enterprise level asset inspection among a host of many other mobile data needs.

Check out the Touch Inspect™

More News on Touch Inspect

]]>
http://gispathway.com/2010/04/15/geospatial-inteligent-mobile-application-touch-inspect/feed/ 0
New GIS Job Board Added http://gispathway.com/2010/02/05/new-gis-job-board-added/ http://gispathway.com/2010/02/05/new-gis-job-board-added/#comments Fri, 05 Feb 2010 13:00:25 +0000 Timothy http://gispathway.com/?p=2162 I have added a new addition to the GIS Pathway website. There is now an active job board for GIS jobs.  There is a variety of positions available.  There is even an option for adding your own job posts.

In an effort to help boost the available positions, you can post as many jobs as you would like for free during the month of February 2010.  Simply use the discount code: <FreeFeb10>.

Also take the time to visit and follow the @GISJobs4U twitter account.  Get the latest GIS jobs sent to your Twitter account.

Here are some of the latest GIS jobs available through the job board.



]]>
http://gispathway.com/2010/02/05/new-gis-job-board-added/feed/ 0
ArcGIS Explorer – Setting Relative Paths http://gispathway.com/2010/01/25/arcgis-explorer-setting-relative-paths/ http://gispathway.com/2010/01/25/arcgis-explorer-setting-relative-paths/#comments Mon, 25 Jan 2010 12:00:08 +0000 Timothy http://gispathway.com/?p=2067 As you begin developing your ArcGIS Explorer presentation you will find many new and helpful additions to make it one of a kind.  The time you spend developing the presentation is well worth the wow-effect people see with this software.  Most of the time you create your presentations on a desktop computer and then present it on another computer.  By moving your files from one system to the other, the data paths can easily be corrupted.  This can cause a big headache if you find the problem as you are fixing to present.  Fortunately, there is a way to prevent this problem.

In ArcMap there is the option to store relative paths for the data layers you add to your map.  This same feature is available in ArcGIS Explorer.  A few quick steps will put you on your way out the door with no worries for your presentation data.

1. Click the Office Button and select Map Properties

MapPropMenu

2. Under Data Access check the Store relative paths option

relative_paths

3. Save your presentation

If you found this tip helpful, try these other ArcGIS Explorer tips:

ArcGIS Explorer – Adding Slides

ArcGIS Explorer – Adding Data

ArcGIS Explorer – Change Color Scheme

This example uses ArcGIS Explorer 900.  If you don’t have it, download ArcGIS Explorer 900 for free today!

]]>
http://gispathway.com/2010/01/25/arcgis-explorer-setting-relative-paths/feed/ 0
ArcGIS Explorer – Adding Slides http://gispathway.com/2010/01/18/arcgis-explorer-adding-slides/ http://gispathway.com/2010/01/18/arcgis-explorer-adding-slides/#comments Mon, 18 Jan 2010 12:00:09 +0000 Timothy http://gispathway.com/?p=2074 In ArcGIS Explorer 900 you are able to create dynamic presentations.  There is the ability to go from a slide presentation directly into an interactive map.  You can then go back to the slides all within this one program.  There is not a slide creation method in ArcGIS Explorer.  The only text you can add in are title that appear at the top of the screen.  In order to add slides, they must be created in another program and added in as a *.PNG file.  This can be done through either PowerPoint or a graphics program such as Photoshop.  This example uses Microsoft PowerPoint.

1. Create slide in Microsoft PowerPoint

slide_ppt

2. Save slide as a Portable Graphics Network Format (*.png)

slide_ppt_Menu

slide_save_png

3.  Choose either current slide or every slide

slide_ppt_all

4. Add content -> Image Overlays…

slide_add_image

Slide_Demo

This example uses ArcGIS Explorer 900.  If you don’t have it, download ArcGIS Explorer 900 for free today!

]]>
http://gispathway.com/2010/01/18/arcgis-explorer-adding-slides/feed/ 0
ArcGIS Explorer – Adding Data http://gispathway.com/2010/01/11/arcgis-explorer-adding-data/ http://gispathway.com/2010/01/11/arcgis-explorer-adding-data/#comments Mon, 11 Jan 2010 12:00:06 +0000 Timothy http://gispathway.com/?p=2086 The new ArcGIS Explorer 900 has some really cool features to make exploring the globe fairly simple.  With ArcGIS Explorer, adding data could not be any easier.   Looking at data already provided my ESRI, Bing, USGS, etc. is one thing.  Adding in data, specifically your own makes ArcGIS Explorer even more useful.

Data that can be added in includes: ArcGIS Online, ArcGIS Layers, Map Content Files, KML Files, GIS Services, Shapefiles, Raster Data, Geodatabase Data, Text Files, GPS Data Files, and Image Overlays.

adddata_menuEach of these data elements can be added directly from the Add Content button on the Home Menu ribbon.  By clicking the Add Content button, a menu like the one on the right will show and you can choose your data type.  Follow the specific directions provided and the data will be added into the Contents Window.  The data will be shown with various icons to indicate the data type.

adddata_contentsOne type of data that can be added in that will preserve the symbology is ArcGIS Layers and ArcGIS Layer Packages.  The symbology that is create in ArcMap can be shown in ArcGIS Explorer.  Since explorer has limited symbology, this helps take visualization to the next level.  The difference between ArcGIS Layers and  ArcGIS Layer Packages is that the packages area created so that both the data and symbology can be easily move from one computer to another computer in one file package.  The Layers can be used, but the data must reside on the some computer.

To create a layer package:

1. Right click the desired layer from the table of contents.

2. Click Create Layer Package…

3. Designate where to save the file.

4. A conformation of completion will pop up in an alert.

You can then use or send the file however you would like.

Layer_pkg

This example uses ArcGIS Explorer 900.  If you don’t have it, download ArcGIS Explorer 900 for free today!

]]>
http://gispathway.com/2010/01/11/arcgis-explorer-adding-data/feed/ 0
ArcGIS Explorer – Change Color Scheme http://gispathway.com/2010/01/04/arcgis-explorer-change-color-scheme/ http://gispathway.com/2010/01/04/arcgis-explorer-change-color-scheme/#comments Mon, 04 Jan 2010 12:00:03 +0000 Timothy http://gispathway.com/?p=2101 The color scheme of ArcGIS Explorer can become boring after some time.  Fortunately, you are not stuck with the blue color.  In a few simple steps, the color scheme can be changed to either blue, aqua, black, or silver.  This will help liven your desktop up a bit or even add that special touch to your presentation.  This same concept is very similar to the Office 2007 products with the ribbon toolbar.  Try it out on Explorer and you favorite Office 2007 products.

1. Click the Explorer Button (Office Button).

2. Click ArcGIS Explorer Options.


3. Under the Common tab, choose your desired color scheme.

Blue Color Scheme

Explorer_Blue

Black Color Scheme

Explorer_Black

This example uses ArcGIS Explorer 900.  If you don’t have it, download ArcGIS Explorer 900 for free today!

]]>
http://gispathway.com/2010/01/04/arcgis-explorer-change-color-scheme/feed/ 0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 get american express cash advance quick cash loans direct from lender payday loan 60 minutes payday loan san marcos texas quick loans no credit checks canada payday loan lenders telephone numbers fast cash loan rhode island payday loans america payday loan broker payday loans in canada only payday loan cash advance check n go emergency cash quick payday loan sites uk emergency loan rates payday loan kent wa short-term loans poor credit pay day loans 2 months quick cash advance loans for ohio loan express san marcos texas short term loans illinois quick loan without having bank account online loans poor credit rating payday loan 24 hour customer service payday loans dallas tx emergency cash without a bank account quick cash loans in kansas online loans with savings account loan express in canada calgary alberta online loans without direct deposit pay day loans 7 days a week