|
POST
|
Our next Esri Geodata Academy will be on April 21 in downtown Washington. The topic is an introduction to making web maps using ArcGIS Online. This hands-on, half-day training session is free of charge. Esri provides all the hardware, software, and materials used in the session. Attendees get access to the ArcGIS Online Organization for two weeks following the session. If you're in the DC area, you can find out more and register from the Esri Geodata Academy web page.
... View more
03-31-2017
12:56 PM
|
0
|
0
|
488
|
|
BLOG
|
Hi Scott, I've updated the post to remove the statement the new access model does apply not to enterprise logins. Apologies for the incorrect statement previously published. We confirmed with our teams that as long as Esri access is enabled in ArcGIS Online, organizations that deploy enterprise accounts no longer need to enable e-Learning access via My Esri.
... View more
03-10-2017
12:29 PM
|
1
|
0
|
632
|
|
BLOG
|
In recognition of their achievement, Esri-certified individuals now receive digital badges in place of the emblems that were used when the program publicly launched in 2011. Digital badges feature metadata that allow others (including prospective employers) to immediately verify Esri certification information. Badges feature a fresh, updated design that will enhance resumés, business cards, and social media profiles. If you're an Esri-certified individual, access your badges and usage guidelines by going to your certification profile page and downloading them. Digital badges are part of Esri's ongoing commitment to provide certified individuals with modern, engaging products and leading-edge functionality that supports their professional goals.
... View more
03-02-2017
02:15 PM
|
1
|
2
|
4444
|
|
POST
|
Scott, yes, all My Esri administrators with the "View training information" permission can access e-Learning and instructor-led activity reports.
... View more
02-27-2017
10:03 AM
|
0
|
0
|
1545
|
|
POST
|
Hi Omur and Scott, e-Learning (and instructor-led) activity reports are available through the My Esri site. My Esri administrators can pull those reports. Note that in an upcoming My Esri release the reporting functionality will be improved to make it easier to view the training dates for multiple individuals at once.
... View more
02-27-2017
09:36 AM
|
2
|
3
|
1545
|
|
BLOG
|
Updated June 25, 2020. This post was originally published in 2017. As of August 2016, all customers with a qualifying Esri product that is current on maintenance receive unlimited access to e-Learning on the Training site. With hundreds of e-Learning options in the Training catalog and more added each week, this benefit is pretty amazing. Perhaps more amazing, anyone at a maintenance customer organization is eligible to take advantage of e-Learning to grow their geospatial knowledge and build ArcGIS skills. There's no requirement to have a product license or named user status. When we launched this benefit, access to e-Learning was enabled when an individual's ArcGIS account (public or ArcGIS Online organizational account) was connected to their customer organization on the My Esri site. My Esri administrators will still need to connect the accounts of individuals who are not members of an ArcGIS Online organization. ArcGIS Online organization members, however, no longer need to be connected in My Esri. Instead, their e-Learning access is enabled automatically when an administrator enables Esri access for them in ArcGIS Online. If you're a member of an ArcGIS Online organization with Esri access enabled, you can visit the Training site at any time, sign in with your ArcGIS Online organizational account, and access any e-Learning option that catches your fancy. If you're signed into your ArcGIS Online organization when you arrive at the Training site, e-Learning access is seamless (no need to sign in again). If you're a My Esri administrator at a university or college, you no longer have to invite hundreds of student users to connect to your My Esri organization each semester. My Esri does offer the ability to set a time range for student access, however. If that feature is important to you, continue to connect learners in My Esri. Note: E-Learning access cannot be automatically enabled for ArcGIS Enterprise portal users. Those individuals need to be connected through My Esri.
... View more
02-24-2017
01:49 PM
|
7
|
5
|
4691
|
|
BLOG
|
Today marks the start of our February Esri Technical Certification giveaway, and the first one for this year. This giveaway runs through the 24th, which means you have 14 days to enter for a chance to win a free exam voucher (valued at $225 USD). The voucher can be used to register for any of the available Esri certification exams. As with previous giveaways, the rule is one entry per individual. If you entered one of last year's giveaways, you’ll need to enter again to be included this time. Two winners will be randomly selected and announced on March 1st. Our 10.5 exams are in development and will be released throughout the year. This giveaway is a great opportunity to advance your professional development goals if they include achieving an Esri technical certification. Good luck! Enter the giveaway now.
... View more
02-13-2017
12:35 PM
|
2
|
0
|
873
|
|
POST
|
Hi Luke, not sure if you're able to attend an instructor-led class, but Esri has one that seems tailor made for your situation. If the class below is not an option, here's a link to a filtered list of e-Learning: www.esri.com/training/Bookmark/rkQ7rv5Oe Introduction to Web Development Using ArcGIS API for JavaScript
... View more
02-09-2017
01:55 PM
|
1
|
0
|
780
|
|
BLOG
|
A previous post shared five Python code snippets to automate mapping tasks in ArcMap. This post walks you through how to accomplish those same tasks using the ArcGIS Pro Python window. In ArcGIS Pro, the mapping module is called arcpy.mp. To try the snippets below for yourself, make a copy of an ArcGIS Pro project file (APRX) and move it somewhere for testing purposes. You don’t have to be an experienced Python scripter—simply enter the code below into the Python window and check out the results. You’ll soon see how a few Python tricks can speed up map management. Each snippet below works with ArcGIS Pro 1.x, an existing project file, arcpy.mp module, and Python 3.x. Snippet 1: Check Layer Definition Queries Suppose you need to check if any of the layers in your ArcGIS Pro project have a definition query applied, and if so, view the definition queries. Opening the Layer Properties dialog box for each layer in each map is a pain. Solution: Open the Python window instead and run the code below. The name and definition query of all the layers will be “printed” (i.e., displayed in the Python window). Code Breakdown The first line of code creates a variable called aprx that references the open project using the ArcGISProject function with the CURRENT keyword. The next line of code creates a variable called maps using the listMaps method that returns a Python list of Map objects in the project. A for loop is used to iterate through each map. For each map, the listLayers method is used to create a list of the layers. Another for loop is used to iterate through the list of layers. The Layer class has many properties that can be accessed, including the name and definition query of a layer. Because not all layer types support all properties, the supports method is used to test which properties a layer supports. The last line of code prints (displays) the name of each map, the name of each layer, and each layer's definition query. Snippet 2: Fix Broken Links At some point, you have probably moved map data from one workspace to another. Have you ever seen the dreaded red exclamation marks? If the path to map layers has changed, with just a few lines of code you can quickly find the old workspace path and replace it with the new workspace path for all layers and tables in your project at once. Run the following lines of code in the Python window (be sure to update the paths to reflect your old and new workspaces). Code Breakdown The first line of code is the same as the previous example, creating the variable aprx that references the open ArcGIS Pro project. The updateConnectionProperties method is used to replace the current connection information (first parameter) with new connection information (second parameter) for all layers and tables in the project. Learn more: Updating and fixing data sources Snippet 3: Identify Layers with a Broken Data Source Speaking of those red exclamation marks, you can also use arcpy.mp to print out the layers that have broken links using the code below. Code Breakdown The first line of code creates a variable called aprx that references the open project, just like the examples above. Like the first example, the listMaps and listLayers methods are used to create a list of layers in each map in the project. The for loops are used to iterate through each layer in each of the maps, printing out the name and isBroken layer properties for each. The “\n” adds a line before the map name and creates a separation between the layers for each map. Snippet 4: Inventory Layer Data Sources If you need to know the data source for all the layers in your project, but don’t want to open the Layer Properties dialog box for each, simply run the lines of code below in the Python window to print out the names and data sources of the layers. Code Breakdown This example starts the same way as the previous snippet, creating a variable for the project (aprx), and creating lists of the maps and layers in each of the maps. In this example, you print out the name and dataSource properties for each layer in your map. The supports method is used because not all layers support the dataSource property. Snippet 5: Combine PDF Documents Maybe you’re creating a map book or maybe you have a few PDF documents you need to combine (like your expense report and receipts). You can use arcpy.mp and the PDFDocument class to manipulate PDF documents. Run the code below to combine two PDF documents. Code Breakdown The first line of code creates a variable called pdf that references an existing PDF document. The appendPages method is used to add pages from a PDF to the end of the referenced PDF. To save the changes, the saveAndClose method is used. Want to learn more? If you’d like to learn more about working with the ArcGIS Pro Python window or migrating Python scripts from ArcMap to ArcGIS Pro, check out these resources: Tutorial: Getting started with the arcpy.mp ArcGIS Help: Migrating from arcpy.mapping to ArcGIS Pro If you'd like an introduction to ArcGIS Pro, these courses are recommended: Getting Started with ArcGIS Pro ArcGIS Pro: Essential Workflows Migrating from ArcMap to ArcGIS Pro This post was contributed by Esri instructor Brittney White. Based in Washington, D.C., Brittney’s passion is helping customers learn about and apply Esri technology to their own work.
... View more
02-01-2017
09:36 AM
|
7
|
2
|
10325
|
|
POST
|
Hi Humran, here's another link you may find useful. Esri Training has put together learning plans on several GIS topics. Each plan has groups of courses and lessons to help you master the topic. These can be a really useful jumping off point to start building up your GIS body of knowledge. Best wishes for your learning journey! www.esri.com/training/Bookmark/r16xYb_Px
... View more
01-26-2017
03:44 PM
|
1
|
3
|
2602
|
|
POST
|
Hi Ben, we're doing a free, 1-hour live seminar on Survey123 for ArcGIS on December 15. You may find it helpful, and you can also ask questions during the seminar. https://www.esri.com/training/catalog/581cff21c2ca51355d6e67bc
... View more
11-22-2016
09:51 AM
|
1
|
0
|
2277
|
|
BLOG
|
Have you been meaning to try out the ArcMap Python window, but just aren’t sure how to start? Well, the five code snippets below are a great tool to familiarize yourself with the Python window and the arcpy.mapping module. Make a copy of an MXD file and move it somewhere to test out these snippets. You’ll soon see how useful a few Python tricks can be for map management tasks. Each snippet below works with ArcMap 10.x, an existing map document (MXD file), arcpy.mapping module, and Python 2.x. You don’t have to know any Python syntax to use these snippets. Simply enter the code into the Python window and check out the results. Snippet 1: Check Layer Definition Queries Suppose you need to check if any of the layers in your map document have a definition query applied, and if so, view the definition queries. Opening the Layer Properties dialog box for each layer is a pain. Solution: Open the Python window instead and run the code below. The name and definition query of all the map layers will be “printed” (i.e., displayed in the Python window). Code Breakdown The first line of code creates a variable called mxd that references the open map document using the CURRENT keyword. The ListLayers function is used to create a list of all the layers in the map document and the for loop is used to iterate through each layer in the map. The Layer class has many properties that can be accessed, including the definition query for a layer. Because not all layer types support all properties, the supports method is used to test which properties a layer supports. The last line of code prints (displays) the name of each layer and its definition query. Snippet 2: Fix Broken Links At some point, you have probably moved map data from one workspace to another. Have you ever seen the dreaded red exclamation marks? If the path to map layers has changed, with just a few lines of code you can quickly find the old workspace path and replace it with the new workspace path for all layers and tables in your map document at once. Run the following lines of code in the Python window (be sure to update the paths to reflect your old and new workspaces). Code Breakdown The first line of code is the same as the previous example, creating the variable mxd that references the open map document. The findAndReplaceWorkspacePaths method is used to search for layers that have the old workspace (first parameter) and update the workspace to the new workspace (second parameter) for all the layers and tables in the map document. The RefreshActiveView function is used to see the changes in the table of contents and on the map. Snippet 3: Identify Layers with a Broken Data Source Speaking of those red exclamation marks, you can also use arcpy.mapping to print out the layers that have broken links using the code below. Code Breakdown The first line of code creates a variable called mxd that references the open map document, just like the examples above. Like the first example, the ListLayers function creates a list of all the layers in the map document. Next, the for loop is used to iterate through each layer in the map, printing out the name and isBroken layer properties for each. Snippet 4: Inventory Layer Data Sources If you need to know the data source for all the layers in your map, but don’t want to open the Layer Properties dialog box for each, simply run the lines of code below in the Python window to print out the names and the workspace path of the layers. Code Breakdown Like all the examples above, the first line of code creates the mxd variable to reference the open map document (are you getting the hang of it?). Again, the ListLayers function creates a list of all the layers in the map document that you can iterate through with the for loop. In this example, you print out the layer properties name and workspacePath for each layer in your map. Because not all layers have a workspace path (for example, web services), the supports method is used. Snippet 5: Combine PDF Documents Maybe you’re creating a map book or maybe you have a few PDF documents you need to combine (like your expense report and receipts). You can use arcpy.mapping and the PDFDocument class to manipulate PDF documents. Run the code below to combine two PDF documents. Code Breakdown The first line of code creates a variable called pdf that references an existing PDF document. The appendPages method is used to add pages from a PDF to the end of the referenced PDF. To save the changes, the saveAndClose method is used. Want to learn more? If you’d like to learn more about working with the ArcMap Python window or creating stand-alone Python scripts, these resources are recommended: ArcGIS Help: Updating and fixing data sources with arcpy.mapping Tutorial: Getting Started with arcpy.mapping Web Course: Python Scripting for Map Automation Instructor-Led Course: Creating Python Scripts for ArcGIS This post was contributed by Esri instructor @Brittney White.
... View more
11-18-2016
09:15 AM
|
9
|
2
|
6950
|
|
POST
|
Thomas, we're aware of the kinks and are working hard to streamline the process. In the meantime, please know the email address to which an invite is sent does NOT have to be the email address associated with the account connected in My Esri. You can definitely send invites to corporate email addresses. The user who receives the email decides which Esri account to login with after clicking the token in the invite. If you want everyone to use a specific account for e-Learning access, you can add a note to the invite with instructions. An ArcGIS Online Organizational account can be connected in My Esri, but then the ArcGIS Online administrator will need to enable Esri access for that individual in ArcGIS Online (this is in addition to the user's account being connected in My Esri). If the individual is later removed from the ArcGIS Online Organization, the administrator would need to NOT disable Esri access prior to removing them...because if that happens, the individual becomes locked out of their account and we cannot transfer their training history to a new account for them. Also, only named users will have ArcGIS Online Organizational accounts...e-Learning access is available to everyone in your organization, not just named users. Hope this clears things up a bit.
... View more
09-02-2016
03:56 PM
|
0
|
0
|
280
|
|
POST
|
Sorry to hear, Thomas. I'm not aware of any major issues with the site yesterday morning, but I will say in general the site tends to like Chrome more than IE...just in case you're on IE.
... View more
09-02-2016
03:42 PM
|
1
|
0
|
1646
|
|
POST
|
Hi, the Training site is definitely wacky today and many Esri staff are troubleshooting and trying to resolve the technical issues quickly. The site is performing well for some and not at all for others. We apologize for the inconvenience, the site should stabilize soon.
... View more
08-25-2016
11:41 AM
|
2
|
0
|
1646
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-02-2023 02:56 PM | |
| 1 | 05-27-2025 01:12 PM | |
| 1 | 04-30-2025 11:59 AM | |
| 4 | 04-30-2025 07:54 AM | |
| 1 | 03-15-2019 01:00 PM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|