Lüchow-Dannenberg







WorldCat Identities



google.charts.load('current', {packages: ['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var options = {
height: 200,
legend: { position: 'top', maxLines: 3 },
bar: { groupWidth: '75%' },
isStacked: true,
colors: ['#FF7600', '#409a3c', '#2178b5'],
vAxis:{
baselineColor: '#fff',
gridlineColor: '#fff',
textPosition: 'none'
}
};
var data = google.visualization.arrayToDataTable([
['', 'By', 'Posthumously by', 'About',
{ role: 'annotation' } ],

['1950-1951', 0, 0, 0, ''],

['1951-1952', 0, 0, 0, ''],

['1952-1953', 0, 0, 0, ''],

['1953-1954', 0, 0, 0, ''],

['1954-1955', 0, 0, 0, ''],

['1955-1956', 0, 0, 0, ''],

['1956-1957', 5, 0, 0, ''],

['1957-1958', 0, 0, 0, ''],

['1958-1959', 0, 0, 0, ''],

['1959-1960', 0, 0, 0, ''],

['1960-1961', 0, 0, 0, ''],

['1961-1962', 0, 0, 0, ''],

['1962-1963', 0, 0, 0, ''],

['1963-1964', 0, 0, 0, ''],

['1964-1965', 0, 0, 0, ''],

['1965-1966', 0, 0, 0, ''],

['1966-1967', 5, 0, 0, ''],

['1967-1968', 5, 0, 0, ''],

['1968-1969', 0, 0, 0, ''],

['1969-1970', 0, 0, 0, ''],

['1970-1971', 0, 0, 0, ''],

['1971-1972', 10, 0, 0, ''],

['1972-1973', 0, 0, 0, ''],

['1973-1974', 0, 0, 0, ''],

['1974-1975', 0, 0, 0, ''],

['1975-1976', 0, 0, 0, ''],

['1976-1977', 0, 0, 0, ''],

['1977-1978', 5, 0, 0, ''],

['1978-1979', 0, 0, 0, ''],

['1979-1980', 0, 0, 0, ''],

['1980-1981', 0, 0, 0, ''],

['1981-1982', 0, 0, 0, ''],

['1982-1983', 0, 0, 0, ''],

['1983-1984', 0, 0, 0, ''],

['1984-1985', 0, 0, 0, ''],

['1985-1986', 5, 0, 0, ''],

['1986-1987', 0, 0, 0, ''],

['1987-1988', 0, 0, 0, ''],

['1988-1989', 5, 0, 0, ''],

['1989-1990', 0, 0, 0, ''],

['1990-1991', 5, 0, 0, ''],

['1991-1992', 5, 0, 0, ''],

['1992-1993', 0, 0, 0, ''],

['1993-1994', 0, 0, 0, ''],

['1994-1995', 0, 0, 0, ''],

['1995-1996', 0, 0, 0, ''],

['1996-1997', 0, 0, 0, ''],

['1997-1998', 0, 0, 0, ''],

['1998-1999', 0, 0, 0, ''],

['1999-2000', 0, 0, 0, ''],

['2000-2001', 5, 0, 0, ''],

['2001-2002', 0, 0, 0, ''],

['2002-2003', 0, 0, 0, ''],

['2003-2004', 0, 0, 0, ''],

['2004-2005', 5, 0, 0, ''],

['2005-2006', 5, 0, 0, ''],

['2006-2007', 0, 0, 0, ''],

['2007-2008', 0, 0, 0, ''],

['2008-2009', 0, 0, 0, ''],

['2009-2010', 0, 0, 0, ''],

['2010-2011', 5, 0, 0, ''],

['2011-2012', 0, 0, 0, ''],

['2012-2013', 0, 0, 0, ''],

['2013-2014', 0, 0, 0, ''],

['2014-2015', 10, 0, 0, ''],

['2015-2016', 0, 0, 0, ''],

['2016-2017', 0, 0, 0, ''],

['2017-2018', 0, 0, 0, ''],

['2018-2019', 0, 0, 0, ''],

['2019-2020', 0, 0, 0, ''],

['2020-2021', 0, 0, 0, ''],

]);
var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
};

function bringBack(sourceKey, targetKey, oclcNum) {
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null) {
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+targetKey+"&comment="+comment;
}
}
function sendBack(sourceKey, targetKey, oclcNum) {
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null) {
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+sourceKey+"&comment="+comment;
}
}
function getElementsByClassName(classname, node) {
if(!node)
node = document.getElementsByTagName("body")[0];
var a=[];
var re=new RegExp('\b' + classname + '\b');
var els=node.getElementsByTagName("*");

for(var i=0; els.length>=i; i++)
if(re.test(els[i].className))
a.push(els[i]);
return a;
}
function turnEditEntriesOn(node) {
var entries=getElementsByClassName('editEntry', node);
if (entries) {

for (var i = 0; entries.length>=i; i++) {
entries[i].style.display="block";
}
}
document.getElementById('identitiesonSwitch').style.display='none';
document.getElementById('identitiesoffSwitch').style.display='inline';
}
function turnEditEntriesOff(node) {
var entries=getElementsByClassName('editEntry', node);
if (entries) {
for (var i = 0; entries.length>=i; i++) {
entries[i].style.display="none";
}
}
document.getElementById('identitiesonSwitch').style.display='inline';
document.getElementById('identitiesoffSwitch').style.display='none';
}



Lüchow-Dannenberg



Overview




Works: 16
works in
24
publications in
1
language and
46
library holdings




Publication Timeline

.



Most widely held works by
Lüchow-Dannenberg



Das hannoversche Wendland : Beiträge zur Beschreibung des Landkreises Lüchow-Dannenberg(
Book
)

4
editions published

between
1971
and
1985
in
German
and held by
13 WorldCat member

libraries

worldwide





Regionales Raumordnungsprogramm by
Lüchow-Dannenberg (Germany)(

)


in
German
and held by
4 WorldCat member

libraries

worldwide





Zeitenwenden, Wendezeiten : von Lüchow und Dannenberg zu Lüchow-Dannenberg ; 125 Jahre Landkreis Lüchow-Dannenberg(
Book
)

1
edition published

in
2010
in
German
and held by
4 WorldCat member

libraries

worldwide





Regionales Raumordnungsprogramm 2004 by
Lüchow-Dannenberg (Germany)(
Book
)

1
edition published

in
2004
in
German
and held by
4 WorldCat member

libraries

worldwide





Regionales Raumordnungsprogramm by
Lüchow-Dannenberg (Germany)(

)


in
German
and held by
3 WorldCat member

libraries

worldwide





Die Entwicklung der Hochwildarten im Ostteil des Kreises Lüchow-Dannenberg vor und nach der Gründung des Hochwildringes
Gartow-Lüchow 1978
by
Hermann Junack(
Book
)

1
edition published

in
2005
in
German
and held by
3 WorldCat member

libraries

worldwide





Agrarstrukturelle Vorplanung Landkreis Lüchow-Dannenberg by
Lüchow-Dannenberg (Germany)(
Book
)

1
edition published

in
1967
in
German
and held by
2 WorldCat member

libraries

worldwide





Amtsblatt der Kreisverwaltung by
Lüchow-Dannenberg (Germany)(

)


in
German
and held by
2 WorldCat member

libraries

worldwide





Nachhaltige regionale Entwicklung Dokumentation der Tagung am 16.09.1998 in Lübeln(
Book
)

1
edition published

in
2000
in
German
and held by
2 WorldCat member

libraries

worldwide





Amtsblatt für den Landkreis Lüchow-Dannenberg by
Lüchow-Dannenberg (Germany)(

)


in
German
and held by
2 WorldCat member

libraries

worldwide






Agrarstrukturelle Vorplanung Landkreis Lüchow-Dannenberg by
Lüchow-Dannenberg (Germany)(
Book
)

1
edition published

in
1966
in
German
and held by
2 WorldCat member

libraries

worldwide





Lust auf Landleben? Biosphärenregion Elbtalaue-Wendland Biosphärenreservat Niedersächsische Elbtalaue, Naturpark Elbhöhen-Wendland(
Book
)

2
editions published

in
2014
in
German
and held by
2 WorldCat member

libraries

worldwide





Landkreis Lüchow-Dannenberg by
Lüchow-Dannenberg (Germany)(
Book
)

2
editions published

between
1956
and
1991
in
German
and held by
1 WorldCat member

library

worldwide





Landkreis Lüchow-Dannenberg. Regionales Raumordnungsprogramm 1990 by
Lüchow-Dannenberg (Germany)(
Book
)

1
edition published

in
1990
in
German
and held by
1 WorldCat member

library

worldwide





Statistische Information / Landkreis Lüchow-Dannenberg Bevölkerung, Wirtschaft, Finanzen by
Lüchow-Dannenberg (Germany)(

)


in
German
and held by
1 WorldCat member

library

worldwide





Regionales Raumordnungsprogramm für den Landkreis Lüchow-Dannenberg : Entwurf 1988 by
Lüchow-Dannenberg (Germany)(
Book
)

1
edition published

in
1988
in
German
and held by
0 WorldCat member

libraries

worldwide





 

moreShow More Titles

fewerShow Fewer Titles




Audience Level














0

Audience Level


1
  Kids General Special  


Audience level:
0.93
(from
0.91
for
Regionales
... to
1.00
for
Regionales
...)





WorldCat IdentitiesRelated Identities



  • Flügge, Heinrich Editor Creator plus


  • Flügge, Heinrich plus


  • Gesellschaft für Landeskultur plus


  • Gartow plus


  • Junack, Hermann Author plus


  • Puffahrt, Otto plus


  • Lindloff, Karsten 1957- Redactor plus


  • Kreis Dannenberg plus


  • Dannenberg <Kreis> plus


  • Schubring, Friedrich W. Arranger plus





Associated Subjects


Germany--Lüchow-Dannenberg




Alternative Names


Ardal Lüchow-Dannenberg


circondario di Lüchow-Dannenberg


Circulus Lüchow-Dannenberg


Dannenberg-Lüchow


Distrikto Lüchow-Dannenberg


Distrito de Lüchow-Dannenberg


Germany


Landkreis Lüchow-Dannenbarg


Loundkring Lüchow-Dannenberg


Lüchow-Dannenberg


Lüchow-Dannenberg District


Lüchow-Dannenberg, Ger. (Kreis)


Lüchow-Dannenberg Kūn


Lüchow-Dannenbergi kreis


Okrug Lihov-Danenberg


Powiat Lüchow-Dannenberg


Subdistrict Lüchow-Dannenberg


Zemský okres Lüchow-Dannenberg


Лихов-Даненберг


Люхов-Данненберг


Округ Лихов-Даненберг


раён Люхаў-Даненберг


מחוז ליכוב-דננברג


لخو-ڈاننبرگ


لوشو-داننبرگ


ლიუხოვ-დანენბერგის რაიონი


リューヒョウ=ダンネンベルク郡


吕肖-丹嫩贝格县



Languages


German
(24)










(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-45070317-1', 'worldcat.org');
ga('send', 'pageview');


setTimeout(function(){var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//dnn506yrbagrg.cloudfront.net/pages/scripts/0018/3695.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b)}, 1);

Popular posts from this blog

Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

Nicolae Petrescu-Găină Cuprins Biografie | Opera | In memoriam | Varia | Controverse, incertitudini...