Skip To Content

Use search

In this topic

Use the keyword search to find maps, layer, app, tools, files, and groups in the website. Enter keywords in the search box and choose the type of items you're looking for from the search drop-down menu, for example, Search for Apps. A list of relevant results appears. If you don't see what you want, refine your keywords and search again. For example, if you want to find a street map, you could enter street and choose Search for Maps. You would see a list of all the maps related to streets. If the list is too long, you can filter the results for a category of maps—web maps or map files. You could also search again for streets AND europe and you would then see only street maps for Europe.

By default, search results show web content only. To show ArcGIS desktop content, such as layer packages, check the box next to Show ArcGIS Desktop Content.

You can use advanced keyword searches to narrow your results by specifying how you want to search for an item. Below are descriptions for the different ways you can do this.

Fields

When performing a search for content or groups, you can either specify a field or use the default fields. For items, the default fields are title, tags, snippet, description, accessinformation, spatialreference, type, and typekeywords. For groups, the default fields are id, title, description, snippet, tags, and owner. The best match is always returned. See the tables below for descriptions of these fields.

You can search a specific field by typing the field name followed by a colon and the term you are looking for (for a term with multiple words, use double quotation marks, such as "washoe county"). If you do not use a field indicator, the default fields are searched.

Item fields

You can refine your item searches by using specific fields in your search string. These fields include the following:

Field Details

id

ID of the item; for example, id:4e770315ad9049e7950b552aa1e40869 returns the item for that ID.

owner

Owner of the item; for example, owner:esri returns all content published by Esri. Field and value are case sensitive.

uploaded

Uploaded is the date uploaded; for example, uploaded: [0000001249084800000 TO 0000001249548000000] returns all items published between August 1, 2009, 12:00 a.m., to August 6, 2009, 8:40 a.m.

title

Item title; for example, title:"Southern California" returns items with Southern California in the title.

type

Type returns the type of item and is a predefined field. For example, type:KML returns items with KML as the type and type:"Geocoding Service" returns items with Geocoding Service as the type. Use quotation marks for more precise results, especially for types that include a space.

description

Item description; for example, description:California finds all items with the term California in the description.

tags

The tag field; for example, tags:"San Francisco" returns items tagged with the term San Francisco.

snippet

Summary; for example, snippet:"natural resources" returns items with natural resources in the summary.

spatialreference

The spatial reference; for example, spatialreference:102100 returns items in the Web Mercator auxiliary sphere projection.

access

The access field; for example, access:public returns public items. This field is predefined, and the options are public, private, or shared. You will only see private or shared items that you have access to.

group

The ID of the group; for example, group:1652a410f59c4d8f98fb87b25e0a2669 returns items within the given group.

numratings

Number of ratings; for example, numratings:6 returns items with six ratings.

numcomments

Number of comments; for example, numcomments:[1 TO 3] returns items that have one to three comments.

avgrating

Average rating; for example, avgrating:3.5 returns items with 3.5 as the average rating.

Group fields

You can filter your searches on groups by using specific fields in your search string. Only public groups or groups that you have access to will be searched. These fields include the following:

Group field Details

id

Group ID; for example, id:1db70a32f5f84ea9a88f5f460f22557b returns the group for that ID.

title

Group title; for example, title:redlands returns groups with Redlands in the title.

owner

Group owner; for example, owner:esri returns groups owned by Esri.

description

Description; for example, description:"street maps" returns groups with street maps in the description field.

snippet

Summary; for example, snippet:transportation returns groups with transportation in the group summary.

tags

The tags field; for example, tags:"bike lanes" returns groups tagged with the term bike lanes.

phone

Contact information; for example, phone:jsmith33@esri.com returns groups with jsmith33@esri.com as the contact.

created

Created is the date created; for example, created:0000001247085176000 returns groups created on July 8, 2009.

access

The access level of the group. Values are private and public. Private is the default; for example, access:private returns private groups.

isinvitationonly

The isinvitationonly field returns groups that require an invitation to join. For example, isinvitationonly:false returns groups that do not require an invitation to join. This field is predefined with the options true or false.

Range searches

Range searches allow you to match on field values between the lower and upper bounds. Range queries can be inclusive or exclusive of the upper and lower bounds. Inclusive range queries are denoted by square brackets. Exclusive range queries are denoted by curly brackets.

For example, if you wanted to find all items uploaded between December 1, 2009, and December 9, 2009, use uploaded:[0000001259692864000 TO 0000001260384065000].

The uploaded field contains the date and time an item is uploaded in UNIX time. UNIX time is defined as the number of seconds that have elapsed since midnight January 1, 1970. The website stores time in milliseconds, so you need to add three zeros to the end of the UNIX time. Additionally, you need to pad six zeros on the front of the number. This is because the number is stored as a string in the database.

Range searches are not reserved for date fields. You could also use range queries with nondate fields, for example, owner:[arcgis_explorer TO esri]. This will find all items from the owners between arcgis_explorer and esri, including arcgis_explorer and esri.

Boost a term

Boosting allows you to control the relevance of an item by boosting its term. To boost a term, use the caret symbol (^) with a boost factor (a number) at the end of the term you are searching. The higher the boost factor, the more relevant the term will be. For example, if you are searching for recent fires and want fires to be more relevant, create the expression recent fires^5.

Boolean operators

Boolean operators allow terms to be combined through logic operators. The website supports AND, plus sign (+), OR, NOT, and minus sign (-) as Boolean operators. Boolean operators must be ALL CAPS.

Boolean operatorDetails

AND

The AND operator is the default conjunction. This means that if there is no Boolean operator between two terms, the AND operator is used. The AND operator performs matching where both terms exist in either the given field or the default fields. This is equivalent to an intersection using sets.

OR

The OR operator links two terms and finds a match if either of the terms exists. This is equivalent to a union using sets.

To search for an item that contains either the term recent fires or just fires, use the query "recent fires" OR fires.

+

The plus sign, or the required operator, requires that the term after the symbol exist somewhere in the given field or the default fields.

To search for items that must contain fires and may contain recent, use the query recent +fires.

NOT

The NOT operator excludes items that contain the term after NOT. This is equivalent to a difference using sets. To search for documents that contain California but not imagery, use the query California NOT Imagery. The NOT operator cannot be used with just one term.

-

The minus sign, or the prohibit operator, excludes items that contain the term after the symbol.

To search for documents that contain California but not imagery, use the query California -Imagery.

Grouping

You can create subqueries using parentheses to group clauses. This can be very useful if you want to control the Boolean logic for a query.

To search for either California or recent and fires, create the expression (California OR recent) AND fires.

You can group multiple clauses to a single field using parentheses.

To search for a title that contains both the phrase population change and the word recent, use the query title:(+"population change" +recent).

Search tips

  • When doing a field search, use a colon (:) after the field name, for example, owner:esri.
  • Use double quotation marks to surround terms with multiple words; for example, "map services" returns items with the term map services in a field, whereas map services returns items with either maps or services in a field.
  • You can build a search string by linking fields together in your search string with the AND operator, for example, owner:esri AND tags:streets.
  • Use uppercase for search operators: AND, OR, and so forth.
  • Sort your results with the available filters for most popular, highest rated, added today, and so forth.
  • In addition to searching for content through keywords, you can also use the gallery to browse featured items.
  • If you want to search for layers with a specific extent to use in a map, use the map viewer. Open a new or existing map, set the extent you want, click the Add button, and click Search for Layers.