Project

General

Profile

QueryStrings » History » Version 1

Dan Smith, 12/11/2024 08:58 AM

1 1 Dan Smith
CHIRP supports filtering the memory view according to a query string. This can be used to temporarily limit the memories being displayed to make it easier to find things.
2
3
<img src="clipboard-202412110848-ii0m9.png" width=800/>
4
5
If you type a simple string (without spaces or special characters) CHIRP will search the frequency, name, and comment fields for that string. However, if you use a specific query language, more complex filtering is possible.
6
7
|Operation |Example |Result |
8
|-----------------------------|-------------------------------|------------------------------------------------------------|
9
| Find name containing string | `name~"mountain"`             | Display memories with "mountain" in the name    |
10
| Find exact name             | `name="KK7DS"`                | Display memories with name exactly matching "KK7DS"   |
11
| Find specific frequency     | `freq=146.52`                 | Display memories with frequency of 146.52MHz           |
12
| Find range of frequencies   | `freq<144,148>`               | Display memories with frequency between 144-148MHz |
13
| Find only D-STAR memories   | `mode="DV"`                   | Display memories that have "DV" in the mode column |
14
| Find only airband memories  | `mode="AM" and freq<118,134>` | Display memories that are AM and between 118-134MHz |