WAVD

WAVD (97.1 FM) is a radio station broadcasting a classic hits format. Licensed to Ocean Pines, Maryland, United States, the station serves Ocean City, Maryland. The station is currently owned by Forever Media.

WAVD
CityOcean Pines, Maryland
Broadcast areaOcean City, Maryland
Frequency97.1 MHz (HD Radio)
Branding97.1 The Wave
SloganYour Beach Station
Programming
FormatClassic Hits
AffiliationsBroadcast Architecture
Ownership
OwnerForever Media
(FM Radio Licenses, LLC)
Sister stationsWAFL (FM), WJKI, WCHK-FM, WKTT, WXDE
History
First air date1991
Former call signsWZJO (1991-1994)
WLFX (1994-1998)
WQJZ (1998-2011)
Call sign meaningwAVe Delmarva
Technical information
Facility ID53490
ClassA
ERP4,600 watts
HAAT114 meters (374 ft)
Transmitter coordinates38°22′52.00″N 75°10′32.00″W
Links
WebcastListen Live
Website971thewave.com

WQJZ featured Jones Radio Networks' Smooth Jazz programming until that feed was discontinued on September 30, 2008, as a consequence of Jones having been purchased by Triton Media Group, which also operates the Dial Global stable of 24-hour music formats. Like other former Jones affiliates, WQJZ aired programming from the Broadcast Architecture Network's smooth/urban AC format.

On April 8, 2011 WQJZ changed their format to classic hits, branded as "97.1 The Wave". On April 19, 2011 WQJZ changed their call letters to WAVD to go with "The Wave" branding.

gollark: * specify, not design
gollark: ```rust let with_db = warp::any().map(move || pool.clone()); let static_files = warp::path("assets").and(warp::fs::dir("assets")); let view_page = warp::path!(String).and(warp::get()).and(with_db.clone()) // repeating the next bit for every route is kind of bad, see if it can be changed somehow .and_then(|title, db| async { error_to_http_response(view_page(db, title).await) }); let editor_page = warp::path!(String / "edit").and(warp::get()).and(with_db.clone()) .and_then(|title, db| async { error_to_http_response(editor_page(db, title).await) }); let save_edit = warp::path!(String / "edit").and(warp::post()).and(warp::body::form()).and(with_db) .and_then(|title, form, db| async { error_to_http_response(save_edit(db, title, form).await) }); let not_found = warp::any().map(|| warp::reply::with_status("404 Not Found", http::StatusCode::NOT_FOUND)); let main = editor_page.or(save_edit).or(view_page); let app = static_files.or(main).or(not_found);```See, this is how you SHOULD design routes: incomprehensibly.
gollark: no!
gollark: Your *routes* shouldn't be config. They're code. They're part of the application.
gollark: What? Why is that a config file?! You should be defining routes in your code.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.