View allAll Photos Tagged calculations,
By my calculations (I didn't actually count them all just calculations based on the number in the top row), 180 barrels of sake (donated), they're probably empty, or at least that's what they want you to think.
Using Processing.org
import processing.pdf.*;
boolean debug = false;
boolean randomized = false;
boolean randomNumberNodes = false;
boolean randomRadius = false;
// Variables for how complex a drawing
int numberBranches = 5;
int minNodes = 3; //this will always set an odd number
int maxNodes = 10; //this will always set an odd number
// Declarations
int pagePixels;
int arrayLength = 1000000;
int i;
int j;
String filename;
// randomizing limits
float randLow = .95;
float randHigh = 1.05;
float randRadiusLow = .80;
float randRadiusHigh = 1.25;
// node array variables
String branchAction;
boolean maxLevelFlag = false;
boolean maxNodeFlag = false;
boolean reuseFlag = false;
// node calculation variables
int nodes;
int parentNode;
float x;
float y;
float radius; //4 for 5 branches
float angle = 0.0;
// drawing varables
float drawMod;
PGraphics pg;
// Declare and construct objects
//---------------Branch-----------------
// Creates the array
Branch branch[] = new Branch[numberBranches] ;
//---------------Node-----------------
// Creates the array
Node node[] = new Node[arrayLength] ;
// Setup
// -----
void setup() {
size(9000, 9000, PDF, "Snowflake01.pdf");
pagePixels = numberBranches * 1800;
radius = pagePixels / 4;
filename = year()+"-"+month()+"-"+day()+" "+hour()+"-"+minute()+"-"+second()+" Snowflake.pdf";
// size(pagePixels, pagePixels);
// pg = createGraphics(pagePixels, pagePixels);
pg = createGraphics(pagePixels, pagePixels, PDF, filename);
pg.beginDraw();
smooth();
background(255,255,255,0);
pg.endDraw();
}
// Draw
void draw() {
// All of these funtions are quite extensive, read them below.
buildArray();
drawAllChildToChild();
drawChildInRing();
drawNodeOrbits();
drawParentToChild();
drawNodeEllipse();
println("DONE");
exit();
} // ************** Draw END **************
void keyPressed() {
if (key == 'q') {
exit();
}
if (key == 's') {
saveDrawing();
}
}
// KeyPressed END
void saveDrawing() {
println("Saving...");
filename = year()+"-"+month()+"-"+day()+" "+hour()+"-"+minute()+"-"+second()+"- Snowflake.pdf";
println("Saved.");
}
//-------------------
// Building the Array
//-------------------
void buildArray() {
println("Branches " + numberBranches);
//---------------Branch-----------------
// Creates the objects and assigns them to the array
for (i = 0; i < numberBranches; i++) {
branch[i] = new Branch();
}
// Sets the first node as branch[0]
branch[0].Branch(int((2*round(random(minNodes,maxNodes)/2))+1), radius); //int NodeNum; float radius;
if(debug == true){
println("Branch 0 Node #: " + branch[0].getNodeNum() );
println("Branch 0 radius: " + branch[0].getRadius() );
}
// Reset arrayLength to the first node
arrayLength = 1;
// Sets the values for the array
for (i = 1; i < numberBranches; i++) {
// designed to always produce an odd number
// branch[i].Branch(int((2*round(random(minNodes,maxNodes)/2))+1), branch[i-1].getRadius()/2); //int NodeNum; float radius;
branch[i].Branch(int((2*round(random(minNodes,maxNodes)/2))+1), branch[i-1].getRadius()/2.075); //int NodeNum; float radius;
if(debug == true){
println("Branch " + i + " Node #: " + branch[i].getNodeNum() );
println("Branch " + i + " radius: " + branch[i].getRadius() );
}
}
arrayLength = node.length;
if(debug == true){
println("arrayLength #: " + arrayLength);
}
//---------------Node-----------------
// Creates the objects and assigns them to the array
for (i = 0; i < arrayLength; i++) {
node[i] = new Node();
}
if(debug == true){
println("Node Array Length #: " + node.length);
println("");
}
// Clear out array
for (i = 0; i < arrayLength; i++) {
//int int branchPosition, int nodePosition, int parentReference, int nodeNumber, float nodeRadius, float theta, float x, float y, String action
node[i].Node(0, 0, 0, 0, 0.0, 0.0, 0.0, 0.0, "empty");
}
if (debug == true) {
println("START");
println("");
println("node, int branchPosition, int nodePosition, int parentReference, int nodeNumber, float nodeRadius, float theta, float x, float y, String action");
}
if (randomNumberNodes == false) {
// First Node
//int int branchPosition, int nodePosition, int parentReference, int nodeNumber, float nodeRadius, float theta, float x, float y, String action
node[0].Node(0, 0, 0, branch[0].getNodeNum(), radius, 0.0, pagePixels/2, pagePixels/2, "up");
} else {
// First Node
//int int branchPosition, int nodePosition, int parentReference, int nodeNumber, float nodeRadius, float theta, float x, float y, String action
node[0].Node(0, 0, 0, int((2*round(random(minNodes,maxNodes)/2))+1), radius, 0.0, pagePixels/2, pagePixels/2, "up");
}
node[0].setNodePosition(node[0].getNodeNumber());
if(debug == true){
print("0, ");
node[0].printNode();
}
// DETERMINE WHAT ACTIONS TO TAKE: add, up, down, reuse
//---------------------------------------
for (i = 1; i < arrayLength; i++) {
// set boolean conditions ...this was for legability...
// maxLevelFlag = was the last node at the highest branch level?
// maxNodeFlag = was the last node at the highest node number (the last node)?
// reuseFlag = was the last node a reuse. Or, was it a node that exists already as we move back down the tree?
if (node[i-1].getBranchPosition() == numberBranches - 1) { // If max level
maxLevelFlag = true;
} else {
maxLevelFlag = false;
}
if (node[i-1].getNodePosition() == node[node[i-1].getParentReference()].getNodeNumber() ) { // If max node from parent node
maxNodeFlag = true;
} else {
maxNodeFlag = false;
}
if (node[i-1].getAction() == "reuse") { // If reuse
reuseFlag = true;
} else {
reuseFlag = false;
}
// Set actions based on boolean conditions
if (maxLevelFlag == false && maxNodeFlag == false && reuseFlag == false) {
parentNode = i - 1;
branchAction = "up";
}
if (maxLevelFlag == false && maxNodeFlag == true && reuseFlag == false) {
parentNode = i - 1;
branchAction = "up";
}
if (maxLevelFlag == false && maxNodeFlag == true && reuseFlag == true) {
if (node[node[i-1].getParentReference()].getNodePosition() < node[node[node[i-1].getParentReference()].getParentReference()].getNodeNumber()) { // if parent is not max node
parentNode = node[node[i-1].getParentReference()].getParentReference();
branchAction = "down";
} else {
if (node[i-1].getBranchPosition() == 0) { // if back to the start
arrayLength = i - 1;
println("arrayLength = " + arrayLength);
i = node.length - 1;
branchAction = "reuse";
} else {
parentNode = node[node[i-1].getParentReference()].getParentReference();
branchAction = "reuse";
}
}
}
if (maxLevelFlag == true && maxNodeFlag == false && reuseFlag == false) {
parentNode = node[i-1].getParentReference();
branchAction = "add";
}
if (maxLevelFlag == true && maxNodeFlag == true) {
if (node[node[i-1].getParentReference()].getNodePosition() == node[node[node[i-1].getParentReference()].getParentReference()].getNodeNumber()) { // if parent is max node
parentNode = node[node[i-1].getParentReference()].getParentReference();
branchAction = "reuse";
} else {
parentNode = node[node[i-1].getParentReference()].getParentReference();
branchAction = "down";
}
}
// ACTIONS: add, up, down, reuse
//---------------------------------------
// Add node at same branch level
if (branchAction == "add") {
// Set Parent Reference.
node[i].setParentReference(parentNode);
// Keep the parent node's branch level.
node[i].setBranchPosition(node[i-1].getBranchPosition());
// Add 1 to the node position of the previous node.
node[i].setNodePosition(node[i-1].getNodePosition() + 1);
//if Adding a node, NodeNumber is zero
node[i].setNodeNumber(0);
if (randomRadius == false) {
node[i].setNodeRadius(branch[node[i].getBranchPosition()].getRadius());
} else {
node[i].setNodeRadius(random(randRadiusLow,randRadiusHigh)*branch[node[i].getBranchPosition()].getRadius());
}
// Set the angle by adding the Node's branch angle (2 PI / Number of nodes) to the previous node's angle.
if (randomized == true) {
node[i].setAngle(random(randLow,randHigh)*(node[node[i].getParentReference()].getAngle() + (node[i].getNodePosition()*(TWO_PI / node[node[i].getParentReference()].getNodeNumber() ))));
}
if (randomized == false) {
node[i].setAngle((node[node[i].getParentReference()].getAngle() + (node[i].getNodePosition()*(TWO_PI / node[node[i].getParentReference()].getNodeNumber()) )));
}
// Calculate and set the x, y position of the node
if (randomized == true) {
x = node[node[i].getParentReference()].getX() + sin(node[i].getAngle()) * random(randLow,randHigh)*node[node[i].getParentReference()].getNodeRadius();
y = node[node[i].getParentReference()].getY() + cos(node[i].getAngle()) * random(randLow,randHigh)*node[node[i].getParentReference()].getNodeRadius();
}
if (randomized == false) {
x = node[node[i].getParentReference()].getX() + sin(node[i].getAngle()) * node[node[i].getParentReference()].getNodeRadius();
y = node[node[i].getParentReference()].getY() + cos(node[i].getAngle()) * node[node[i].getParentReference()].getNodeRadius();
}
node[i].setPosition(x, y);
// Set action
node[i].setAction("add");
}
// Go up one branch level, add node to upper branch level
if (branchAction == "up") {
// Set Parent Reference.
node[i].setParentReference(parentNode);
// Go up one branch level. Add 1 to the former node's branch level.
node[i].setBranchPosition(node[i-1].getBranchPosition() + 1);
// When you go up a branch the node is always 1, the starting position.
node[i].setNodePosition(1);
//if Maximum branch level, NodeNumber is zero
if(node[i].getBranchPosition() == numberBranches - 1) {
node[i].setNodeNumber(0);
} else {
if (randomNumberNodes == false) {
node[i].setNodeNumber(branch[node[i].getBranchPosition()].getNodeNum() );
} else {
node[i].setNodeNumber(int((2*round(random(minNodes,maxNodes)/2))+1) );
}
}
if (randomRadius == false) {
node[i].setNodeRadius(branch[node[i].getBranchPosition()].getRadius());
} else {
node[i].setNodeRadius(random(randRadiusLow,randRadiusHigh)*branch[node[i].getBranchPosition()].getRadius());
}
// Set the angle by adding the Node's branch angle (2 PI / Number of nodes) to the previous node's angle.
if (randomized == true) {
node[i].setAngle(random(randLow,1.01)*(node[i-1].getAngle() + (TWO_PI / node[node[i].getParentReference()].getNodeNumber() )));
}
if (randomized == false) {
node[i].setAngle((node[i-1].getAngle() + (TWO_PI / node[node[i].getParentReference()].getNodeNumber() )));
}
// Calculate and set the x, y position of the node
if (randomized == true) {
x = node[i-1].getX() + sin(node[i].getAngle()) * random(randLow,randHigh)*node[node[i].getParentReference()].getNodeRadius();
y = node[i-1].getY() + cos(node[i].getAngle()) * random(randLow,randHigh)*node[node[i].getParentReference()].getNodeRadius();
}
if (randomized == false) {
x = node[i-1].getX() + sin(node[i].getAngle()) * node[node[i].getParentReference()].getNodeRadius();
y = node[i-1].getY() + cos(node[i].getAngle()) * node[node[i].getParentReference()].getNodeRadius();
}
node[i].setPosition(x, y);
// Set action
node[i].setAction("up");
// Set parentNode to this node
parentNode = i;
}
// Go down one branch level, add node from parent at lower branch level
if (branchAction == "down") {
// Set Parent Reference.
node[i].setParentReference(parentNode);
// Keep the parent node's branch level.
node[i].setBranchPosition(node[node[i-1].getParentReference()].getBranchPosition());
// Add 1 to the parent node's position.
node[i].setNodePosition(node[node[i-1].getParentReference()].getNodePosition() + 1);
if (randomNumberNodes == false) {
node[i].setNodeNumber(branch[node[i].getBranchPosition()].getNodeNum() );
} else {
node[i].setNodeNumber(int((2*round(random(minNodes,maxNodes)/2))+1) );
}
if (randomRadius == false) {
node[i].setNodeRadius(branch[node[i].getBranchPosition()].getRadius());
} else {
node[i].setNodeRadius(random(randRadiusLow,randRadiusHigh)*branch[node[i].getBranchPosition()].getRadius());
}
// Set the angle by adding the node's branch angle (2 PI / Number of nodes) to the parent's angle.
if (randomized == true) {
node[i].setAngle(random(.99,1.01)*(node[node[i-1].getParentReference()].getAngle() + (TWO_PI / node[node[i].getParentReference()].getNodeNumber() )));
}
if (randomized == false) {
node[i].setAngle((node[node[i-1].getParentReference()].getAngle() + (TWO_PI / node[node[i].getParentReference()].getNodeNumber() )));
}
// Calculate and set the x, y position of the node
if (randomized == true) {
x = node[parentNode].getX() + sin(node[i].getAngle()) * random(randLow,randHigh)*node[node[i].getParentReference()].getNodeRadius();
y = node[parentNode].getY() + cos(node[i].getAngle()) * random(randLow,randHigh)*node[node[i].getParentReference()].getNodeRadius();
}
if (randomized == false) {
x = node[parentNode].getX() + sin(node[i].getAngle()) * node[node[i].getParentReference()].getNodeRadius();
y = node[parentNode].getY() + cos(node[i].getAngle()) * node[node[i].getParentReference()].getNodeRadius();
}
node[i].setPosition(x, y);
// Set action
node[i].setAction("down");
}
// Go down one branch level, reuse parent at lower branch level
if (branchAction == "reuse") {
// Set Parent Reference.
node[i].setParentReference(parentNode);
// Keep the parent node's branch level.
node[i].setBranchPosition(node[node[i-1].getParentReference()].getBranchPosition());
// Keep the parent node position.
node[i].setNodePosition(node[node[i-1].getParentReference()].getNodePosition());
// Keep the parent node number.
node[i].setNodeNumber(node[node[i-1].getParentReference()].getNodeNumber());
// Keep the parent node radius.
node[i].setNodeRadius(node[node[i-1].getParentReference()].getNodeRadius());
// Keep the parent angle.
node[i].setAngle(node[node[i-1].getParentReference()].getAngle());
// Keep the parent x.
x = node[node[i-1].getParentReference()].getX();
// Keep the parent y.
y = node[node[i-1].getParentReference()].getY();
// Keep the parent postition.
node[i].setPosition(x, y);
// Set action
node[i].setAction("reuse");
// set parentNode to the reused node's parent to keep it moving down
parentNode = node[i].getParentReference();
}
if (debug == true) {
// print node information
print(i + ", ");
node[i].printNode();
}
}
// buildArray END
}
//-------------------
// Drawing Functions
//-------------------
void drawAllChildToChild() {
println("START: Draw line connecting all children together...");
// Draw line connecting all children together
for (i = 1; i < arrayLength; i++) {
for (j = 2; j < arrayLength; j++) {
if(node[i].getParentReference() == node[j].getParentReference() && i!= j) {
drawMod = numberBranches-node[i].getBranchPosition()+1;
if (randomized == true) {
stroke(random(randLow,randHigh)*round(random(100,150)),
random(randLow,randHigh)*round(random(100,150)),
random(randLow,randHigh)*round(random(100,150)),
random(randLow,randHigh)*round(random(200,255))*drawMod/numberBranches);
strokeWeight(random(.75,1.5)*drawMod*.03);
}
if (randomized == false) {
stroke(10 * drawMod/numberBranches,
200 * drawMod/numberBranches,
200 * drawMod/numberBranches,
255 * drawMod/numberBranches);
strokeWeight(drawMod*.05);
}
pg.beginDraw();
line (node[i].getX(), node[i].getY(), node[j].getX(), node[j].getY());
pg.endDraw();
}
}
}
println("END: Draw line connecting all children together.");
}
void drawChildInRing() {
println("START: Draw line connecting all children together in a ring...");
// Draw line connecting all children together in a ring
for (i = 1; i < arrayLength; i++) {
for (j = 2; j < arrayLength; j++) {
if( (node[i].getParentReference() == node[j].getParentReference() && node[i].getNodePosition() + 1 == node[j].getNodePosition())
||
(node[i].getParentReference() == node[j].getParentReference() && (node[i].getNodePosition() == 1
&& node[j].getNodePosition() == node[node[j].getParentReference()].getNodeNumber()))
)
{
drawMod = numberBranches-node[i].getBranchPosition()+1;
if (randomized == true) {
stroke(random(randLow,randHigh)*round(random(215,255))*drawMod/numberBranches,
random(randLow,randHigh)*round(random(125,150))*drawMod/numberBranches,
random(randLow,randHigh)*round(random(25,75))*drawMod/numberBranches,
random(randLow,randHigh)*round(random(200,255))*drawMod/numberBranches);
strokeWeight(random(.75,1.25)*drawMod*.0625);
}
if (randomized == false) {
stroke(250 * drawMod/numberBranches,
166 * drawMod/numberBranches,
52 * drawMod/numberBranches,
255 * drawMod/numberBranches);
strokeWeight(drawMod*.0625);
}
pg.beginDraw();
line (node[i].getX(), node[i].getY(), node[j].getX(), node[j].getY());
pg.endDraw();
}
}
}
println("END: Draw line connecting all children together in a ring.");
}
void drawParentToChild() {
println("START: Draw line connecting parent node to child node...");
// Draw line connecting parent node to child node
for (i = 1; i < arrayLength; i++) {
if(node[i].getAction() != "reuse") {
drawMod = numberBranches-node[i].getBranchPosition()+1;
if (randomized == true) {
stroke(random(randLow,randHigh)*round(random(0,50)),
random(randLow,randHigh)*round(random(0,150)),
random(randLow,randHigh)*round(random(200,255)),
random(randLow,randHigh)*round(random(200,255))*drawMod/numberBranches); //blue
strokeWeight(random(.75,1.5)*drawMod*.125);
}
if (randomized == false) {
stroke(0,
127 * drawMod/numberBranches,
195 * drawMod/numberBranches,
255 * drawMod/numberBranches); //blue
strokeWeight(drawMod*.125);
}
pg.beginDraw();
line (node[i].getX(), node[i].getY(), node[node[i].getParentReference()].getX(), node[node[i].getParentReference()].getY());
pg.endDraw();
}
}
println("END: Draw line connecting parent node to child node.");
}
void drawNodeOrbits() {
println("START: Draw ellipse at each node with radius...");
// Draw ellipse at each node
for (i = 0; i < arrayLength; i++) {
if(node[i].getAction() != "reuse") {
drawMod = (numberBranches - node[i].getBranchPosition())*1.5;
// Fill
if (randomized == true) {
fill(random(randLow,randHigh)*round(random(5,125)),
random(randLow,randHigh)*round(random(175,255)),
random(randLow,randHigh)*round(random(5,125)),
random(randLow,randHigh)*round(random(30,50))*drawMod/numberBranches); //green
}
if (randomized == false) {
fill(127 * drawMod/numberBranches,
255 * drawMod/numberBranches,
50 * drawMod/numberBranches,
40 * drawMod/numberBranches);
}
// Stroke
if (randomized == true) {
stroke(random(randLow,randHigh)*round(random(0,125)),
random(randLow,randHigh)*round(random(200,255)),
random(randLow,randHigh)*round(random(0,125)),
random(randLow,randHigh)*round(random(225,255))*drawMod/numberBranches); //green
strokeWeight(random(.75,1.5)*drawMod*.0625);
}
if (randomized == false) {
stroke(63 * drawMod/numberBranches,
127 * drawMod/numberBranches,
25 * drawMod/numberBranches,
255 * drawMod/numberBranches);
strokeWeight(drawMod*.0625);
}
pg.beginDraw();
ellipse(node[i].getX(), node[i].getY(), node[i].getNodeRadius(), node[i].getNodeRadius());
pg.endDraw();
}
}
println("END: Draw ellipse at each node with radius.");
}
void drawNodeEllipse() {
println("START: Draw ellipse at each node...");
// Draw ellipse at each node
for (i = 0; i < arrayLength; i++) {
for (j = 0; j < numberBranches; j++) {
if (node[i].getBranchPosition()==j){
if(node[i].getAction() != "reuse") {
drawMod = (numberBranches - node[i].getBranchPosition());
// Fill
if (randomized == true) {
fill(random(randLow,randHigh)*round(random(100,150))*drawMod/numberBranches,
random(randLow,randHigh)*round(random(200,255))*drawMod/numberBranches,
random(randLow,randHigh)*round(random(25,75))*drawMod/numberBranches,
random(randLow,randHigh)*round(random(200,255))*drawMod/numberBranches); //green
}
if (randomized == false) {
fill(127 * drawMod/numberBranches,
255 * drawMod/numberBranches,
50 * drawMod/numberBranches,
250 * drawMod/numberBranches);
}
// Stroke
if (randomized == true) {
stroke(random(randLow,randHigh)*round(random(0,50))*drawMod/numberBranches,
random(randLow,randHigh)*round(random(100,150))*drawMod/numberBranches,
random(randLow,randHigh)*round(random(0,50))*drawMod/numberBranches,
random(randLow,randHigh)*round(random(200,255))*drawMod/numberBranches); //green
strokeWeight(random(.75,1.5)*drawMod*.0625);
}
if (randomized == false) {
stroke(63 * drawMod/numberBranches,
127 * drawMod/numberBranches,
25 * drawMod/numberBranches,
250 * drawMod/numberBranches);
strokeWeight(drawMod*.0625);
}
pg.beginDraw();
ellipse(node[i].getX(), node[i].getY(),pow(drawMod,1.5),pow(drawMod,1.5));
pg.endDraw();
}
}
}
}
println("END: Draw ellipse at each node.");
}
// ---------------
// HERE BE CLASSES
// ---------------
public class Node{
// the first letter of a class name should be capitalized
// the class has fields
// for fields, spell the first word lowercase, capitalize the first letter of each subsequent word
// --------------------------
// these are private and you use the get Methods to return the public values
// private float radius, theta, x, y, action;
int branchPosition, nodePosition, parentReference, nodeNumber;
float theta, x, y, nodeRadius;
String action;
// the class has constructors
// --------------------------
public void Node(int startBranchPosition, int startNodePosition, int startParentReference, int startNodeNumber, float startNodeRadius, float startAngle, float startX, float startY, String startAction) {
branchPosition = startBranchPosition;
nodePosition = startNodePosition;
parentReference = startParentReference;
nodeNumber = startNodeNumber;
nodeRadius = startNodeRadius;
theta = startAngle;
x = startX;
y = startY;
action = startAction;
}
// the class has methods
// the first (or only) word in a method name should be a verb
// --------------------------
// ---------SET and GET------------
public int getBranchPosition() {
return branchPosition;
}
public void setBranchPosition(int newValue) {
branchPosition = newValue;
}
public int getNodePosition() {
return nodePosition;
}
public void setNodePosition(int newValue) {
nodePosition = newValue;
}
public int getParentReference() {
return parentReference;
}
public void setParentReference(int newValue) {
parentReference = newValue;
}
public int getNodeNumber() {
return nodeNumber;
}
public void setNodeNumber(int newValue) {
nodeNumber = newValue;
}
public float getNodeRadius() {
return nodeRadius;
}
public void setNodeRadius(float newValue) {
nodeRadius = newValue;
}
public float getAngle() {
return theta;
}
public void setAngle(float newValue) {
theta = newValue;
}
public float getX() {
return (x);
}
public float getY() {
return (y);
}
public void setPosition(float newX, float newY) {
x = newX;
y = newY;
}
public String getAction() {
return action;
}
public void setAction(String newValue) {
action = newValue;
}
public void printNode() {
println(branchPosition + ", " + nodePosition + ", " + parentReference + ", " + nodeNumber + ", " + nodeRadius + ", " + theta + ", " + x + ", " + y + ", " + action);
}
}
public class Branch{
// the first letter of a class name should be capitalized
// the class has fields
// for fields, spell the first word lowercase, capitalize the first letter of each subsequent word
// --------------------------
// these are private and you use the get Methods to return the public values
// private float radius, theta, x, y;
int NodeNum;
float radius;
// the class has constructors
// --------------------------
public void Branch(int startNodeNum, float startRadius) {
NodeNum = startNodeNum;
radius = startRadius;
}
// the class has methods
// the first (or only) word in a method name should be a verb
// --------------------------
// ---------SET and GET------------
public int getNodeNum() {
return NodeNum;
}
public void setNodeNum(int newValue) {
NodeNum = newValue;
}
public float getRadius() {
return radius;
}
public void setRadius(float newValue) {
radius = newValue;
}
}
Measuring & determining proper White Industries axle length for Elephant because internal dynamo wiring makes using a normal Shimano cartridge BB very difficult.
Ref: 0101.nccdn.net/1_5/30d/138/249/VBC_INNER_CHAIN_RING_CLEAR...
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/
--------------
Curated by Indigo, Unintended Calculations brings together a group of internationally renowned artists – Augustine Kofie (LA), Jerry Inscoe (PDX), Remi/Rough (LDN) and Scott Sueme (VAN) – for an exhibition at Becker Galleries and two collaborative murals at Moda Hotel exploring four very different approaches to abstraction. Working in a variety of mediums, these artists have evolved the letterform building blocks of their shared graffiti background, deconstructing and rebuilding them as compositions of color, line, shape and movement.
8296348544 you set up the channel without even asking me jami, and then you did what you wanted to, in 2005 and 2006. you chose murder jami, you chose
who supported you jami.. and why did you accept $$,$$$ to contain 176 at 1831 salecdo/guyaso, and let those people die.. without even asking
me, if you could could create that channel, if you contain me. you chose jami. you chose murder. who supported you?
your CIA Whore Jami Rose MURDERED all of those people, DESTROYED all of those lives, what should her punishment be?
CIA Whore and MURDERER, Jami Rose. her photo, right here :)
www.flickr.com/photos/89268704@N08/8123854555/in/photostream
JamiRoseCIAWhore
jami rose cia whore all those people that she killed all that damage that she caused
looking for who is responsible for the aurora colorado july 19 2012 theatre shooting for the dark night rises? look no further.. CIA Whore Jami Rose, right here
JamiRoseCIAWhore
jami rose cia whore all those people that she killed all that damage that she caused
1)hurricane katrina
2)bp oil spill
3)japan tsunami
and most recently, Aurora Colorado Batman Murders,
and many others in time.
raped. robed. murdered. dismembered.
never punished for her crimes
born on april 4 1980.
here you go :)
by entering in her information from date of birth here:
www.timeanddate.com/date/duration.html
you can monitor her information that is used by the world markets on a daily basis, not only that, but control for what is in numerical belief, thru out the us and the rest of the world.
on a daily basis. in forward motion time placement.
also,
www.timeanddate.com/date/durationresult.html?m1=01&d1...
(The stasis of origin should show in the above link, like what is just listed below. why not tell people? :)
From and including: Saturday, January 1, 0001 (Julian calendar)
To, but not including : Friday, April 4, 1980 (Gregorian calendar)
It is 722,910 days from the start date to the end date, but not including the end date
Or 1979 years, 3 months, 3 days excluding the end date
Note:The From date is a Julian calendar date. The current Gregorian calendar was adopted in United States where Thursday, September 3, 1752 was the first of 11 days that were skipped. This has been accounted for in this calculation. Read more about the Julian and Gregorian calendars
Alternative time units
722,910 days can be converted to one of these units:
62,459,424,000 seconds
1,040,990,400 minutes
17,349,840 hours
103,272 weeks (rounded down)
if you need a little help to her "stasis of orgin" here you go. if you're not smart enough to know what a birthday does in time, its an active measure for which you create throught your life span. there, i said it. don't like that intelligent secret? millions people living, and not knowing that. how could anyone not know? :)
and all those people she killed. never punished
thomas warn varnas will make sure that happens, won't he?
you attempted two murders on his life at 143 Rue Esplanade and Villa Du Lac,
by channeling his dreams with tenants and parking cars outside of his residence, capturing him..
how does it feel now Jami, to know the same is happening
to you :)
:)
there you go :)
Ludhiana , 26 February 2014 -
National BJP leader Advocate, Sukhminderpal Singh Grewal said that in the run-up to the Lok Sabha elections 2014 the season is on for political speculations. Talking in a press conference here today, he said that all knows of Delhi are continuing to evolve their views not based on any field reality but based on either their own assessments or what the pollsters keep indicating. He said till September 13, 2013 when the BJP announced Narendra Modi name for Prime Minister candidate-ship, the speculation was to will the Party be able to project one person Additionally, there was an argument that the issues of governance and anti-incumbency against the government will take a back seat and the elections will get polarized. The size of Modi?s rallies is unquestionably the largest I have seen in the past 25 years. Never since 1989 have we seen such enthusiasm in the Party rank and file; the only exceptions were the two elections of 1998 and 1999 when Shri Atal Bihari vajpaee was considered the most acceptable Prime Ministerial candidate in the political horizon of India. The BJP would have a high strike rate in States in the Northern, Central and Western parts of India. In states like Bihar and Karnataka located in the East and South, it would reconsolidate its gains. In some other States the BJP would be a balancer. Amongst various players in the traditionally Non-BJP states, the Modi BJP momentum could benefit any ally, even without an ally the party could pick up some stray seats. The aspirants for Government formation are many. The obvious front-runner is the BJP-led NDA. If the Congress is reduced to a double digit figure, it would be a clear loser. It cannot be the nucleus of an alliance. He said the "third Front" and the Federal front have too many claimants. There is hardly a large single claimant with presence in more than one state. Obviously, the front-runner's ability to first pass the post is significant. He said that the question now being posted is to How will the BJP led NDA cover the last mile, this is a time for theoretical calculations. He said that the "political pundits" will espouse on them. If one gets a feel of the ground reality it will become clear that these large crowds at Narendra Modi rallies are bringing a clear message, the front- runners score eventually will even be higher than what the pollsters are capturing. It is for smaller groups in several states to decide which way they want to move. There are smaller groups in several states which can marginally add to the collective vote of the BJP and allies partners.
Fuel capacity61.0 Ltr (13.4 G) Total - 1 Tanks
Sailboat Calculations
S.A./Disp.: 23.39
Bal./Disp.: 39.48
Disp./Len.: 145.23
Comfort Ratio: 20.27
Capsize Screening Formula: 1.94
S#: 4.03
Rig and Sail Particulars
I: 39.37 ft / 12.00 m
J: 11.22 ft / 3.42 m
P: 41.99 ft / 12.80 m
E: 15.42 ft / 4.70 m
S.A. Fore: 220.87 ft2 / 20.52 m2
S.A. Main: 323.74 ft2 / 30.08 m2 S.A. Total (100% Fore + Main Triangles) 544.61 ft2 / 50.60 m2
S.A./Disp. (calc.): 21.19
Est. Forestay Len.: 40.94 ft / 12.48 m
Accommodations
Water capacity91.0 Ltr (20.0 G) Total - 1 Tanks
Total # of berths: 7
No. of double berths: 2
No. of single berths: 3
Cabin(s): 3
Handbasin: 1
Heads: 1 Heads (Manual)
Cruising speed (approx)6 Knots
Max speed (approx)7 Knots
Enter a destination and CoPilot Live will calculate the route to the door in seconds. If you miss a turn it will automatically recalculate the best new route to get you to your destination and prevent you from getting lost.
8296348544 you set up the channel without even asking me jami, and then you did what you wanted to, in 2005 and 2006. you chose murder jami, you chose
who supported you jami.. and why did you accept $$,$$$ to contain 176 at 1831 salecdo/guyaso, and let those people die.. without even asking
me, if you could could create that channel, if you contain me. you chose jami. you chose murder. who supported you?
CIA Whore Jami Rose MURDERED all of those people, DESTROYED all of those lives, what should her punishment be? CIA Whore and MURDERER, Jami Rose. her photo, right here :)
www.flickr.com/photos/89268704@N08/81238 54555/in/photostrea
CIA Whore Jami Rose MURDERED all of those people, DESTROYED all of those lives, what should her punishment be? CIA Whore and MURDERER, Jami Rose. her photo, right here :) www.flickr.com/photos/89268704@N08/81238 54555/in/photostream JamiRoseCIAWhore
your CIA Whore Jami Rose MURDERED all of those people, DESTROYED all of those lives, what should her punishment be?
CIA Whore and MURDERER, Jami Rose. her photo, right here :)
www.flickr.com/photos/89268704@N08/8123854555/in/photostream
JamiRoseCIAWhore
jami rose cia whore all those people that she killed all that damage that she caused
looking for who is responsible for the aurora colorado july 19 2012 theatre shooting for the dark night rises? look no further.. CIA Whore Jami Rose, right here
JamiRoseCIAWhore
jami rose cia whore all those people that she killed all that damage that she caused
1)hurricane katrina
2)bp oil spill
3)japan tsunami
and most recently, Aurora Colorado Batman Murders,
and many others in time.
raped. robed. murdered. dismembered.
never punished for her crimes
born on april 4 1980.
here you go :)
by entering in her information from date of birth here:
www.timeanddate.com/date/duration.html
you can monitor her information that is used by the world markets on a daily basis, not only that, but control for what is in numerical belief, thru out the us and the rest of the world.
on a daily basis. in forward motion time placement.
also,
www.timeanddate.com/date/durationresult.html?m1=01&d1...
(The stasis of origin should show in the above link, like what is just listed below. why not tell people? :)
From and including: Saturday, January 1, 0001 (Julian calendar)
To, but not including : Friday, April 4, 1980 (Gregorian calendar)
It is 722,910 days from the start date to the end date, but not including the end date
Or 1979 years, 3 months, 3 days excluding the end date
Note:The From date is a Julian calendar date. The current Gregorian calendar was adopted in United States where Thursday, September 3, 1752 was the first of 11 days that were skipped. This has been accounted for in this calculation. Read more about the Julian and Gregorian calendars
Alternative time units
722,910 days can be converted to one of these units:
62,459,424,000 seconds
1,040,990,400 minutes
17,349,840 hours
103,272 weeks (rounded down)
if you need a little help to her "stasis of orgin" here you go. if you're not smart enough to know what a birthday does in time, its an active measure for which you create throught your life span. there, i said it. don't like that intelligent secret? millions people living, and not knowing that. how could anyone not know? :)
and all those people she killed. never punished
thomas warn varnas will make sure that happens, won't he?
you attempted two murders on his life at 143 Rue Esplanade and Villa Du Lac,
by channeling his dreams with tenants and parking cars outside of his residence, capturing him..
how does it feel now Jami, to know the same is happening
to you :)
:)
there you go :)
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/
I had set out on my own and lost track of time -- the calculation that the young couple with 5 year old daughter (who had given us a ride) would take twice as long as I to get back flawed. But I had wanted to get far enough along the Hetch Hetchy trail to see down the valley and perhaps to see one of two waterfalls. But I stayed too long and so ran back toward the Hetch Hetchy dam -- young family, child nowhere to be seen. But the light -- what light. So I stopped for this shot. The valley walls are 3,000 feet high and so the hike out is strenuous, but spectacular. Hiking the perimeter, the lake finally gives way to the river. On its banks, extremely well cared for hieroglyphs, well guarded by gazillions of rattle snakes. Well guarded but worth it I believe. It will be another trip though. I did see around the curve and tremendous wild flowers. I found everyone back at the car -- just got there. All was well.
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/
March 30th, 2011
So today I worked on an engineering project from 5:30-12:00. Doing calculations for 6 hours really can drive someone crazy, but it felt great to finish it up and print it off (all 22 pages).
your CIA Whore Jami Rose MURDERED all of those people, DESTROYED all of those lives, what should her punishment be?
CIA Whore and MURDERER, Jami Rose. her photo, right here :)
www.flickr.com/photos/89268704@N08/8123854555/in/photostream
JamiRoseCIAWhore
jami rose cia whore all those people that she killed all that damage that she caused
looking for who is responsible for the aurora colorado july 19 2012 theatre shooting for the dark night rises? look no further.. CIA Whore Jami Rose, right here
JamiRoseCIAWhore
jami rose cia whore all those people that she killed all that damage that she caused
1)hurricane katrina
2)bp oil spill
3)japan tsunami
and most recently, Aurora Colorado Batman Murders,
and many others in time.
raped. robed. murdered. dismembered.
never punished for her crimes
born on april 4 1980.
here you go :)
by entering in her information from date of birth here:
www.timeanddate.com/date/duration.html
you can monitor her information that is used by the world markets on a daily basis, not only that, but control for what is in numerical belief, thru out the us and the rest of the world.
on a daily basis. in forward motion time placement.
also,
www.timeanddate.com/date/durationresult.html?m1=01&d1...
(The stasis of origin should show in the above link, like what is just listed below. why not tell people? :)
From and including: Saturday, January 1, 0001 (Julian calendar)
To, but not including : Friday, April 4, 1980 (Gregorian calendar)
It is 722,910 days from the start date to the end date, but not including the end date
Or 1979 years, 3 months, 3 days excluding the end date
Note:The From date is a Julian calendar date. The current Gregorian calendar was adopted in United States where Thursday, September 3, 1752 was the first of 11 days that were skipped. This has been accounted for in this calculation. Read more about the Julian and Gregorian calendars
Alternative time units
722,910 days can be converted to one of these units:
62,459,424,000 seconds
1,040,990,400 minutes
17,349,840 hours
103,272 weeks (rounded down)
if you need a little help to her "stasis of orgin" here you go. if you're not smart enough to know what a birthday does in time, its an active measure for which you create throught your life span. there, i said it. don't like that intelligent secret? millions people living, and not knowing that. how could anyone not know? :)
and all those people she killed. never punished
thomas warn varnas will make sure that happens, won't he?
you attempted two murders on his life at 143 Rue Esplanade and Villa Du Lac,
by channeling his dreams with tenants and parking cars outside of his residence, capturing him..
how does it feel now Jami, to know the same is happening
to you :)
:)
there you go :)
8296348544 you set up the channel without even asking me jami, and then you did what you wanted to, in 2005 and 2006. you chose murder jami, you chose
who supported you jami.. and why did you accept $$,$$$ to contain 176 at 1831 salecdo/guyaso, and let those people die.. without even asking
me, if you could could create that channel, if you contain me. you chose jami. you chose murder. who supported you?
CIA Whore Jami Rose MURDERED all of those people, DESTROYED all of those lives, what should her punishment be? CIA Whore and MURDERER, Jami Rose. her photo, right here :)
www.flickr.com/photos/89268704@N08/81238 54555/in/photostrea
CIA Whore Jami Rose MURDERED all of those people, DESTROYED all of those lives, what should her punishment be? CIA Whore and MURDERER, Jami Rose. her photo, right here :) www.flickr.com/photos/89268704@N08/81238 54555/in/photostream JamiRoseCIAWhore
your CIA Whore Jami Rose MURDERED all of those people, DESTROYED all of those lives, what should her punishment be?
CIA Whore and MURDERER, Jami Rose. her photo, right here :)
www.flickr.com/photos/89268704@N08/8123854555/in/photostream
JamiRoseCIAWhore
jami rose cia whore all those people that she killed all that damage that she caused
looking for who is responsible for the aurora colorado july 19 2012 theatre shooting for the dark night rises? look no further.. CIA Whore Jami Rose, right here
JamiRoseCIAWhore
jami rose cia whore all those people that she killed all that damage that she caused
1)hurricane katrina
2)bp oil spill
3)japan tsunami
and most recently, Aurora Colorado Batman Murders,
and many others in time.
raped. robed. murdered. dismembered.
never punished for her crimes
born on april 4 1980.
here you go :)
by entering in her information from date of birth here:
www.timeanddate.com/date/duration.html
you can monitor her information that is used by the world markets on a daily basis, not only that, but control for what is in numerical belief, thru out the us and the rest of the world.
on a daily basis. in forward motion time placement.
also,
www.timeanddate.com/date/durationresult.html?m1=01&d1...
(The stasis of origin should show in the above link, like what is just listed below. why not tell people? :)
From and including: Saturday, January 1, 0001 (Julian calendar)
To, but not including : Friday, April 4, 1980 (Gregorian calendar)
It is 722,910 days from the start date to the end date, but not including the end date
Or 1979 years, 3 months, 3 days excluding the end date
Note:The From date is a Julian calendar date. The current Gregorian calendar was adopted in United States where Thursday, September 3, 1752 was the first of 11 days that were skipped. This has been accounted for in this calculation. Read more about the Julian and Gregorian calendars
Alternative time units
722,910 days can be converted to one of these units:
62,459,424,000 seconds
1,040,990,400 minutes
17,349,840 hours
103,272 weeks (rounded down)
if you need a little help to her "stasis of orgin" here you go. if you're not smart enough to know what a birthday does in time, its an active measure for which you create throught your life span. there, i said it. don't like that intelligent secret? millions people living, and not knowing that. how could anyone not know? :)
and all those people she killed. never punished
thomas warn varnas will make sure that happens, won't he?
you attempted two murders on his life at 143 Rue Esplanade and Villa Du Lac,
by channeling his dreams with tenants and parking cars outside of his residence, capturing him..
how does it feel now Jami, to know the same is happening
to you :)
:)
there you go :)
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/
8296348544 you set up the channel without even asking me jami, and then you did what you wanted to, in 2005 and 2006. you chose murder jami, you chose
who supported you jami.. and why did you accept $$,$$$ to contain 176 at 1831 salecdo/guyaso, and let those people die.. without even asking
me, if you could could create that channel, if you contain me. you chose jami. you chose murder. who supported you?
CIA Whore Jami Rose MURDERED all of those people, DESTROYED all of those lives, what should her punishment be? CIA Whore and MURDERER, Jami Rose. her photo, right here :)
www.flickr.com/photos/89268704@N08/81238 54555/in/photostrea
CIA Whore Jami Rose MURDERED all of those people, DESTROYED all of those lives, what should her punishment be? CIA Whore and MURDERER, Jami Rose. her photo, right here :) www.flickr.com/photos/89268704@N08/81238 54555/in/photostream JamiRoseCIAWhore
your CIA Whore Jami Rose MURDERED all of those people, DESTROYED all of those lives, what should her punishment be?
CIA Whore and MURDERER, Jami Rose. her photo, right here :)
www.flickr.com/photos/89268704@N08/8123854555/in/photostream
JamiRoseCIAWhore
jami rose cia whore all those people that she killed all that damage that she caused
looking for who is responsible for the aurora colorado july 19 2012 theatre shooting for the dark night rises? look no further.. CIA Whore Jami Rose, right here
JamiRoseCIAWhore
jami rose cia whore all those people that she killed all that damage that she caused
1)hurricane katrina
2)bp oil spill
3)japan tsunami
and most recently, Aurora Colorado Batman Murders,
and many others in time.
raped. robed. murdered. dismembered.
never punished for her crimes
born on april 4 1980.
here you go :)
by entering in her information from date of birth here:
www.timeanddate.com/date/duration.html
you can monitor her information that is used by the world markets on a daily basis, not only that, but control for what is in numerical belief, thru out the us and the rest of the world.
on a daily basis. in forward motion time placement.
also,
www.timeanddate.com/date/durationresult.html?m1=01&d1...
(The stasis of origin should show in the above link, like what is just listed below. why not tell people? :)
From and including: Saturday, January 1, 0001 (Julian calendar)
To, but not including : Friday, April 4, 1980 (Gregorian calendar)
It is 722,910 days from the start date to the end date, but not including the end date
Or 1979 years, 3 months, 3 days excluding the end date
Note:The From date is a Julian calendar date. The current Gregorian calendar was adopted in United States where Thursday, September 3, 1752 was the first of 11 days that were skipped. This has been accounted for in this calculation. Read more about the Julian and Gregorian calendars
Alternative time units
722,910 days can be converted to one of these units:
62,459,424,000 seconds
1,040,990,400 minutes
17,349,840 hours
103,272 weeks (rounded down)
if you need a little help to her "stasis of orgin" here you go. if you're not smart enough to know what a birthday does in time, its an active measure for which you create throught your life span. there, i said it. don't like that intelligent secret? millions people living, and not knowing that. how could anyone not know? :)
and all those people she killed. never punished
thomas warn varnas will make sure that happens, won't he?
you attempted two murders on his life at 143 Rue Esplanade and Villa Du Lac,
by channeling his dreams with tenants and parking cars outside of his residence, capturing him..
how does it feel now Jami, to know the same is happening
to you :)
:)
there you go :)
--------------
Curated by Indigo, Unintended Calculations brings together a group of internationally renowned artists – Augustine Kofie (LA), Jerry Inscoe (PDX), Remi/Rough (LDN) and Scott Sueme (VAN) – for an exhibition at Becker Galleries and two collaborative murals at Moda Hotel exploring four very different approaches to abstraction. Working in a variety of mediums, these artists have evolved the letterform building blocks of their shared graffiti background, deconstructing and rebuilding them as compositions of color, line, shape and movement.
8296348544 you set up the channel without even asking me jami, and then you did what you wanted to, in 2005 and 2006. you chose murder jami, you chose
who supported you jami.. and why did you accept $$,$$$ to contain 176 at 1831 salecdo/guyaso, and let those people die.. without even asking
me, if you could could create that channel, if you contain me. you chose jami. you chose murder. who supported you?
your CIA Whore Jami Rose MURDERED all of those people, DESTROYED all of those lives, what should her punishment be?
CIA Whore and MURDERER, Jami Rose. her photo, right here :)
www.flickr.com/photos/89268704@N08/8123854555/in/photostream
JamiRoseCIAWhore
jami rose cia whore all those people that she killed all that damage that she caused
looking for who is responsible for the aurora colorado july 19 2012 theatre shooting for the dark night rises? look no further.. CIA Whore Jami Rose, right here
JamiRoseCIAWhore
jami rose cia whore all those people that she killed all that damage that she caused
1)hurricane katrina
2)bp oil spill
3)japan tsunami
and most recently, Aurora Colorado Batman Murders,
and many others in time.
raped. robed. murdered. dismembered.
never punished for her crimes
born on april 4 1980.
here you go :)
by entering in her information from date of birth here:
www.timeanddate.com/date/duration.html
you can monitor her information that is used by the world markets on a daily basis, not only that, but control for what is in numerical belief, thru out the us and the rest of the world.
on a daily basis. in forward motion time placement.
also,
www.timeanddate.com/date/durationresult.html?m1=01&d1...
(The stasis of origin should show in the above link, like what is just listed below. why not tell people? :)
From and including: Saturday, January 1, 0001 (Julian calendar)
To, but not including : Friday, April 4, 1980 (Gregorian calendar)
It is 722,910 days from the start date to the end date, but not including the end date
Or 1979 years, 3 months, 3 days excluding the end date
Note:The From date is a Julian calendar date. The current Gregorian calendar was adopted in United States where Thursday, September 3, 1752 was the first of 11 days that were skipped. This has been accounted for in this calculation. Read more about the Julian and Gregorian calendars
Alternative time units
722,910 days can be converted to one of these units:
62,459,424,000 seconds
1,040,990,400 minutes
17,349,840 hours
103,272 weeks (rounded down)
if you need a little help to her "stasis of orgin" here you go. if you're not smart enough to know what a birthday does in time, its an active measure for which you create throught your life span. there, i said it. don't like that intelligent secret? millions people living, and not knowing that. how could anyone not know? :)
and all those people she killed. never punished
thomas warn varnas will make sure that happens, won't he?
you attempted two murders on his life at 143 Rue Esplanade and Villa Du Lac,
by channeling his dreams with tenants and parking cars outside of his residence, capturing him..
how does it feel now Jami, to know the same is happening
to you :)
:)
there you go :)
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/
I chose this image, or chose to draw it because it gave me a really good visual about how small an atom is. Just by reading 'one ten-millionth of a millimeter' doesn't really help me understand just how small an atom is besides the fact that it's really small. Also, by small, it's saying that an atom needs to be enlarged to a size so many times more bigger than itself in order for the naked eye to see, and then, even barely.
-How much do you have to enlarge the biggest atom in order to see it?
-What would the weight of an atom be compared to the weight of the Empire State Building, and would it be an accurate comparison?
--------------
Curated by Indigo, Unintended Calculations brings together a group of internationally renowned artists – Augustine Kofie (LA), Jerry Inscoe (PDX), Remi/Rough (LDN) and Scott Sueme (VAN) – for an exhibition at Becker Galleries and two collaborative murals at Moda Hotel exploring four very different approaches to abstraction. Working in a variety of mediums, these artists have evolved the letterform building blocks of their shared graffiti background, deconstructing and rebuilding them as compositions of color, line, shape and movement.
I'd like to do some calculations
in the hopes that I'll come to some realizations
My mind is not what it used to be
that certainly isn't news to me
But I want to know how my life was spent
now that I know that I'm near the end
So I add subtract multiply and divide
to try and figure out what I did with my life
CHORUS
I spent twenty-seven years in my bed
And there's not much that I would've preferred to do instead
I spent two years chewing and six months wooing
And, I'm sure you're curious, almost three years pooing
I spent twenty five years working for a guy
that I wanted to kill when I didn't want to die
But I spent fifty seven years loving you my friend
So I guess it all makes sense at the end.
I spent nearly a full year masturbating
Second only to the year we spent copulating
I know you're not a fan of this vulgarity
But completeness is important for full clarity
I spent more than seven years watching television
and how could I not regret that decision
But I don't think that I'll ever know how much time
I did or didn't spend lookin' into your eyes.
I spent twenty-seven years in my bed
And there's not much that I would've preferred to do instead
I spent two years chewing and six months wooing
And, I'm sure you're curious, almost three years pooing
I spent twenty five years working for a guy
that I wanted to kill when I didn't want to die
But I spent fifty seven years loving you my friend
So I guess it all makes sense at the end.
I've never known any way but numbers and sums
to understand what we are and what we have become
but like numbers are perfect, that's how this has been for me
and I hope that I still give you everything you need
80 years alive and four eating food
five reading books and 57 with you
two eyes one nose one smile one life
it somehow isn't ever quite enough time.
I spent twenty-seven years in my bed
And there's not much that I would've preferred to do instead
I spent two years chewing and six months wooing
And, I'm sure you're curious, almost three years pooing
I spent twenty five years working for a guy
that I wanted to kill when I didn't want to die
But I spent fifty seven years loving you my friend
So I guess it all makes sense at the end
Oh I guess it all makes sense at the end
Yeah I guess it all makes sense at the end
-Hank Green (: [His version, at least. There's a few]
Taken on the trip to Portland.
Before ASDFJKL; CAMERA BROKE
"According to Henry's calculations, £6.3tn of assets is owned by only 92,000 people, or 0.001% of the world's population – a tiny class of the mega-rich who have more in common with each other than those at the bottom of the income scale in their own societies."
www.guardian.co.uk/business/2012/jul/21/global-elite-tax-...
f/11, Focal Length 18mm
calculation done on DOFmaster.com
Focus: 3 meters
Near Limit: 1.01 meters
Far Limit: Infinity
Hyperfocal Distance: 1.53 meters
Circle Of Confusion: 0.019 mm
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/
I recently had to replace a tatty hedge with a tidy fence. I wanted to build a fence that created a visual barrier but allowed the wind through. To do this I made a structure of 'Yorkshire Board' but put the boards at an angle to make best use of the timber.
To do that I created a spread sheet that determined the length of each board and how many I would get from each plank to give me a fence 42 inches high. The resulting columns of figures suggested the I should include the boards at 20 degrees from the vertical and by doing so I would loose a couple of inches from each 15 foot length.
The columns above are :-
A - Degrees
B - Degrees converted to Radians
D & E - Sin & Cosine (of the angle)
G - The length of each board (42 / COS angle + 6 * SIN angle)
I - No of board (Plank length / board length)
#25 Column/s for 119 pictures in 2019
Here is Part B. My calculations of our own trash. I stood on the scale and weighed it so I would be able to compare to the national average. I don't see that 4.5 pounds per person is the amount per year. That does not seem right. I realize that we don't use any glass and really no aluminum. The paper is due to cat litter boxes and boxes from packages in the mail. The plastic is basically what we buy food in for the most part. What is more astounding. I have never been much into the recycle thing. I do it when I remember. But for the whole week I kept this trash separated from what is in our normal trash can to take out to the curb and I found the trash can was virtually empty. I had the stuff I could do compost with. That was it and if I had a big piece of land I could be the compost queen. So in the end we would have hardly any real trash that could not be recycled. This is an eye opener.
The Tympanum over the south doorway depicts a serpent-like dragon beneath arches with beakheads and chevrons. An article published in 1954 suggests it is 8th century and relates its symbolic meaning to the calculation of the incidence of Easter Day. In 702AD Austerfield was the location of a Synod, where a dispute between the King of Northumbria and Wilfrid, Bishop of Ripon was resolved. The Synod also discussed and agreed was the way that Easter is calculated.
----------------------------------------------------------------------------------------------------
Church of St Helena, High Street, Austerfield, South Yorkshire
Grade II* Listed
List Entry Number: 1151575
National Grid Reference: SK 66166 94691
SK59SE AUSTERFIELD HIGH STREET (east side) 10/5 Church of St. Helena 5th June 1968 - II Church. C11, C12, C13 and C14; restored and extended 1897-8 by C. Hodgson Fowler. Rubble and coursed, dressed magnesian limestone; red tile and graduated slate roofs. 3-bay nave with west bellcote and north aisle, narrower 1-bay chancel with lean-to north vestry. Nave: chamfered plinth, west angle buttress, quoins to east. Added porch between bays 1 and 2 has ashlar side walls and wooden posts to an exposed arch-braced gable truss; scalloped bargeboard. Unrestored C12 south door has 2 orders of shafts with carved capitals and tympanum with carved dragon beneath arches with beak- heads and chevrons; hoodmould cut back. Bay 1 has a restored square-headed window of 2 ogee lights; similar, but taller, window to bay 2. Bay 3 has quoins on left of a C14, square-headed window of 3 ogee lights. Ashlar gable copings; ashlar bellcote and east cross. West end has central pilaster buttress between 2 quoined lancet windows (that on left C19); rebuilt upper gable with bellcote having string course beneath 2 pointed-arched openings and coped gable with cross. North aisle (of 1897) has reset C12 north door with plain round arch; to west a reset C14 window of 2 ogee lights beneath square head; to east are C19 3-light windows in same style; ashlar flue on left. Chancel: lower; C14 3-light south window with cusping and square- headed hollow-chamfered surround. East wall is of coursed dressed stone and has reset C14 3-light window with intersecting tracery in pointed, double- chamfered surround; east gable copings. Vestry, of 1897-8, has 2-light mullioned window to north and 1-light east window above basement door. Interior: well preserved C12 north arcade (encased in walling until re-exposure in 1897); westernmost bay has semi-octagonal west respond with crocketed capital and half-round east respond with waterleaf capital; double chamfered arch. Wallstone pier between bays 1 and 2, the other 2 bays having cylindrical pier and half-round responds with foliate capitals to plain round arches; central pier has sheila-na-gig facing south west. Chancel: C12 chancel arch with half-round inner responds and shafts to west, cushion capitals with masks, plain imposts, half-round mould continued around soffit, roll-moulding and incised zig-zag. Pointed-arched piscina recess with square bowl; to right of chancel south window is the chamfered right jamb of an earlier window. Font: tapered cylindrical bowl on C19 pedestal. Jacobean altar rail with turned balusters, carved top rail and newels with acorn finials. Late C19 stained glass by Kempe. Said to have been built by John de Builli c1080. North aisle built 1897 in memory of William Bradford, baptised here in 19 March 1589; Bradford sailed in the Mayflower in 1620 and became Governor of Plymouth Colony in 1621. Notes on restoration in The Doncaster Review, July 1896, pp 78-79.
Listing NGR: SK6616694691
historicengland.org.uk/listing/the-list/list-entry/1151575
----------------------------------------------------------------------------------------
St Helena's Church was built in 1080 by John de Builli, using stone from the Roche Abbey quarries. Over the centuries the church has seen new sections built and renovations completed to make it the church you see today.
The Tympanum over the south doorway depicts a serpent-like dragon. An article published in 1954 suggests it is 8th century and relates its symbolic meaning to the calculation of the incidence of Easter Day. In 702AD Austerfield was the location of a Synod, where a dispute between the King of Northumbria and Wilfrid, Bishop of Ripon was resolved. The Synod also discussed and agreed was the way that Easter is calculated.
Austerfield is perhaps best known by its connections with the Pilgrim Fathers. William Bradford was born in Austerfield and was brought to be baptised on 19th March 1589. In front of you when you enter the church is the stone baptismal font where Bradford was baptized and a beautiful stained glass window on the north side of the church commemorates the 400th anniversary of this event. William Bradford went on to become Governor of Plymouth Colony in Massachusetts and was the second signer and primary architect of the Mayflower Compact in Provincetown Harbor.
The church has several windows by one of England's greatest stained glass artists, Charles Earner Kempe. In the nave is a Sheila-na-gig of which there are only 16 recorded in England! This is a quasi-erotic stone carving of a female figure sometimes found in Norman churches. This carving had been blocked into a wall in the 14th century, and was only rediscovered in 1898 during restoration work.
southwellchurches.history.nottingham.ac.uk/austerfield/hi...
See also:-
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/
Botswana, Moremi National Park, Moremi Game Reserve, Private Reserve, Farm, Chobe National park, Chobe Game Reserve, Zambia, Zambezi River, Livingstone, Zimbabwe, Kenya, Tanzania, Wildlife Conservation Project, Maramba River Lodge, South Africa, Krugger National Park, Okavango Delta, Kalahari region, Kalahari Desert.
Rhinoceros /raɪˈnɒsərəs/, often abbreviated as rhino, is a group of five extant species of knee-less, odd-toed ungulates in the family Rhinocerotidae. Two of these species are native to Africa and three to southern Asia.
Members of the rhinoceros family are characterized by their large size (they are some of the largest remaining megafauna, with all of the species able to reach one tonne or more in weight); as well as by a herbivorous diet; a thick protective skin, 1.5–5 cm thick, formed from layers of collagen positioned in a lattice structure; relatively small brains for mammals this size (400–600 g); and a large horn. They generally eat leafy material, although their ability to ferment food in their hindgut allows them to subsist on more fibrous plant matter, if necessary. Unlike other perissodactyls, the two African species of rhinoceros lack teeth at the front of their mouths, relying instead on their powerful premolar and molar teeth to grind up plant food.[1]
Rhinoceros are killed by humans for their horns, which are bought and sold on the black market, and which are used by some cultures for ornamental or (pseudo-scientific) medicinal purposes. The horns are made of keratin, the same type of protein that makes up hair and fingernails.[2] Both African species and the Sumatran rhinoceros have two horns, while the Indian and Javan rhinoceros have a single horn.
The IUCN Red List identifies three of the species as critically endangered.
The word rhinoceros is derived through Latin from the Ancient Greek: ῥῑνόκερως, which is composed of ῥῑνο- (rhino-, "nose") and κέρας (keras, "horn"). The plural in English is rhinoceros or rhinoceroses. The collective noun for a group of rhinoceroses is crash or herd.
The five living species fall into three categories. The two African species, the white rhinoceros and the black rhinoceros, belong to the Dicerotini group, which originated in the middle Miocene, about 14.2 million years ago. The species diverged during the early Pliocene (about 5 million years ago). The main difference between black and white rhinos is the shape of their mouths - white rhinos have broad flat lips for grazing, whereas black rhinos have long pointed lips for eating foliage.
There are two living Rhinocerotini species, the Indian rhinoceros and the Javan rhinoceros, which diverged from one another about 10 million years ago. The Sumatran rhinoceros is the only surviving representative of the most primitive group, the Dicerorhinini, which emerged in the Miocene (about 20 million years ago).[3] The extinct woolly rhinoceros of northern Europe and Asia was also a member of this tribe.
A subspecific hybrid white rhino (Ceratotherium s. simum × C. s. cottoni) was bred at the Dvůr Králové Zoo (Zoological Garden Dvur Kralove nad Labem) in the Czech Republic in 1977. Interspecific hybridisation of black and white rhinoceros has also been confirmed.[4]
While the black rhinoceros has 84 chromosomes (diploid number, 2N, per cell), all other rhinoceros species have 82 chromosomes.
White rhinoceros
Main article: White rhinoceros
There are two subspecies of white rhino: the southern white rhinoceros (Ceratotherium simum simum) and the northern white rhinoceros (Ceratotherium simum cottoni). In 2007, the southern subspecies had a wild population of 17,480 (IUCN2008) - 16,266 of which were in South Africa - making them the most abundant rhino subspecies in the world. However, the northern subspecies was critically endangered, with as few as four individuals in the wild; the possibility of complete extinction in the wild having been noted since June 2008.[5] Six are known to be held in captivity, two of which reside in a zoo in San Diego. Four born in a zoo in the Czech Republic were transferred to a wildlife refuge in Kenya in December 2009, in an effort to have the animals reproduce and save the subspecies.[6]
There is no conclusive explanation of the name white rhinoceros. A popular theory that "white" is a distortion of either the Afrikaans word weid or the Dutch word wijd (or its other possible spellings whyde, weit, etc.,) meaning wide and referring to the rhino's square lips is not supported by linguistic studies.[7][8]
The white rhino has an immense body and large head, a short neck and broad chest. This rhino can exceed 3,500 kg (7,700 lb), have a head-and-body length of 3.5–4.6 m (11–15 ft) and a shoulder height of 1.8–2 m (5.9–6.6 ft). The record-sized white rhinoceros was about 4,500 kg (10,000 lb).[9] On its snout it has two horns. The front horn is larger than the other horn and averages 90 cm (35 in) in length and can reach 150 cm (59 in). The white rhinoceros also has a prominent muscular hump that supports its relatively large head. The colour of this animal can range from yellowish brown to slate grey. Most of its body hair is found on the ear fringes and tail bristles, with the rest distributed rather sparsely over the rest of the body. White rhinos have the distinctive flat broad mouth that is used for grazing.
Black rhinoceros
Main article: Black rhinoceros
The name black rhinoceros (Diceros bicornis) was chosen to distinguish this species from the white rhinoceros (Ceratotherium simum). This can be confusing, as the two species are not really distinguishable by color. There are four subspecies of black rhino: South-central (Diceros bicornis minor), the most numerous, which once ranged from central Tanzania south through Zambia, Zimbabwe and Mozambique to northern and eastern South Africa; South-western (Diceros bicornis bicornis) which are better adapted to the arid and semi-arid savannas of Namibia, southern Angola, western Botswana and western South Africa; East African (Diceros bicornis michaeli), primarily in Tanzania; and West African (Diceros bicornis longipes) which was declared extinct in November 2011.[10] The native Tswanan name Keitloa is used to describe a South African variation of the black rhino in which the posterior horn is equal to or longer than the anterior horn.[11]
An adult black rhinoceros stands 150–175 cm (59–69 in) high at the shoulder and is 3.5–3.9 m (11–13 ft) in length.[12] An adult weighs from 850 to 1,600 kg (1,900 to 3,500 lb), exceptionally to 1,800 kg (4,000 lb), with the females being smaller than the males. Two horns on the skull are made of keratin with the larger front horn typically 50 cm long, exceptionally up to 140 cm. Sometimes, a third smaller horn may develop. The black rhino is much smaller than the white rhino, and has a pointed mouth, which it uses to grasp leaves and twigs when feeding.
During the latter half of the 20th century their numbers were severely reduced from an estimated 70,000[13] in the late 1960s to only 2,410 in 1995.[14]
Indian rhinoceros
Main article: Indian rhinoceros
The Indian rhinoceros, or the greater one-horned rhinoceros, (Rhinoceros unicornis) is now found almost exclusively in Nepal and North-Eastern India. The rhino once inhabited many areas ranging from Pakistan to Burma and may have even roamed in China. However, because of human influence, their range has shrunk and now they only exist in several protected areas of India (in Assam, West Bengal, Gujarat and a few pairs in Uttar Pradesh) and Nepal, plus a few pairs in Lal Suhanra National Park in Pakistan. It is confined to the tall grasslands and forests in the foothills of the Himalayas.
The Indian rhinoceros has thick, silver-brown skin which creates huge folds all over its body. Its upper legs and shoulders are covered in wart-like bumps, and it has very little body hair. Fully grown males are larger than females in the wild, weighing from 2,500–3,200 kg (5,500–7,100 lb).The Indian rhino stands at 1.75–2.0 metres (5.75–6.5 ft). Female Indian rhinos weigh about 1,900 kg and are 3–4 metres long. The record-sized specimen of this rhino was approximately 3,800 kg. The Indian rhino has a single horn that reaches a length of between 20 and 100 cm. Its size is comparable to that of the white rhino in Africa.
Two-thirds of the world's Indian rhinoceroses are now confined to the Kaziranga National Park situated in the Golaghat district of Assam, India.[15]
Javan rhinoceros
Main article: Javan rhinoceros
The Javan rhinoceros (Rhinoceros sondaicus) is one of the rarest and most endangered large mammals anywhere in the world.[16] According to 2002 estimates, only about 60 remain, in Java (Indonesia) and Vietnam. Of all the rhino species, the least is known of the Javan Rhino. These animals prefer dense lowland rain forest, tall grass and reed beds that are plentiful with large floodplains and mud wallows. Though once widespread throughout Asia, by the 1930s the rhinoceros was nearly hunted to extinction in India, Burma, Peninsular Malaysia, and Sumatra for the supposed medical powers of its horn and blood. As of 2009, there are only 40 of them remaining in Ujung Kulon Conservation, Java, Indonesia. The last rhinoceros in Vietnam was reportedly killed in 2010.[17]
Like the closely related, and larger, Indian rhinoceros, the Javan rhinoceros has a single horn. Its hairless, hazy gray skin falls into folds into the shoulder, back, and rump giving it an armored-like appearance. The Javan rhino's body length reaches up to 3.1–3.2 m (10–10 ft), including its head and a height of 1.5–1.7 m (4 ft 10 in–5 ft 7 in) tall. Adults are variously reported to weigh between 900–1,400 kg[18] or 1,360–2,000 kg.[19] Male horns can reach 26 cm in length, while in females they are knobs or are not present at all.[19]
Sumatran rhinoceros
Main article: Sumatran rhinoceros
The Sumatran rhinoceros (Dicerorhinus sumatrensis) is the smallest extant rhinoceros species, as well as the one with the most hair. It can be found at very high altitudes in Borneo and Sumatra. Due to habitat loss and poaching, its numbers have declined and it is the most threatened rhinoceros. About 275 Sumatran rhinos are believed to remain.
A mature Sumatran rhino typically stands about 130 cm (51 in) high at the shoulder, with a body length of 240–315 cm (94–124 in) and weighing around 700 kg (1,500 lb), though the largest individuals have been known to weigh as much as 1,000 kilograms. Like the African species, it has two horns; the larger is the front (25–79 cm), with the smaller usually less than 10 cm long. The males have much larger horns than the females. Hair can range from dense (the densest hair in young calves) to scarce. The color of these rhinos is reddish brown. The body is short and has stubby legs. They also have a prehensile lip.
Rhinocerotoids diverged from other perissodactyls by the early Eocene. Fossils of Hyrachyus eximus found in North America date to this period. This small hornless ancestor resembled a tapir or small horse more than a rhino. Three families, sometimes grouped together as the superfamily Rhinocerotoidea, evolved in the late Eocene: Hyracodontidae, Amynodontidae and Rhinocerotidae.
Hyracodontidae, also known as 'running rhinos', showed adaptations for speed, and would have looked more like horses than modern rhinos. The smallest hyracodontids were dog-sized; the largest was Indricotherium, believed to be one of the largest land mammals that ever existed. The hornless Indricotherium was almost seven metres high, ten metres long, and weighed as much as 15 tons. Like a giraffe, it ate leaves from trees. The hyracodontids spread across Eurasia from the mid-Eocene to early Miocene.
The Amynodontidae, also known as "aquatic rhinos", dispersed across North America and Eurasia, from the late Eocene to early Oligocene. The amynodontids were hippopotamus-like in their ecology and appearance, inhabiting rivers and lakes, and sharing many of the same adaptations to aquatic life as hippos.
The family of all modern rhinoceros, the Rhinocerotidae, first appeared in the Late Eocene in Eurasia. The earliest members of Rhinocerotidae were small and numerous; at least 26 genera lived in Eurasia and North America until a wave of extinctions in the middle Oligocene wiped out most of the smaller species. However, several independent lineages survived. Menoceras, a pig-sized rhinoceros, had two horns side-by-side. The North American Teleoceras had short legs, a barrel chest and lived until about 5 million years ago. The last rhinos in the Americas became extinct during the Pliocene.
Modern rhinos are believed to have began dispersal from Asia during the Miocene. Two species survived the most recent period of glaciation and inhabited Europe as recently as 10,000 years ago: the woolly rhinoceros and Elasmotherium. The woolly rhinoceros appeared in China around 1 million years ago and first arrived in Europe around 600,000 years ago. It reappeared 200,000 years ago, alongside the woolly mammoth, and became numerous. Eventually it was hunted to extinction by early humans. Elasmotherium, also known as the giant rhinoceros, survived through the middle Pleistocene: it was two meters tall, five meters long and weighed around five tons, with a single enormous horn, hypsodont teeth and long legs for running.
Of the extant rhinoceros species, the Sumatran rhino is the most archaic, first emerging more than 15 million years ago. The Sumatran rhino was closely related to the woolly rhinoceros, but not to the other modern species. The Indian rhino and Javan rhino are closely related and form a more recent lineage of Asian rhino. The ancestors of early Indian and Javan rhino diverged 2–4 million years ago.[21]
The origin of the two living African rhinos can be traced back to the late Miocene (6 mya) species Ceratotherium neumayri. The lineages containing the living species diverged by the early Pliocene (1.5 mya), when Diceros praecox, the likely ancestor of the black rhinoceros, appears in the fossil record.[22] The black and white rhinoceros remain so closely related that they can still mate and successfully produce offspring.
In the wild, adult rhinoceros have few natural predators other than humans. Young rhinos can fall prey to predators such as big cats, crocodiles, wild dogs, and hyenas. Although rhinos are of a large size and have a reputation for being tough, they are actually very easily poached; because it visits water holes daily, the rhinoceros is easily killed while taking a drink. As of December 2009 poaching has been on a global increase whilst efforts to protect the rhinoceros are considered increasingly ineffective. The worst estimate, that only 3% of poachers are successfully countered, is reported of Zimbabwe. Rhino horn is considered to be particularly effective on fevers and even "life saving" by traditional Chinese medicine practitioners, which in turn provides a sales market. Nepal is apparently alone in avoiding the crisis while poacher-hunters grow ever more sophisticated.[26] South African officials are calling for urgent action against rhinoceros poaching after poachers killed the last female rhinoceros in the Krugersdorp Game Reserve near Johannesburg.[27] Statistics from South African National Parks show a record 333 rhinoceros have been killed in 2010.[28]
Horns
Rhinoceros horns, unlike those of other horned mammals (which have a bony core), only consist of keratin. Rhinoceros horns are used in traditional Asian medicine, and for dagger handles in Yemen and Oman. Esmond Bradley Martin has reported on the trade for dagger handles in Yemen.[29]
One repeated misconception is that rhinoceros horn in powdered form is used as an aphrodisiac in Traditional Chinese Medicine (TCM) as Cornu Rhinoceri Asiatici It is, in fact, prescribed for fevers and convulsions.[30] Neither have been proven by evidence-based medicine. Discussions with TCM practitioners to reduce its use have met with mixed results since some TCM doctors see rhinoceros horn as a life-saving medicine of better quality than substitutes.[31] China has signed the CITES treaty however, and removed rhinoceros horn from the Chinese medicine pharmacopeia, administered by the Ministry of Health, in 1993. In 2011 in the United Kingdom, the Register of Chinese Herbal Medicine issued a formal statement condemning the use of rhinoceros horn.[32] A growing number of TCM educators have also spoken out against the practice.[33] To prevent poaching, in certain areas, rhinos have been tranquilized and their horns removed. Armed park rangers, particularly in South Africa, are also working on the front lines to combat poaching, sometimes killing poachers who are caught in the act. A recent spike in rhino killings has made conservationaists concerned about the future of rhino species. During 2011 448 rhino were killed for their horn in South Africa alone.[34] The horn is incredibly valuable: an average sized horn can bring in much as a quarter of a million dollars in Vietnam and many rhino range States have stockpiles of rhino horn.[35][36] Still, poaching is hitting record levels due to demands from China and Vietnam.[37]
Historical representations
Albrecht Dürer created a famous woodcut of a rhinoceros in 1515, based on a written description and brief sketch by an unknown artist of an Indian rhinoceros that had arrived in Lisbon earlier that year. Dürer never saw the animal itself and, as a result, Dürer's Rhinoceros is a somewhat inaccurate depiction.
There are legends about rhinoceros stamping out fire in Malaysia, India, and Burma. The mythical rhinoceros has a special name in Malay, badak api, where badak means rhinoceros and api means fire. The animal would come when a fire is lit in the forest and stamp it out.[38] There are no recent confirmations of this phenomenon. However, this legend has been reinforced by the film The Gods Must Be Crazy, where an African rhinoceros is shown to be putting out two campfires.
Conservation
International Rhino Foundation
Save the Rhino
Nicolaas Jan van Strien
Individual rhinoceroses
Abada
Clara
Rhinoceros of Versailles
See also: Fictional Rhinoceroses
Other
Rhinoceroses in ancient China
A wine vessel in the form of a bronze rhinoceros with silver inlay, from the Western Han (202 BC – 9 AD) period of China, sporting a saddle on its back
A rhinoceros depicted on a Roman mosaic in Villa Romana del Casale, an archeological site near Piazza Armerina in Sicily, Italy
Dürer's Rhinoceros, in a woodcut from 1515
Monk with rhinoceros horn. Samye, Tibet, 1938.
Indricotherium, the extinct "giant giraffe" rhinoceros. It stood 18 feet tall at the shoulder and weighed up to 20 tonnes (22 short tons).
Coelodonta, the extinct woolly rhinoceros
The thick dermal armour of the Rhinoceros evolved at the same time as shearing tusks[20]
The Sumatran rhinoceros is the smallest of the rhino species
Smaller in size than the Indian rhinoceros, the Javan rhinoceros also have a single horn
The Indian rhinoceros has a single horn
The black rhinoceros has a beak shaped lip and is similar in color to the white rhinoceros
The white rhinoceros is actually grey
Black rhinoceros (Diceros bicornis) at the Saint Louis Zoo
Scientific classification
Kingdom:Animalia
Phylum:Chordata
Class:Mammalia
Infraclass:Eutheria
Order:Perissodactyla
Suborder:Ceratomorpha
Superfamily:Rhinocerotoidea
Family:Rhinocerotidae
Gray, 1820
Extant Genera
Ceratotherium
Dicerorhinus
Diceros
Rhinoceros
Extinct genera, see text
NEW DELHI: A total of 631 animals, including 19 rhinos, died in the recent floods in Kaziranga National Park of Assam, the Rajya Sabha was informed today.
In a written reply to the House, forest and environment minister Jayanthi Natarajan also said that flood is a natural and recurring phenomenon in Kaziranga and it creates a variety of habitats for different species.
"Mortality of wild animals due to flood has been reported during the year only in Kaziranga Tiger Reserve. As reported by the state, a total of 631 animal deaths, including 19 rhinos, have occurred in Kaziranga due to excess water brought by the flood during June-July 2012," she said.
She also informed the House that the flooding results in damage to infrastructure such as roads, anti-poaching camps, artificial high grounds.
"Similar high floods of 1988 and 1998 recorded animal mortality of 1203 and 652 respectively," Natarajan said.
Replying to a separate question on tiger deaths reported in Corbett National Park in Uttarakhand, she said from 2008 till now, there are 19 such incidents of the big cats dying due to natural and other causes.
She said only two incidents of poaching were reported from the national park.
In reply to another question on Tiger Project, she said, "The country level tiger population, estimated once in every four years using the refined methodology, is 1706."
While the lower limit of the tiger population is estimated to be 1520, the upper limit has been fixed at 1909.
Providing details of the 'India State Survey of Forest Report 2011', Natarajan told the House that "Forest and tree cover in the country is 78.29 million hectare, which is 23.81 per cent of the total geographical cover. This includes 2.76 per cent of tree cover."
On the forest cover in hilly and tribal areas, she said, "In the hill and tribal districts of the country, a decrease in forest dover of 548 sq km and 679 sq km respectively has been reported as compared to the previous assessment."
The northeastern states account for one-fourth of the country's forest cover but, "A decline of 549 sq km in forest cover as compared to the previous assessment", she said.
Replying to a query on mangrove cover in the country, Natarajan said there has been an increase of 23.34 sq km during the same period.
More expensive than cocaine, rhino horn is now the party drug of choice among Vietnam’s young things.
Instead of a razor blade and mirror, a textured ceramic bowl is used for grinding down rhinoceros horn into a powder to be mixed with water or wine.
Rhino horn is made of keratin, the same protein as fingernails. Scientists say it has no medicinal value, and users aren’t getting high. The belief in Vietnam is that drinking a tonic made from the horn will detoxify the body after a night of heavy boozing, and prevent a hangover. One Vietnamese news website described rhino horn wine as “the alcoholic drink of millionaires.”
This is the latest twist in South Africa’s devastating rhino poaching crisis, which began with a sudden boom in illegal killings of the endangered animal in 2008 and has worsened every year since. Demand among the newly wealthy in Vietnam is the root of the problem, says TRAFFIC, the wildlife trade monitoring group.
Tom Milliken, a rhino expert with TRAFFIC, said that in Vietnam, offering your friends rhino horn at a party has become a fashionable way to show wealth and status.
The way it happens is like this: “I would get my closest friends and we’d go into another room. I would bring out some rhino horn and we’d all take it and then come back to the party,” said Milliken, who studied the phenomenon.
A new TRAFFIC report, co-authored by Milliken, details how surging demand for horn in Vietnam, corruption in South Africa’s wildlife industry, loopholes in regulations and criminal networks have all fed into the poaching epidemic.
Vietnam’s new rich have become the world’s largest consumer group of rhino horn, spurring demand and the continued slaughter of rhinos in South Africa.
Another key group of Vietnamese consumers is people with serious illnesses, in particular cancer, who believe rhino horn can cure them despite the lack of any medical evidence. The TRAFFIC report describes the phenomenon of “rhino horn touts” stalking the corridors at hospitals, seeking out desperate patients with cancer.
An update released by South Africa’s Department of Environmental Affairs said that 339 rhino have been killed illegally in the country since the start of 2012, on track to be the worst year for poaching yet. There have also been 192 poaching-related arrests this year.
South Africa is the primary target for poachers because it is home to 21,000 rhinos, or more than 80 per cent of the world population.
South Africa and Vietnam are beginning to cooperate on the problem, although progress has been slow.
Vietnam’s deputy foreign affairs minister Le Loung Minh visited South Africa last week for talks on illegal trade in wildlife with his counterpart Ebrahim Ebrahim. The two governments are set to sign a memorandum of understanding that would encompass cooperation in criminal investigations. But it has taken a year of sporadic talks to reach this point — a sign of the lack of urgent action.
“South Africa has progressively scaled up its response to rhino crime,” the report noted, pointing to a plan that is being implemented and the recent increase in “high-value arrests.”
South Africa’s environment ministry hired Mavuso Msimang to bring together South Africans in private and public sectors to find the best way to save the rhino.
The project involves studying the potential legalising of the rhino horn trade, a contentious issue. “The government has done a good job of putting their effort behind the saving of the rhino,” Msimang said at the launch of the TRAFFIC report. “It’s got shortcomings, coordination is not always great, but the will to do well is with us,” he said.
Every day in South Africa, a rhinoceros will bleed to death after its horn has been hacked off by poachers. The horns are sold on the black market in Asia, mostly in Vietnam, where they’re believed to have powerful medicinal properties. Dutch veterinarian Martine van Zijl Langhout works together with local wardens to try and protect this threatened species.
Van Zijll Langhout stalks as quietly as possible through the tall grass at Mauricedale Park in the east of South Africa near the famous Kruger Park. She pulls back the trigger on her special tranquiliser rifle, takes aim and fires. The rhinoceros in her sights wobbles groggily for a few minutes before sinking onto its knees and rolling unconscious onto its side. Van Zijll Langhout and her team, carrying a chainsaw, approach the animal cautiously.
Brutal killings
There are some 20,000 rhinos in South Africa, 80 percent of the world population. And every day these animals are slaughtered savagely by poachers. First the rhino is shot to bring it down, and then the horn is hacked off with axes and machetes. The poachers cut as deeply into the animal’s head as possible. Every extra centimetre of horn means more money in their pockets. In 2007, thirteen rhinos in South Africa fell victim to poachers. Last year that number had soared to 448, and the toll so far this year is 312.
Reducing risk
Loud snoring can be heard. The vet blindfolds the rhinoceros and then the park manager starts up the chainsaw and proceeds to slice into the beast’s horn. Van Zijll Langhout monitors its breathing: “This is one way to stop the poachers” she explains. “They want as much horn as possible so rhinos with a small horn are a less attractive target”.
Van Zijll Langhout came to South Africa in 1997 when she was still a student and worked at Kruger Park with lions, elephants and rhinos. She knew she’d found her dream job, and five years ago she returned as a qualified vet. “It’s an unquenchable passion, such an adventure, and every day is different,” she says, “It’s such a privilege to work with African animals and an honour to be able to do something for them”.
No better option
The preventive removal of the rhinoceros’ horn takes about ten minutes. Van Zijll Langhout, an energetic woman in her thirties with wildly curly hair, compares the process to clipping nails or having a haircut: “It’s completely painless; we cut above the blood vessels”. Again she checks the animal’s breathing as its snores echo through the bush. “It’s not nice that we have to do this, but I don’t really see a better option”, she sighs, “and the horn does grow back, otherwise we wouldn’t do it.” The fact that visitors to the park might be disappointed and expect to see rhinos complete with proud curving horns doesn’t bother her: “What matters is the animals’ survival”.
Organised crime
The fight against poaching is a difficult one. “These are professional criminals”, explains Van Zijll Langhout. “This isn’t about poor locals living in huts. Poachers have advanced weapons and sometimes even use helicopters.” The horns are worth more than their weight in gold, so it’s a lucrative trade for organised crime syndicates.
The horn falls to the ground; the team will preserve it and register it. The rhino is given an injection. Within minutes he’s back on his feet and walking off into the bush. His newly weightless head is no guarantee of safety though. A rhino was poached in the park the same week as the horns were sawn off. Even the stump that remains after the procedure is worth big money.
Both black and white rhinoceroses are actually gray. They are different not in color but in lip shape. The black rhino has a pointed upper lip, while its white relative has a squared lip. The difference in lip shape is related to the animals' diets. Black rhinos are browsers that get most of their sustenance from eating trees and bushes. They use their lips to pluck leaves and fruit from the branches. White rhinos graze on grasses, walking with their enormous heads and squared lips lowered to the ground.
White rhinos live on Africa's grassy plains, where they sometimes gather in groups of as many as a dozen individuals. Females reproduce only every two and a half to five years. Their single calf does not live on its own until it is about three years old.
Under the hot African sun, white rhinos take cover by lying in the shade. Rhinos are also wallowers. They find a suitable water hole and roll in its mud, coating their skin with a natural bug repellent and sun block.
Rhinos have sharp hearing and a keen sense of smell. They may find one another by following the trail of scent each enormous animal leaves behind it on the landscape.
White rhinos have two horns, the foremost more prominent than the other. Rhino horns grow as much as three inches (eight centimeters) a year, and have been known to grow up to 5 feet (1.5 meters) long. Females use their horns to protect their young, while males use them to battle attackers.
The prominent horn for which rhinos are so well known has been their downfall. Many animals have been killed for this hard, hair-like growth, which is revered for medicinal use in China, Taiwan, Hong Kong, and Singapore. The horn is also valued in North Africa and the Middle East as an ornamental dagger handle.
The white rhino once roamed much of sub-Saharan Africa, but today is on the verge of extinction due to poaching fueled by these commercial uses. Only about 11,000 white rhinos survive in the wild, and many organizations are working to protect this much loved animal.Fast Facts
Type:
Mammal
Diet:
Herbivore
Size:
Head and body, 11 to 13.75 ft (3.4 to 4.2 m); tail, 20 to 27.5 in (50 to 70 cm)
Weight:
3,168 to 7,920 lbs (1,440 to 3,600 kg)
Protection status:
Endangered
Size relative to a 6-ft (2-m) man:
Both black and white rhinoceroses are actually gray. They are different not in color but in lip shape. The black rhino has a pointed upper lip, while its white relative has a squared lip. The difference in lip shape is related to the animals' diets. Black rhinos are browsers that get most of their sustenance from eating trees and bushes. They use their lips to pluck leaves and fruit from the branches. White rhinos graze on grasses, walking with their enormous heads and squared lips lowered to the ground.
Except for females and their offspring, black rhinos are solitary. Females reproduce only every two and a half to five years. Their single calf does not live on its own until it is about three years old.
Black rhinos feed at night and during the gloaming hours of dawn and dusk. Under the hot African sun, they take cover by lying in the shade. Rhinos are also wallowers. They often find a suitable water hole and roll in its mud, coating their skin with a natural bug repellent and sun block.
Rhinos have sharp hearing and a keen sense of smell. They may find one another by following the trail of scent each enormous animal leaves behind it on the landscape.
Black rhinos boast two horns, the foremost more prominent than the other. Rhino horns grow as much as three inches (eight centimeters) a year, and have been known to grow up to five feet (one and a half meters) long. Females use their horns to protect their young, while males use them to battle attackers.
The prominent horn for which rhinos are so well known has also been their downfall. Many animals have been killed for the hard, hairlike growth, which is revered for medicinal uses in China, Taiwan, Hong Kong, and Singapore. The horn is also valued in North Africa and the Middle East as an ornamental dagger handle.
The black rhino once roamed most of sub-Saharan Africa, but today is on the verge of extinction due to poaching fueled by commercial demand.
The rifle shot boomed through the darkening forest just as Damien Mander arrived at his campfire after a long day training game ranger recruits in western Zimbabwe's Nakavango game reserve. His thoughts flew to Basta, a pregnant black rhinoceros, and her two-year-old calf. That afternoon one of his rangers had discovered human footprints following the pair's tracks as Basta sought cover in deep bush to deliver the newest member of her threatened species.
Damien, a hard-muscled former Australian Special Forces sniper with an imposing menagerie of tattoos, including "Seek & Destroy" in gothic lettering across his chest, swiveled his head, trying to place the direction of the shot. "There, near the eastern boundary," he pointed into the blackness. "Sounded like a .223," he said, identifying the position and caliber, a habit left over from 12 tours in Iraq. He and his rangers grabbed shotguns, radios, and medical kits and piled into two Land Cruisers. They roared into the night, hoping to cut off the shooter. The rangers rolled down their windows and listened for a second shot, which would likely signal Basta's calf was taken as well.
It was an ideal poacher's setup: half-moon, almost no wind. The human tracks were especially ominous. Poaching crews often pay trackers to find the rhinos, follow them until dusk, then radio their position to a shooter with a high-powered rifle. After the animal is down, the two horns on its snout are hacked off in minutes, and the massive carcass is left to hyenas and vultures. Nearly always the horns are fenced to an Asian buyer; an enterprising crew might also cut out Basta's fetus and the eyes of the mother and calf to sell to black magic or muti practitioners. If this gang was well organized, a group of heavily armed men would be covering the escape route, ready to ambush the rangers.
As the Land Cruiser bucked over rutted tracks, Damien did a quick calculation—between his vehicles he had two antiquated shotguns with about a dozen shells. Based on the sound of the shot, the poachers held an advantage in firepower. If the rangers did pick up a trail and followed on foot, they would have to contend with lions, leopards, and hyenas out hunting in the dark.
In the backseat of one of the speeding Land Cruisers, Benzene, a Zimbabwean ranger who had spent nearly a year watching over Basta and her calf and knew the pair intimately, loaded three shells into his shotgun, flicked on the safety, and chambered a round. As we bounced into the night, he said, "It is better for the poachers if they meet a lion than if they meet us."
AND SO GOES A NIGHT on the front lines of southern Africa's ruthless and murky rhino war, which since 2006 has seen more than a thousand rhinos slaughtered, some 22 poachers gunned down and more than 200 arrested last year in South Africa alone. At the bloody heart of this conflict is the rhino's horn, a prized ingredient in traditional Asian medicines. Though black market prices vary widely, as of last fall dealers in Vietnam quoted prices ranging from $33 to $133 a gram, which at the top end is double the price of gold and can exceed the price of cocaine.
Although the range of the two African species—the white rhino and its smaller cousin, the black rhino—has been reduced primarily to southern Africa and Kenya, their populations had shown encouraging improvement. In 2007 white rhinos numbered 17,470, while blacks had nearly doubled to 4,230 since the mid '90s.
For conservationists these numbers represented a triumph. In the 1970s and '80s, poaching had devastated the two species. Then China banned rhino horn from traditional medicine, and Yemen forbade its use for ceremonial dagger handles. All signs seemed to point to better days. But in 2008 the number of poached rhinos in South Africa shot up to 83, from just 13 in 2007. By 2010 the figure had soared to 333, followed by over 400 last year. Traffic, a wildlife trade monitoring network, found most of the horn trade now leads to Vietnam, a shift that coincided with a swell of rumors that a high-ranking Vietnamese official used rhino horn to cure his cancer.
Meanwhile in South Africa, attracted by spiraling prices—and profits—crime syndicates began adding rhino poaching to their portfolios.
animals architecture art asia australia autumn baby band barcelona beach berlin bike bird birds birthday black blackandwhite blue bw california canada canon car cat chicago china christmas church city clouds color concert dance day de dog england europe fall family fashion festival film florida flower flowers food football france friends fun garden geotagged germany girl graffiti green halloween hawaii holiday house india instagramapp iphone iphoneography island italia italy japan kids la lake landscape light live london love macro me mexico model museum music nature new newyork newyorkcity night nikon nyc ocean old paris park party people photo photography photos portrait raw red river rock san sanfrancisco scotland sea seattle show sky snow spain spring square squareformat street summer sun sunset taiwan texas thailand tokyo travel tree trees trip uk unitedstates urban usa vacation vintage washington water wedding white winter woman yellow zoo
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/
This is a photograph from the 4th and final round of the 2015 Mullingar Road League which was held in Belvedere House and Gardens, Mullingar, Co. Westmeath, Ireland on Wednesday 27th May 2015 at 20:00. The weather was perfect for running and racing again and gave bright sunshine with some breeze. The weather conditions were favourable for runners this evening. As this was the final night of a very successful league there were many category prizes up for grabs with runners having to ensure they ran their races to gain the required finish times for the overall calculations. There was a great atmosphere at the finish as spectators cheered on the runners. This year's 5KM is ran on a modified route based on the route from the last couple of years. The final 1KM is within the Belvedere Gardens bringing runners down to the lakeside for a second time and finishing along the aptly named Stream Of Life. The route modification means that the race offers a slightly faster route than the hill finish of previous years. In the prize giving and awards in Belvedere House Cafe there were refreshments served for runners and this brought the curtain down on the Road League for 2015.
The race is promoted by Mullingar Harriers for the Pat Finnerty Memorial Cup. Competitors need to run 3 races out of the 4 races in May (any order) to be considered in the overall placing in categories at the conclusion of the league. Runners can also choose to just run one race without being considered for the overall league placings. Over 330 people took part in tonight's event bring the total from the four nights to so far to well over 1,400 runners. As with all of the previous weeks the new finish area provided a nice space for runners to stay around and chat in the evening sunshine. The Mullingar Road League 2015 is now over but has continued successfully and looks to add to the success in the history of this great series. Despite the bright evenings the photographic conditions in Belevedere are difficult so this photograph is part of a smaller than usual photograph set as there were many blurred photographs this evening.
The "Road League" is something of a misnomer but is an indication of the League's origins on the roads around Ladestown Mullingar prior to it's move into Belvedere in 2008. The Road League is the envy of many other races in the country as the Belvedere locations offers a completely traffic free 5KM route.
We have an extensive set of photographs from tonight in the following Flickr Album: www.flickr.com/photos/peterm7/sets/72157653157747838
Timing and event management was provided by Precision Timing. Results are available on their website at www.precisiontiming.net/result.aspx?v=2710 with additional material available on their Facebook page (www.facebook.com/davidprecisiontiming?fref=ts) See their promotional video on YouTube: www.youtube.com/watch?v=c-7_TUVwJ6Q
Photographs from the last number of years of the Mullingar Road League are found at the bottom of this text
USING OUR PHOTOGRAPHS - A QUICK GUIDE AND ANSWERS TO YOUR QUESTIONS
Can I use these photographs directly from Flickr on my social media account(s)?
Yes - of course you can! Flickr provides several ways to share this and other photographs in this Flickr set. You can share directly to: email, Facebook, Pinterest, Twitter, Tumblr, LiveJournal, and Wordpress and Blogger blog sites. Your mobile, tablet, or desktop device will also offer you several different options for sharing this photo page on your social media outlets.
BUT..... Wait there a minute....
We take these photographs as a hobby and as a contribution to the running community in Ireland. We do not charge for our photographs. Our only "cost" is that we request that if you are using these images: (1) on social media sites such as Facebook, Tumblr, Pinterest, Twitter,LinkedIn, Google+, VK.com, Vine, Meetup, Tagged, Ask.fm,etc or (2) other websites, blogs, web multimedia, commercial/promotional material that you must provide a link back to our Flickr page to attribute us or acknowledge us as the original photographers.
This also extends to the use of these images for Facebook profile pictures. In these cases please make a separate wall or blog post with a link to our Flickr page. If you do not know how this should be done for Facebook or other social media please email us and we will be happy to help suggest how to link to us.
I want to download these pictures to my computer or device?
You can download this photographic image here directly to your computer or device. This version is the low resolution web-quality image. How to download will vary slight from device to device and from browser to browser. Have a look for a down-arrow symbol or the link to 'View/Download' all sizes. When you click on either of these you will be presented with the option to download the image. Remember just doing a right-click and "save target as" will not work on Flickr.
I want get full resolution, print-quality, copies of these photographs?
If you just need these photographs for online usage then they can be used directly once you respect their Creative Commons license and provide a link back to our Flickr set if you use them. For offline usage and printing all of the photographs posted here on this Flickr set are available free, at no cost, at full image resolution.
Please email petermooney78 AT gmail DOT com with the links to the photographs you would like to obtain a full resolution copy of. We also ask race organisers, media, etc to ask for permission before use of our images for flyers, posters, etc. We reserve the right to refuse a request.
In summary please remember when requesting photographs from us - If you are using the photographs online all we ask is for you to provide a link back to our Flickr set or Flickr pages. You will find the link above clearly outlined in the description text which accompanies this photograph. Taking these photographs and preparing them for online posting takes a significant effort and time. We are not posting photographs to Flickr for commercial reasons. If you really like what we do please spread the link around your social media, send us an email, leave a comment beside the photographs, send us a Flickr email, etc. If you are using the photographs in newspapers or magazines we ask that you mention where the original photograph came from.
I would like to contribute something for your photograph(s)?
Many people offer payment for our photographs. As stated above we do not charge for these photographs. We take these photographs as our contribution to the running community in Ireland. If you feel that the photograph(s) you request are good enough that you would consider paying for their purchase from other photographic providers or in other circumstances we would suggest that you can provide a donation to any of the great charities in Ireland who do work for Cancer Care or Cancer Research in Ireland.
Let's get a bit technical: We use Creative Commons Licensing for these photographs
We use the Creative Commons Attribution-ShareAlike License for all our photographs here in this photograph set. What does this mean in reality?
The explaination is very simple.
Attribution- anyone using our photographs gives us an appropriate credit for it. This ensures that people aren't taking our photographs and passing them off as their own. This usually just mean putting a link to our photographs somewhere on your website, blog, or Facebook where other people can see it.
ShareAlike – anyone can use these photographs, and make changes if they like, or incorporate them into a bigger project, but they must make those changes available back to the community under the same terms.
Above all what Creative Commons aims to do is to encourage creative sharing. See some examples of Creative Commons photographs on Flickr: www.flickr.com/creativecommons/
I ran in the race - but my photograph doesn't appear here in your Flickr set! What gives?
As mentioned above we take these photographs as a hobby and as a voluntary contribution to the running community in Ireland. Very often we have actually ran in the same race and then switched to photographer mode after we finished the race. Consequently, we feel that we have no obligations to capture a photograph of every participant in the race. However, we do try our very best to capture as many participants as possible. But this is sometimes not possible for a variety of reasons:
►You were hidden behind another participant as you passed our camera
►Weather or lighting conditions meant that we had some photographs with blurry content which we did not upload to our Flickr set
►There were too many people - some races attract thousands of participants and as amateur photographs we cannot hope to capture photographs of everyone
►We simply missed you - sorry about that - we did our best!
You can email us petermooney78 AT gmail DOT com to enquire if we have a photograph of you which didn't make the final Flickr selection for the race. But we cannot promise that there will be photograph there. As alternatives we advise you to contact the race organisers to enquire if there were (1) other photographs taking photographs at the race event or if (2) there were professional commercial sports photographers taking photographs which might have some photographs of you available for purchase. You might find some links for further information above.
Don't like your photograph here?
That's OK! We understand!
If, for any reason, you are not happy or comfortable with your picture appearing here in this photoset on Flickr then please email us at petermooney78 AT gmail DOT com and we will remove it as soon as possible. We give careful consideration to each photograph before uploading.
I want to tell people about these great photographs!
Great! Thank you! The best link to spread the word around is probably http://www.flickr.com/peterm7/sets
Links to previous Mullingar Road League Photographs from over the years
Our photographs from Round 3 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157650853131823
Our photographs from Round 2 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652357781278
Our photographs from Round 1 of the 2015 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157652342512706
Our photographs from Round 1 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644508131856/
Our photographs from Round 2 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644261638039/
Our photographs from Round 3 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644769714481/
Our photographs from Round 4 of the 2014 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157644840050706/
Road League 2014 Facebook Page: www.facebook.com/patfinnertyroadleague?fref=ts (Requires Facebook logon)
YouTube Video for the Promotion of the 2014 Road League: www.youtube.com/watch?v=KfvVVwrkgTM
A Vimeo Video for the Promotion of the 2013 Road League: vimeo.com/64875578
Our photographs from Round 5 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633794985503/
Our photographs from Round 4 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633604656368/
Our photographs from Round 3 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633470510535/
Our photographs from Round 2 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633451422506/
Our photographs from Round 1 of the 2013 Road League on Flickr: www.flickr.com/photos/peterm7/sets/72157633397519242/
Belvedere House and Gardens on Google Street View: goo.gl/maps/WWTgD
Chip Timing Results from Precision Timing: www.precisiontiming.net/results.aspx
Belvedere House and Gardens Website: www.belvedere-house.ie/
Mullingar Harriers Facebook Group Page: www.facebook.com/groups/158535740855708/?fref=ts
Our Flickr Collection from Mullingar Road League 2012 (1,800 photographs) www.flickr.com/photos/peterm7/collections/72157629780992768/
Our Flickr Collection from Mullingar Road League 2011 (820 photographs) www.flickr.com/photos/peterm7/collections/72157626524444213/
Our Flickr Collection from Mullingar Road League 2010 (500 photographs) www.flickr.com/photos/peterm7/collections/72157624051668808/
Our Flickr Collection from Mullingar Road League 2009 (250 photographs) www.flickr.com/photos/peterm7/collections/72157617814884076/
Our Flickr Collection from Mullingar Road League 2008 (150 photographs) www.flickr.com/photos/peterm7/collections/72157605062152203/