- published: 03 Aug 2022
- views: 1223712
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
A cemetery or graveyard is a place where the remains of deceased people are buried or otherwise interred. The word cemetery (from Greek κοιμητήριον, "sleeping place") implies that the land is specifically designated as a burial ground. The older term graveyard is often used interchangeably with cemetery, but primarily referred to a burial ground within a churchyard.
The intact or cremated remains of people may be interred in a grave, commonly referred to as burial, or in a tomb, an "above-ground grave" (resembling a sarcophagus), a mausoleum, columbarium, niche, or other edifice. In Western cultures, funeral ceremonies are often observed in cemeteries. These ceremonies or rites of passage differ according to cultural practices and religious beliefs. Modern cemeteries often include crematoria, and some grounds previously used for both, continue as crematoria as a principal use long after the interment areas have been filled.
The Oxford English Dictionary defines a cemetery as a "burial-ground generally; now esp. a large public park or ground laid out expressly for the interment of the dead, and not being the ‘yard’ of any church. (Cemetery c)" and specifies that the term "...originally applied to the Roman underground cemeteries or catacombs " Cemeteries are normally distinct from churchyards, which are typically consecrated according to one denomination and are attached directly to a single place of worship.
A cemetery is land reserved for human or animal (pet) remains.
Cemetery may also refer to:
This is a list of cemeteries in the People's Republic of China. Many others—particularly in central urban areas—were destroyed during the Cultural Revolution of the late 1960s and 1970s, which regularized the use of cremation even in the cases of religious minorities such as the Hui. Since the Opening-Up Policy began in the 1980s, mortuary sites have been reopened in more out-lying areas, run as commercial operations.
A cove is a small type of bay or coastal inlet. Coves usually have narrow, restricted entrances, are often circular or oval, and are often situated within a larger bay. Small, narrow, sheltered bays, inlets, creeks, or recesses in a coast are often considered coves. Colloquially, the term can be used to describe a sheltered bay.
Geomorphology describes coves as precipitously walled and rounded cirque-like openings as in a valley extending into or down a mountainside, or in a hollow or nook of a cliff or steep mountainside.
Coves are formed by differential erosion, which occurs when softer rocks are worn away faster than the harder rocks surrounding them. These rocks further erode to form a circular bay with a narrow entrance, called a cove.
A notable example is Lulworth Cove on the Jurassic Coast in Dorset, England. To its west, a second cove, Stair Hole, is forming.
Death Note is a 37-episode anime series based on the manga series of the same title written by Tsugumi Ohba and illustrated by Takeshi Obata. Death Note aired in Japan on the Nippon Television (NTV) network every Tuesday, from October 3, 2006, to June 26, 2007. The plot of the series primarily revolves around high school student Light Yagami, who decides to rid the world of evil with the help of a supernatural notebook titled Death Note. This book causes the death of anyone whose name is written in it and is passed on to Light by the God of Death (or Shinigami) Ryuk after he becomes bored within the Shinigami world.
A three-hour "Director's Cut" compilation TV special, titled "Death Note: Relight: Visions of a God", aired on NTV a few months after the anime concluded. Although advertised to be the "complete conclusion", the popularity of the series inspired the release of a second TV special, titled "Death Note: Relight 2: L's Successors" nearly a year later. These specials recap the first and second arcs of the anime respectively, with new scenes added to fill in any plot holes resulted from omitted footage.
Cove is a village in Argyll and Bute, Scotland.
It is on the south-west of the Rosneath peninsula, on the east shore of Loch Long.
Historically in Dunbartonshire, before the local government reorganisation in Scotland in 1975 it formed part of the small Joint Burgh of Cove and Kilcreggan. It remained in Dumbarton District until 1996 when it was transferred to Argyll and Bute with the rest of the peninsula.
In common with many villages in the area, it was home to wealthy Glasgow merchants and shipowners in the 19th and early 20th centuries. Several of the large houses have either been converted or have gone. Survivors include over a dozen houses by Alexander "Greek" Thomson: Craigrownie Castle, Glen Eden, Craig Ailey, Ferndean and Seymour Lodge, all dating from the 1850s. Of those not by Thomson, Hartfield was the summer residence of Lord Inverclyde became a YMCA hostel before its dereliction and demolition in the 1960s by Fraser Hamilton of Knockderry Farm.
Craigrownie Parish Church of Scotland serves the communities of Ardpeaton, Cove and Kilcreggan.
Tony and Amanda bring Kiwi to Mouth Cemetery in Whitehall MI. It is presumed to be VERY HAUNTED... LIKE, SUBSCRIBE, AND FOLLOW FOR MORE GREAT CONTENT! JOIN OUR DISCORD HERE! https://discord.gg/uwcgDjnjuW
The county government of Nakuru is tonight on the spot over allegations of exhuming bodies from the Nakuru South Cemetery to create space for more bodies to be buried at the grounds. A spot check at the south cemetery on Thursday afternoon revealed hollow graves, some scattered skeletons and decomposed human remains. As Maryanne Nyambura reports, the county government of Nakuru in a statement denied the exhumation allegations claiming that its mandated to do regular maintenance of the graveyard.
#shorts #mystery #explore
On November 25, 2024, Ethel Kennedy was laid to rest next to Senator Robert F. Kennedy at Arlington National Cemetery. Her extraordinary life and enduring legacy continue to guide and inspire us. Learn more about our founder and hero, Ethel Kennedy: https://rfkhro.org/3CX5url
#shorts
Mount Auburn Cemetery is a cemetery in Cambridge and Watertown, Massachusetts, United States. Mount Auburn Cemetery may also refer to: Mount Auburn Cemetery (Harvard, Illinois), United States Mount Auburn Cemetery (Baltimore, Maryland), United States Source: https://en.wikipedia.org/wiki/Mount_Auburn_Cemetery_(disambiguation) Created with WikipediaReaderReborn (c) WikipediaReader
"Graveyard" and "Burial ground" redirect here. For other uses, see Graveyard (disambiguation) and Burial Ground (disambiguation). Cemetery in China Cemetery overlooking the Danube, near Cernavodă, Romania Avenue with linden in the cemetery by Ringkøbing, Jutland, Denmark. Common Burying Ground and Island Cemetery in Newport, Rhode Island Old graveyard in Elazig, Turkey A Muslim cemetery at sunset in Marrakech, Morocco A cemetery in Kyoto, Japan Two Colonial era graves in Pemaquid, Maine Noratus cemetery, a medieval cemetery with a large number of early khachkars located in Armenia. The cemetery has the largest cluster of khachkars in the country. A cemetery or graveyard is a place where the remains of dead people are buried or otherwise interred. The word cemetery (from Greek κοιμ...
Memories of the places and faces of Mount Auburn Cemetery 1997-2020 by Media & Communications Director Jennifer Johnston. Music by Chris & Darren of Satigata. Address originally given at the 2016 Service of Commemoration on Bigelow Chapel Lawn at Mount Auburn Cemetery. May need to adjust volume as recording is low.
Friday, September 6th. ok
I'm back here almost for the first time in a year. I can hear bird songs and see blooming flowers. I'm so happy and relax.
This is one of my favorite places in Cambridge, MA. It is very quiet here in the winter season.
Visited Mt Auburn Cemetery Graveyard
👉 https://fanlink.to/nn015 Taken from "Somnus Ambulo" EP (NN015) released on Nocta Numerica. Support the label, buy on bandcamp: https://noctanumerica.bandcamp.com Also available on Clone, Juno, Deejay, Redeye etc A1 - Organismus A2 - Disambiguation - B1 - Somnus Ambulo B2 - I'm All Right https://www.noctanumericarecords.com https://www.facebook.com/noctanumerica https://soundcloud.com/nocta-numerica https://twitter.com/NoctaNumerica
Taking a quick morning walk in one of my favorite places in northern Maine. Mount Hope Cemetery is an absolutely beautiful and peaceful piece of Bangor’s history!
➨ Found MiG-19 & Abandoned Space Rocket - Shanghai Hypersonic Innovation Technology Lab - (it’s $HIT) ➨ https://youtu.be/33hgdlSIEww In this great episode of Burbex - Brin’s Urban Exploration, Brin explores one of the largest cemeteries in Hong Kong - Junk Bay Permanent Chinese Cemetery. Wandering between the tens of thousands of burial plots, he explains the structure and fengshui of the site, and also gives a background about the setup of a Chinese grave. #burbex #urbexasia #urbexchina ★ Check out Brin's new camera - Sony RX100 M7 ★ https://amzn.to/2Ze1o6c Want me to keep exploring and doing awesome urbex? Support me on my Patreon! ★ https://www.patreon.com/burbex ★ If you liked the video, don't forget to give it a big THUMBS UP, and please SUBSCRIBE for new videos every week: https...
Subscribe to our channel http://bit.ly/AJSubscribe Subscribe to our channel http://bit.ly/AJSubscribe Space in traditional burial plots in China is tight, forcing many to look to the sea as an alternative option. The country is facing a severe land shortage and is struggling to accomodate the millions of people who die every year. Officials are encouraging the maritime alternative with the Chinese government even footing the bill and giving each family $320 on top of that. Al Jazeera's Marga Ortigas reports from Hong Kong. At Al Jazeera English, we focus on people and events that affect people's lives. We bring topics to light that often go under-reported, listening to all sides of the story and giving a 'voice to the voiceless.' Reaching more than 270 million households in over 140 ...
Archaeological discovery of mummies in the Taklamakan desert of Western China dating back 4,000 years has captivated the imaginations of researchers, who were surprised to discover that they were caucasians from Europe. The answers to the mystery of who these white mummies were might be found in the later history of Xinjiang province; in the Chinese written records of blue eyed and red bearded merchants such as the Yuezhi and the Sogdians from the West and in the manuscripts written in a mysterious Indo-European language known as Tocharian. Clearly there were both Iranic and Tocharian peoples living in Western China in later times, and the Tarim mummies must have been the ancestors of some if not all of them. The inhospitable Tarim basin became a vital route for merchants, at the crossro...
Culiacan is home to the unofficial graveyard of the Sinaloa cartel, where graves can come with CCTV, air conditioning and satellite TV. Video produced by Daniel South Please subscribe HERE http://bit.ly/1rbfUog
A Metro Detroit family had to go digging for answers after they were told a Clinton Township cemetery mistreated their father’s gravesite.
Selfies with your dead relatives? This actually is a thing in some villages in Tana Toraja in Indonesia. At the Ma’nene Festival, villagers exhume the graves of their relatives and clean and dress their bodies as a form of respect. #tanatoraja #burial #rituals #afterlife ——— We set off on anOTHER LIFE to tell stories about the unknown, untold and unheard. This is our effort to "equalise humanity" — to showcase fringe cultures, remote communities and alternative lives. Join us in learning more about amazing cultures and people who invoke wonder, challenge perceived norms and sometimes even cause discomfort! SUBSCRIBE - https://youtube.com/channel/UCPwVu_golwJsJZzRXRIYvRg anOTHER LIFE features - https://youtube.com/playlist?list=PLiZiPrXgQqYrZdinL_eKceXj3mECSgfGx Sulawesi on the Slow - h...
From the tribe that dresses up their dead as if still alive to the wives who light themselves on fire to mourn for their dead husbands, here are 10 of the creepiest funeral customs from around the world! Subscribe For New Videos! http://goo.gl/UIzLeB #funeralcustoms #peoplestories #creepyfunerals #worldlist
Tombstones, graves, wreaths and mourners, are just some of the things we are used to seeing in a cemetery. However different cultures have different ways of respecting the dead and therefore not all cemeteries will be quite what you'd expect... 1. Church of Death The Church of Death or Chiesa Dei Morti in Urbania, Italy is home to 18 mummies that date back from the middle ages up to the renaissance period. what's weird about these mummies is that nobody, actually mummified them. The Mummification is thought to have occurred naturally, thanks to a type of mold present in the church which absorbed all the moisture, thus mummifying the corpses. 2. Wall of Death These hanging coffins are in Sichuan, China, and are the last remnants of the "Bo" people who were exterminated during the Ming ...
Discover these beautiful cemeteries and if you can make a space on your list of places to visit... go for it...
A cemetery or graveyard is a place where the remains of deceased people are buried or otherwise interred. The word cemetery (from Greek κοιμητήριον, "sleeping place") implies that the land is specifically designated as a burial ground. The older term graveyard is often used interchangeably with cemetery, but primarily referred to a burial ground within a churchyard.
The intact or cremated remains of people may be interred in a grave, commonly referred to as burial, or in a tomb, an "above-ground grave" (resembling a sarcophagus), a mausoleum, columbarium, niche, or other edifice. In Western cultures, funeral ceremonies are often observed in cemeteries. These ceremonies or rites of passage differ according to cultural practices and religious beliefs. Modern cemeteries often include crematoria, and some grounds previously used for both, continue as crematoria as a principal use long after the interment areas have been filled.
The Oxford English Dictionary defines a cemetery as a "burial-ground generally; now esp. a large public park or ground laid out expressly for the interment of the dead, and not being the ‘yard’ of any church. (Cemetery c)" and specifies that the term "...originally applied to the Roman underground cemeteries or catacombs " Cemeteries are normally distinct from churchyards, which are typically consecrated according to one denomination and are attached directly to a single place of worship.