This is the code, and I can create a diamond shape or a sketchy curved shape, but I would like the nodes to be aligned to a circle shape.
% Author: Paul Henckel, 2015
% Inspired by: Rasmus Pank Roulund via http://www.texample.net/tikz/examples/borrowers-and-lenders/
\documentclass{minimal}
\usepackage{tikz}
\usetikzlibrary{arrows,positioning}
\tikzset{
%Define standard arrow tip
>=stealth',
%Define style for boxes
punkt/.style={
rectangle,
rounded corners,
draw=black, very thick,
text width=8em,
minimum height=2em,
text centered},
% Define arrow style
pil/.style={
->,
thick,
shorten <=2pt,
shorten >=2pt,}
}
\begin{document}
\begin{tikzpicture}[node distance=2.5cm, auto]
%nodes
\node[punkt] (1food) {1. Food and Waste Identification};
\node[punkt, above right of=1food] (8disintegration) {8. Disintegration};
% edge[pil, bend left] (1food.north east);
\node[punkt, above right of=8disintegration] (7distribution) {7. Distribution of waste};
% edge[pil, bend left] (8disintegration.north east);
\node[punkt, above left of=7distribution] (6preservation) {6. Preservation};
% edge[pil, bend left] (7distribution.north);
\node[punkt, above left of=6preservation] (5consumption) {5. Consumption};
% edge[pil, bend left] (6preservation.north);
\node[punkt, below left of=5consumption] (4preparation) {4. Preparation};
% edge[pil, bend left] (5consumption.west);
\node[punkt, below left of=4preparation] (3distribution) {3. Distribution of food};
% edge[pil, bend left] (4preparation.west);
\node[punkt, below right of=3distribution] (2production) {2. Production};
% edge[pil, bend left] (3distribution.south);
\draw[->] (1food) edge (2production); % Or use edge[bend left] to create curved lines
\draw[->] (2production) edge (3distribution);
\draw[->] (3distribution) edge (4preparation);
\draw[->] (4preparation) edge (5consumption);
\draw[->] (5consumption) edge (6preservation);
\draw[->] (6preservation) edge (7distribution);
\draw[->] (7distribution) edge (8disintegration);
\draw[->] (8disintegration) edge (1food);
\end{tikzpicture}
\end{document}




\foreach \x [count=\c] in {1. Food,2. Pro,...,8. Dis}{\node at (\c*45:5) {\x};}– Tom Bombadil Dec 19 '15 at 17:30