Tag Archives: sharing

Using groups to make a favorite layer list

Groups are a great way to organize content – for others and also for yourself. Any item that is publicly shared, or shared within your organization, can be referenced in a group that you own. If you’re a frequent map author, you probably have some favorite layers that you often use. Here’s a tip on how to use groups to make a “favorites” list of layers to streamline your layer search.

Continue reading

Posted in ArcGIS Online | Tagged , , | Leave a comment

Doing more with ArcGIS Online groups

Groups are an effective way to organize your maps and apps and collaborate with others. With the June 2012 release of ArcGIS Online group capabilities have been enhanced to enable you to embed group items or share them via a configurable gallery application. We’ll take a closer look at these new capabilities, and how you can use them to easily share your maps and apps in new and different ways.

Continue reading

Posted in ArcGIS Online | Tagged , , , | Leave a comment

Implementing topology through Python scripting

Geoprocessing can be used to automate many aspects of data compilation, including implementing a geodatabase topology. In my previous post, I created a model that imports data into a file geodatabase and performs initial data cleanup processing. Now, I will use geoprocessing with Python scripting to build a topology on the imported data. Although many spatial integrity issues were resolved by running the model, a geodatabase topology can help check for and repair any remaining errors.

The dataset I am using is a feature class of parcel lot line boundaries that began as a CAD file full of topological inconsistencies, such as lines that overlapped or did not connect to other lines. Once I create the topology and am sure the lines are correct, I will build parcel polygons from the lines and introduce all the features into my production enterprise geodatabase.

Creating a topology in a script
To build topology in an automated manner, I am going to write a simple Python script, add it to a toolbox, and run it as a regular geoprocessing tool. Essentially, the script just performs the functions of the New Topology wizard, but without requiring my intervention. In fact, this script could be developed without any programming by creating a model to perform these tasks and exporting it from ModelBuilder as a Python script.

When scripting, the ArcPy site package allows Python to access and run any of the geoprocessing tools in the ArcGIS system toolboxes, including the topology tools. The Topology toolset in the Data Management toolbox contains all the tools I need to add a geodatabase topology to the line feature class. The import arcpy statement adds ArcPy to a script and is at the top of every ArcGIS Python script.

Before I start adding the tools to the script, I define variables for the paths to the feature dataset, feature class, and topology. Because I created folders to store my tools and data following the recommendations in A structure for sharing tools, I can make the script more portable by setting these paths in relation to the folder containing the script. Since the folder locations are not hard-coded to match the C: absolute path of my hard drive, the script should run on someone else’s machine regardless of the machine’s directory structure.

With the paths defined, I first use the Create Topology tool to add a topology to the feature dataset. The syntax for the tool in my script is arcpy.CreateTopology_management(featureDataset, topologyName, “”), where CreateTopology is the name of the Create Topology tool,  _management is the toolbox in which it resides, featureDataset is a variable I defined earlier representing the path to the feature dataset, and topologyName is a variable for the name of the topology. When working with topology, it is recommended to use the default cluster tolerance, which is the distance in which vertices are determined to be coincident. Since I want ArcGIS to calculate the cluster tolerance, I left the value blank as “”instead of supplying one.

Although that function creates a topology, it is currently empty and has no classes or rules in it. I can use the Add Feature Class To Topology tool to add my line feature class with the statement: arcpy.AddFeatureClassToTopology_management(topology, featureClass, “1″, “1″). If the topology contained multiple feature classes, I can set ranks so the feature class with the highest accuracy is not adjusted to match vertices in a feature class which is known to be less accurate. However, since I am using only one feature class, I leave the rank parameters as “1″.

Next, I set which topology rules to include by calling the Add Rule To Topology tool. When choosing which rules to add to a topology, there are a few rules that many editors commonly add to every topology, such as the line rule for Must Not Have Dangles. In the script, this rule is coded as arcpy.AddRuleToTopology_management(topology, “Must Not Have Dangles (Line)”, featureClass, “”, “”, “”). Because the rule only applies to one feature class that does not have subtypes and is not a rule between two feature classes or subtypes, the other parameters are left blank. I also want to make sure that the lines do not overlap or intersect themselves, so I include the Must Not Overlap and Must Not Self-Intersect rules as well. If I need to add more rules later, I can run the Add Rule to Topology tool or use the topology’s Properties dialog box in the Catalog window.

Once all the feature classes and rules have been added, my script validates the topology. The Validate Topology tool identifies features that share geometry, inserts common vertices into features that share geometry, then performs integrity checks to identify any violations of the rules that I defined for the topology. Since the topology has never been validated before, I am going to validate the entire extent of the data with the syntax, arcpy.ValidateTopology_management(topology, “Full_Extent”). However, when working in ArcMap, validating the visible extent of the map instead of the full extent limits the area to be validated and can be useful for very large datasets that take a long time to validate.

Finding and fixing topology errors
After the script runs, I add to ArcMap the resulting topology so I can inspect the results and fix any errors using the ArcMap editing tools. However, with all the previous automated QA work from my Import and Clean Lines model, the remaining manual edits are minimal in comparison to what they could have been without running it first.

The errors identified with topology are indicated by the orange-colored squares. Almost all of these are dangle errors that could not be fixed by the original model since they exceeded the tolerance value for the Extend, Trim, or Snap tools. The topology found only two Must Not Overlap errors, which I can fix by deleting one of the overlapping features. There are no violations of the Must Not Self-Intersect rule, indicating that the lines were split properly in the model. Using the editing tools on the Topology toolbar, such as the Error Inspector and Fix Topology Error tool, I can review each error to determine if the built-in topology fixes can be used or if the lines should be edited manually to resolve the topology error.

In some cases, the topology error may need to be marked as an exception, which is a valid violation of a topology rule. One of the most common examples of exceptions to the Must Not Have Dangles rule is a cul-de-sac road, which are dead ends that do not connect to other roads. However, when working with parcel lot lines, there are fewer scenarios that are valid exceptions. I do have some lines at the edges of the dataset that do not connect to other lines. I can either mark these as exceptions or choose to delete the features, depending on whether these features are supposed to connect to existing features in my enterprise database.

If an edit is made to correct a topology error, I have to validate the topology again to make sure the error no longer exists. After I perform a visual inspection and fix all the remaining topology errors, I can create new polygons representing landownership parcels using the geometry of the lines. If I attempted to create polygons from lines that do not connect to each other properly, either no polygons would be created or one large polygon would result where there should actually be two polygons. After creating the new polygons, I add the polygon feature class to the topology and check for any gaps or overlaps and make sure the parcel polygon boundaries are always coincident with the lot lines.

After implementing the topology and making edits in ArcMap, the lines and the polygons created from them meet standards for our spatial data. I can now introduce the features into the production enterprise geodatabase.

While a script tool or model may take time to set up initially, in the long run, it is quicker to automate data compilation tasks through geoprocessing whenever possible. I can run a tool as needed and re-run it later with different parameters and tolerances or apply it to other datasets. Scripts are particularly useful because they can be run at specified times as a scheduled task in Windows. For example, I could combine the tools presented in these blog entries into a Python script that imports a dataset into a geodatabase, processes it, and implements topology. If I set the script to run automatically in the evening after working hours, I am ready to start editing on clean data when I come into the office the next morning.

For more information:
The sample tools and data can be downloaded from the Editing Labs group on ArcGIS.com. An ArcInfo license in required to run the tools.

Content provided by Rhonda (Editing Team)

Posted in Analysis & Geoprocessing, Editing, Python | Tagged , , , , , , , , , , | Comments Off

Sharing MODFLOW Models on ArcGIS Online

Groundwater simulation models are mathematical models that help us understand and predict how water behaves in subsurface aquifers. Groundwater models, such as MODFLOW, are commonly used in the industry to predict different aspects of groundwater management including water availability, effects of pumping, contaminant transport, and more.

One of the challenges facing organizations is the communication of information regarding groundwater systems from professional modelers to others within the organization or to the public. Usually, visualization of groundwater models is achieved with specialized software packages. The model input and output files are a set of text or binary files that are difficult to interpret and map without specialized tools.

The workflow presented enables organizations to quickly create maps and GIS layers of MODFLOW models and to publish those on ArcGIS Online. By posting on ArcGIS Online you can share MODFLOW inputs and outputs with anyone within your organization, or share the model results with the public.

Step 1 – Use MODFLOW Analyst tools to import your model into a geodatabase and create maps of your model inputs and outputs

MODFLOW Analyst tools were used to import a MODFLOW model of the Cache valley in northern Utah into a geodatabase. After importing the model a set of map layers were prepared representing model inputs and outputs such as simulated heads, recharge, bottom elevation of layers, and starting heads.

Map of model inputs and outputs from a MODFLOW model of the Cache valley in northern Utah. The model was imported into ArcGIS using the MODFLOW Analyst import tools.

Map of model inputs and outputs from a MODFLOW model of the Cache valley in northern Utah. The model was imported into ArcGIS using the MODFLOW Analyst import tools.

 

Step 2 – Create map and layer packages and share them on ArcGIS Online

In ArcMap, Map and Layer Packages were prepared. The Map Package enables the whole map content to be packed as a single file and the Layer Package enables exporting a set of selected layers as single file. The exported layers contain the data and layer symbology.

Map and Layer Packages can be automatically uploaded to your account in ArcGIS Online. The process includes entering a description of the map/layers, selecting appropriate tags, and specifying who you want to share the packages with. In this case the packages are shared with everyone.

Adding Map and Layer Packages to ArcGIS Online.

Adding Map and Layer Packages to ArcGIS Online.

 

Once the packages are uploaded anyone can search for the data on ArcGIS Online and can open the packages in ArcGIS applications (ArcMap, ArcGlobe, ArcScene) or using the free ArcGIS Explorer viewer. The following figure shows the search results when searching for “MODFLOW” in ArcGIS Online.

Search results in ArcGIS Online when searching for MODFLOW.

Search results in ArcGIS Online when searching for MODFLOW.

 

The map and layer packages can be downloaded to your local computer or can be opened directly in ArcMap, ArcScene, and ArcGlobe.

 

Step 3 – Visualizing in ArcGIS Explorer

One of the interesting options is to open the packaged layers in ArcGIS Explorer. This allows anyone that doesn’t have ArcGIS for Desktop to visualize the results. Using ArcGIS Explorer increases the potential for sharing model information with a large number of users and clients that do not have professional GIS software.

Location of the Cache valley MODFLOW model shown in ArcGIS Explorer.

Location of the Cache valley MODFLOW model shown in ArcGIS Explorer.

In addition, ArcGIS Explorer enables you to query the data, change base maps, and add notes and drawings on top of the model data. For example, one can use the Query Builder to display simulated heads for different layers of the model.

ArcGIS Explorer Query Builder is used to display simulated heads for layer 5 of the MODFLOW model.

ArcGIS Explorer Query Builder is used to display simulated heads for layer 5 of the MODFLOW model.

 

The resulting layer from this query is a set of cells displaying only the simulated heads for layer 5. Notice, that the base map has been changed to show the world topographic map with a transparency on top of the world imagery layer. You can be creative and design your own base maps to display your data on.

View of simulated heads for layer 5 in the Cache MODFLOW model. The background base map was customized to show the world topographic map with transparency on top of the world imagery layer.

View of simulated heads for layer 5 in the Cache MODFLOW model. The background base map was customized to show the world topographic map with transparency on top of the world imagery layer.

 

If you are interested in inputs/results at specific locations you can zoom and select individual cells and view their values. The following figure shows the bottom elevation value at a selected cell in layer 5 of the model.

Bottom elevation value at a selected cell in layer 5 of the MODFLOW model.

Bottom elevation value at a selected cell in layer 5 of the MODFLOW model.

 

One of the interesting features of ArcGIS explorer is the ability to create presentations. With this feature you can capture different snapshots of your maps and add text. It is an easy way to communicate your model results. To access the Cache model presentation see the details at the end of the blog.

Presentation created in ArcGIS Explorer to show different inputs/outputs of the Cache valley MODFLOW model.

Presentation created in ArcGIS Explorer to show different inputs/outputs of the Cache valley MODFLOW model.

 

Finally, the ArcGIS Explorer project can be posted on ArcGIS Online. By simply selecting the Share command you have the option to share the map via email or to upload it to your ArcGIS Online account. Once uploaded, the ArcGIS Explorer project can be downloaded and opened by anyone with access to ArcGIS Online.

Sharing ArcGIS Explorer maps. You can automatically load the ArcGIS Explorer project to ArcGIS Online for sharing.

Sharing ArcGIS Explorer maps. You can automatically load the ArcGIS Explorer project t
o ArcGIS Online for sharing.

 

Summary

The workflow presented is an easy and cost effective way to publish and share information from groundwater simulation models with a wide range of users. Map and Layer Packages can be posted on ArcGIS online and these can be viewed in any of the ArcGIS for Desktop applications. Another option is to view the data in ArcGIS Explorer, so even users and clients that don’t have the professional GIS software can view and explore your models. With ArcGIS Explorer you also have the capability to create presentations that highlight different views of the model.

To view model described in this post you can find the files on ArcGIS Online by searching for “MODFLOW”. Or just follow this link:
http://www.arcgis.com/home/search.html?q=MODFLOW&t=content.

To view the model in ArcMap, just select to open the Map Package or Layer Package using ArcGIS Desktop.

To view the ArcGIS Explorer project:

  • Make sure to first download the Layers Package (.lpk file) and the Explorer Project (.nmf file) to the same folder on your desktop and only then open the project.
  • You also need to have ArcGIS Explorer build 1750 or later.Thanks to Gil Strassberg for providing this post.

Thanks to Gil Strassberg for providing the post. For more information contact Gil (gstrassberg@aquaveo.com). For more information on the Arc Hydro Groundwater tools visit the Aquaveo website (www.aquaveo.com/archydro-groundwater).

Aquaveo

More information on using ArcGIS Online can be found at: http://www.arcgis.com/home/ and on the dedicated blog: http://blogs.esri.com/Support/blogs/arcgisonline/

 

 

 

Posted in Hydro | Tagged , , , , , | Leave a comment

Free Webinar: ArcGIS Online for Organizations

Extend your GIS with Esri’s Hosted Cloud Services

The growing demand for accessible geographic information is a constant challenge to
GIS departments everywhere. With Esri’s new ArcGIS Online subscription,
organizations will have the ability to store, manage and host their mapping
services in Esri’s cloud and easily publish their geographic content using cloud services.

Join Esri’s Nate Bennett, senior technical engineer, and Paul Ross, ArcGIS Online product
manager, to learn how your organization can benefit.

Register now for this free webinar
12/6/2011 to learn more about:

  • Using an ArcGIS Online subscription to manage your geospatial assets
  • Providing web-accessible maps and data without the need for any additional server software
  • Customizing ArcGIS Online to meet your organization’s needs

You will also learn more about new ArcGIS Online capabilities, including hosted feature
and map services, administrative controls for provisioning user accounts and
resources, and how different clients can be used with ArcGIS Online.

Posted in ArcGIS Online, Services | Tagged , , , , , | Comments Off

Adding URL location parameters for sharing ArcGIS online web maps

By Kenneth Field, Esri Research Cartographer

URL parameters thumbnail

Once you have created a web map using ArcGIS Online, you will most likely want to share the map. This can easily be done by using a URL that links directly to your map. There are also mechanisms to share via Twitter and Facebook or use the code provided to embed a map into a blog or website. This blog entry explains how you can control how your web map opens by modifying its URL.

Continue reading

Posted in Mapping | Tagged , , , | 2 Comments

Free webinar: Share Your Maps in Seconds and Create Web Map Applications – No Programming Required

Register
now to attend this webinar on Thursday, March 31, 2011 2:00 PM – 3:00 PM EDT

Join Kelly Hutchins, product engineer at Esri, and Chelsea West, GIS program analyst at
South Dakota’s Game, Fish, and Parks Wildlife Division, to learn about these tools and resources.

In this free webinar you will learn about

  • Making a map using ArcGIS Online tools and resources
  • Quickly embedding or sharing a map in just a few steps
  • Turning your map into a web mapping application using
    templates
  • Customizing the look and feel of templates to meet your needs

You will also learn about new features that have just been released that will help you
enhance the look of your map and make it easier to tell a story or convey
information. These features offer the ability to add pop-up windows, set up
editable layers, and configure time-enabled maps.

Posted in ArcGIS Online, Services | Tagged , , , , , | 2 Comments

New map comparison template for ArcGIS Online maps

In a previous post we described the newly added application template gallery, a feature of the ArcGIS.com viewer that’s available when you share your map. A very nice new template (authored by John Grayson of Esri’s Applications Prototype Lab) was just added that enables you to compare three ArcGIS Online maps side-by-side. This comparison template has been featured at several recent conferences and at other events, and now it’s available for anyone to implement. Let’s take a closer look.

Using the ArcGIS.com viewer, you’ll find the template when you open your map or other maps shared via ArcGIS Online. Click share:

And choose Make a Web Application:

You’ll find the comparison template along with many others you can choose from:

You can choose Preview for a quick look, but download the template to implement it from your own website. After unzipping the download, take a look at the readme.html file to learn how the template is organized and how you can customize it with your own maps. It’s very simple – just edit the layout.js file (shown below) and insert IDs for three maps of your choosing.

The map ID is unique, and is found in the URL when you open any map. For example, the URL below is the link to one of the maps currently featured at the ArcGIS.com Gallery:

http://www.arcgis.com/home/webmap/viewer.html?webmap=12dccf99d82749aeb864259ee0854c7b

The unique ID appears after webmap= . Just insert the map IDs in the layout.js file as shown below:

 

They can be maps that you’ve created, or any other publicly shared ArcGIS Online map. Here’s an example that compares maps showing USA diabetes, obesity, and poverty rates:

One of the features of this template is that you can synchronize all three maps together, so they zoom and pan to the same location and scale. Just check the boxes shown below:

You can also choose the map information that you would like to display for all three maps:

And use the Identify tool to display information about features at the same location in each:

Here’s another example comparing current and recent fires from GeoMAC, social vulnerability, and daytime population:

You can also modify the source JavaScript to tweak the look and feel of the template, add your own tools, and more. The possibilities are as endless as there are ArcGIS Online maps!

Posted in ArcGIS Online, Services | Tagged , , | 6 Comments

Sharing notes as layer packages

A new feature in the latest release (build 1500) of ArcGIS Explorer is the ability to share (export) notes as layer packages.Notes have always been an easy and powerful way to add non-geographic content, such as photos, documents, movies, websites, and more to your map. Now those same notes can be shared as layer packages to use in ArcMap. Let’s take a closer look…

We’ve placed a point note in the middle of the Esri Redlands campus and added a link to the Esri website in the note popup. Here’s what the popup looks like:

 

To share this as a layer package, right-click the note in the map contents and choose Share…

You’ll be presented with a couple of choices to make. First is the format for sharing. The choices are: as an Explorer map content file (.nmc), layer package (.lpk), or KML. We’ve choosen Layer Package in this example.

Next, you’ll have a choice of how you want to share the layer package. You can share it as a file, E-mail it, or add it to ArcGIS Online. We’ve chosen File.

Layer packages require a description, and when sharing one from Explorer you’ll be automatically prompted to add one:

After completing the above steps, you’ll now have a layer package, in our case one named Esri Redlands.lpk, saved to the folder you specified.

Next we’ll start ArcMap and add the layer package we’ve just created. In ArcMap layer packages are not yet supported using Add (that’s coming in the 10.1 release) but we can drag-and-drop our layer package into the map document instead. We’ve also added the World Topographic basemap from ArcGIS Online to get our map off to a good start. After drag-and-drop, the layer package will be listed in our contents:

To display the popup window we use the HTML popup tool, which was introduced at the ArcGIS 9.3.1 release.

 

Use the HTML popup tool to click the note in ArcMap to display the popup contents – it’s just like the original Explorer note.

For more information view the sharing layer packages Explorer help topic.

Posted in Uncategorized | Tagged , , | Leave a comment

Best practices for documenting what you share

06/14/10—Sharing well adds value to your work and enables others to use what you’ve shared more easily. One way to add value to what you’ve shared is to make sure that you’ve documented your shared items well.

The best practices for sharing help topic is a great place to start. It includes tips and a discussion of what to consider.

Another way is by looking at some good examples. Let’s look at one of the featured maps currently on the map gallery. Open this link to the details for the shared item and and follow along in the discussion below about what makes a well-documented shared item.

 

Some things to think about as you share your work:

 

Name

It’s clear from the name what this map is about. No ambiguity here.

Summary

A brief and concise description of the map. This summary also appears in the hover text in the gallery, shown below.

 

This provides users an overview of your item.

A Good Thumbnail

The saying goes – you can’t judge a book by its cover. But in many ways the thumbnail is the cover to what you’ve published, and provides visitors not only an idea of what your shared item offers, but is a first indication of how good that content might be. If you see a bad thumbnail, how good will the rest of the experience be?

When you add a layer package or ArcGIS Server Web service, a thumbnail will be automatically generated. If you are adding a Web or Mobile app, it won’t. Even if the thumbnail is created automatically, you may want to improve on it. Make your own at 200px by 133px and save it as a PNG file. Then you can edit your description, and add your own thumbnail.

Description

The description provides details about what you’ve shared. The paperback version of War and Peace is not required, but a good summary of pertinent details is important. These can also include links to other resources with more information.

 

Access and Use Constraints

Let users know how they can use what you’ve shared, and what attribution may be required. You can add details about how you recommend your item should be used, its update frequency, whether it’s just a “test,” and more.

 

By keeping in mind some of these easy to implement best practices for documenting your items, you’ll make it easier for others to discover, use, and build upon what you’ve shared. 

If you have questions, please contact us in the ArcGIS

Online forums.

Posted in ArcGIS Online, Services | Tagged , | Leave a comment