You can edit almost every page by Creating an account and confirming your email.

Arthur H. Shore

From EverybodyWiki Bios & Wiki




<graph>

{

 //
 // ATTENTION: This code is maintained at https://www.mediawiki.org/wiki/Template:Graph:Street_map_with_marks
 //            Please do not modify it anywhere else, as it may get copied and override your changes.
 //            Suggestions can be made at https://www.mediawiki.org/wiki/Template_talk:Graph:Street_map_with_marks
 //
 // Template translation is in https://commons.wikimedia.org/wiki/Data:Original/Template:Graphs.tab
 //
 "version": 2, "width":300, "height": 400, "padding": 0,
 "signals":[
   // These signals allow us to quickly move the map within the image, e.g. to leave space for the legend

{"name":"legendWidth", "init": {"expr": "0"} },

   {"name":"legendHeight", "init": {"expr": "height"} },
   {"name":"imgWidth", "init": {"expr": "width-legendWidth"} },
   {"name":"imgHeight", "init": {"expr": "height"} },
   {"name":"imgXC", "init": {"expr": "imgWidth/2"} },
   {"name":"imgYC", "init": {"expr": "imgHeight/2"} },
   {"name":"imgTileSize", "init": {"expr": "256"} },
   {"name":"imgLat", "init": {"expr": "45.145909"} },
   {"name":"imgLon", "init": {"expr": "-77.882524"} },
   {"name":"imgZoom", "init": {"expr": "10"} },
   {"name":"picWidth", "init": {"expr": "180"} },
   {"name":"picHeight", "init": {"expr": "picWidth/2"} },
   {"name":"picXC", "init": {"expr": "imgWidth-(picWidth/2)"} },
   {"name":"picYC", "init": {"expr": "imgHeight-(picHeight/2)"} },
   {"name":"showMiniMap", "init": {"expr": "0"} }
 ],
 "data": [
   {
     "name": "data",

// Otherwise use the first unnamed argument for source values

     "values": [  { "lat": 45.145909, 
    "lon": -77.882524, 
    "img": "wikirawupload:https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Mapscaleline.svg/120px-Mapscaleline.svg.png", 
    "width": 50, 
    "height": 8, 
    "offsetX": 113, 
    "offsetY": 190, 
    "textAlign": "right", 
    "textDx": 22, 
    "textDy": -2, 
    "textColor": "grey", 
    "textFont": "Tahoma", 
    "textFontSize": 9, 
    "text":  "5km" }

, { "lat": 0, "lon": 0, "img": "wikirawupload:https://en.everybodywiki.com/images/thumb/0/0c/Red_pog.svg/10px-Red_pog.svg.png", "height": 10, "width": 10, "text": "", "textAlign": "right", "textBaseline": "middle", "textDx": -7, "textDy": 1, "textFontSize": 12, "textColor": "#AA1205"


} , { "lat": 45.02083, "lon": -77.92500, "img": "wikirawupload:https://en.everybodywiki.com/images/thumb/0/0c/Red_pog.svg/10px-Red_pog.svg.png", "height": 10, "width": 10, "text": "Faraday Mine", "textAlign": "center", "textBaseline": "bottom", "textDx": 0, "textDy": -7, "textFontSize": 12, "textColor": "#AA1205"


} , { "lat": 45.230592, "lon": -77.786271, "img": "wikirawupload:https://en.everybodywiki.com/images/thumb/0/0c/Red_pog.svg/10px-Red_pog.svg.png", "height": 10, "width": 10, "text": "Reeves Mine", "textAlign": "center", "textBaseline": "bottom", "textDx": 0, "textDy": -7, "textFontSize": 12, "textColor": "#AA1205"


}
















     ],
     "transform": [
       {
         "type": "geo",
         "projection": "mercator",
         "scale": {"expr": "imgTileSize/PI/2*pow(2,imgZoom)"},
         "translate": [{"expr": "imgXC"}, {"expr": "imgYC"}],
         "center": [{"expr": "imgLon"}, {"expr": "imgLat"}],
         "lon": "lon", "lat": "lat"
       },
       { "type": "formula", "field":"layout_x", "expr": "datum.layout_x + (datum.offsetX || 0)" },
       { "type": "formula", "field":"layout_y", "expr": "datum.layout_y + (datum.offsetY || 0)" },
       { "type": "formula", "field":"color", "expr": "datum.color || '#c33'" },
       { "type": "formula", "field":"textColor", "expr": "datum.textColor || datum.color" },
       { "type": "formula", "field":"strokeColor", "expr": "datum.strokeColor || '#ffe7e6'" }
     ]
   },
   {
     // Hack: single value data source for drawing/hiding images and other non-series elements
     "name": "dummyData",
     "values": [{}]
   }
 ],

// Legend only works if showLegend and colorScaleField are set

 "marks": [
   {
     "type": "image",
     "from": {
       "data": "dummyData",
       "transform": [
         { "type": "formula", "field":"url", "expr": "'mapsnapshot:///?width='+imgWidth+'&height='+imgHeight+'&zoom='+imgZoom+'&lat='+imgLat+'&lon='+imgLon" }
       ]
     },
     "properties": {
       "enter": {
         "url": {"field": "url"},
         "xc": {"signal": "imgXC"}, "yc": {"signal": "imgYC"},
         "width": {"signal": "imgWidth"}, "height": {"signal": "imgHeight"}
       }
     }
   },
   {
     // Places an image of a given name and size at the [lan,lon] location
     "type": "image",
     "from": {
       "data": "data",
       "transform": [
         { "type": "filter", "test": "datum.img" },
         { "type": "formula", "field":"iconWidth", "expr": "datum.width || 0" },
         { "type": "formula", "field":"iconHeight", "expr": "datum.height || 0" },
         { "type": "formula", "field":"img",
           "expr": "if(!test(/^[a-z]+:\\/\\//, datum.img), 'wikifile:///'+datum.img, datum.img)" },
         // Ensure that either width or height parameter is passed to wikifile:// request
         { "type": "formula", "field":"img",
           "expr": "if((datum.iconWidth || datum.iconHeight) && !test(/[?&](width|height)=\\d/, datum.img),if(datum.iconWidth,datum.img+'?width='+datum.iconWidth,datum.img+'?height='+datum.iconHeight), datum.img)" }
     ]},
     "properties": {
       "enter": {
         "url": {"field": "img"},
         "xc": {"field": "layout_x"}, "yc": {"field": "layout_y"},
         "width": {"field": "iconWidth"}, "height": {"field": "iconHeight"}
       }
     }
   },
   {
     // Draw marks of a given color, shape, and size at the [lan,lon] location
     "type": "symbol",
     "from": {
       "data": "data",
       "transform": [{ "type": "filter", "test": "!datum.img" }]
     },
     "properties": {
       "enter": {
         "x": {"field": "layout_x"},
         "y": {"field": "layout_y"},
         // If colorScaleField is set, use color scaling, otherwise use the preset color value
         "fill": { "field": "color" },
         "size": {"field": "size"},
         "shape": {"field": "shape"},
         "stroke": {"field": "strokeColor"}
       }
     }
   },
   {
     // Draw text with the given color and size at the [lan,lon] location
     // See https://github.com/vega/vega/wiki/Marks#text for all parameter description (prepend "text" and capitalize them)
     "type": "text",
     "from": {
       "data": "data",
       "transform": [
         { "type": "filter", "test": "datum.text" },
         // Figure out if this is an LTR or RTL page. For LTR, show label to the right of the icon, left-aligned. For RTL, reverse.
         { "type": "formula", "field":"isLTR", "expr": "'‎' == '\\u200E'" },
         // If these values are not defined ("undefined" is not allowed, so test for truthiness and not 0)
         { "type": "formula", "field":"textDx", "expr": "if(!datum.textDx && datum.textDx != 0, if(datum.isLTR,8,-8), datum.textDx)" },
         { "type": "formula", "field":"textAlign", "expr": "if(!datum.textAlign, if(datum.isLTR,'left','right'), datum.textAlign)" },
         { "type": "formula", "field":"textBaseline", "expr": "datum.textBaseline || 'middle'" }
     ]},
     "properties": {
       "enter": {
         "text": {"field": "text"},
         "x": {"field": "layout_x" },
         "y": {"field": "layout_y"},
         "dx": {"field": "textDx" },
         "dy": {"field": "textDy"},
         "fill": {"field": "textColor"},
         "align": {"field": "textAlign"},
         "baseline": {"field": "textBaseline"},
         "radius": {"field": "textRadius"},
         "theta": {"field": "textTheta"},
         "angle": {"field": "textAngle"},
         "font": {"field": "textFont"},
         "fontSize": {"field": "textFontSize"},
         "fontWeight": {"field": "textFontWeight"},
         "fontStyle": {"field": "textFontStyle"}
       }
     }
   },
   {
     // Draw a low-zoom locator map frame
     "type": "rect",
     "from": {
       "data": "dummyData",
       "transform": [
         { "type": "filter", "test": "showMiniMap" }
       ]
     },
     "properties": {
       "enter": {
         "xc": {"signal": "picXC"}, "yc": {"signal": "picYC"},
         "width": {"signal": "picWidth", "offset":2}, "height": {"signal": "picHeight"},
         "stroke": {"value":"#fff"},"strokeWidth": {"value":6}
       }
     }
   },
   {
     // Draw a low-zoom locator map by using a premade world map image
     "type": "image",
     "from": {
       "data": "dummyData",
       "transform": [
         { "type": "filter", "test": "showMiniMap" },
         { "type": "formula", "field":"url", "expr": "1" }
       ]
     },
     "properties": {
       "enter": {
         "url": {"value": "wikirawupload:"},
         "xc": {"signal": "picXC"}, "yc": {"signal": "picYC"},
         "width": {"signal": "picWidth"}, "height": {"signal": "picHeight"}
       }
     }
   },
   {
     // Draw a zoom-out mark at the [lan,lon] location
     "type": "symbol",
     "from": {
       "data": "dummyData",
       "transform": [
         { "type": "filter", "test": "showMiniMap" },
         { "type": "formula", "field":"lat", "expr": "imgLat" },
         { "type": "formula", "field":"lon", "expr": "imgLon" },
         {
           "type": "geo",
           "projection": "equirectangular",
           "scale": {"expr": "180/2/PI"},
           "translate": [{"expr": "picXC"}, {"expr": "picYC"}],
           "center": [{"expr": "0"}, {"expr": "0"}],
           "lon": "lon", "lat": "lat"
         }
       ]
     },
     "properties": {
       "enter": {
         "x": {"field": "layout_x"}, "y": {"field": "layout_y"},
         "fill": {"value": "#c33"},
         "stroke": {"value": "#ffe7e6"},
         "size": {"value": 40}
       }
     }
   }
 ]

} </graph>

Location of Shore's Mines

Arthur H. Shore was a mineral prospector and the first person set up a uranium mine in Faraday Township, Ontario.[1][2] He co-founded and managed the Reeves feldspar Mine and founded the Faraday Uranium Mine.[1] His uranium prospecting, according to Bayne in 1977, led to the "greatest uranium prospecting rush in the world."[3]

Early Life

Shore is from Bancroft, Ontario.[4]

Reeves Mine, feldspar mining, 1945 to 1946

From 1945 to 1946, Shore was the Managing Director of Bancroft Feldspar Mines Limited, the company that owned and operated Reeves Mine.[5]

In partnership with Roy Munnings, they mined 1,190 tons of feldspar[5] from the mine, which was located at lot 6, Concession XII of Monteagle Township, just north of Bancroft.[6] Shore employed four workers at the mine.[5]

Uranium prospecting and mining at Faraday Mine, 1948 to 1952

After unsuccessfully prospecting many locations nearby Bancroft, and after taking advice from Toronto geologist John C. B. Rogers,[7] in 1948 or 1949, Shore discovered uranium at a lot in Faraday Township. The exact location was lot 15, concession A, a mile from Highway 28, 5 miles south of Bancroft.[1][3][8][9][2]

Shore used adjacent lots 16 and 17 of concession 10 to developed a mine.[1]

After buying up the property on surrounding lots, on 22 June 1949, Shore incorporated Faraday Uranium Mines Limited, and appointed himself as president.[1][10]

Shore attempted to raise funds to develop the property, but was initially unsuccessful as potential investors were discouraged the perception that the geology in Bancroft was incompatible with economical extraction of uranium.[11]

Shore dug trenches and stripped rock himself, employing geologists and engineers when needed[1]. Shore seriously injured himself.[1]

In 1952 Shore received financial support from Toronto based Newkirk Mining Corporation and work was done by Pole Star Mining.[1][11]

Mr. Shore sold control of the company to Augustus Exploration Limited, who started full development of the site in 1952.[10]

References

  1. 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 A.H. Lang, J. W. Griffith, H. R Steacy (1962). Canadian Deposits of Uranium and Thorium (PDF). Yukon University: Geological Survey of Canada - Department of Mines and Technical Surveys. pp. 198, 205.CS1 maint: Multiple names: authors list (link) Search this book on
  2. 2.0 2.1 Barnes, Michael (2008). More Than Free Gold: Mineral Exploration in Canada Since World War II. General Store Publishing House. ISBN 978-1897113905. Search this book on
  3. 3.0 3.1 Bayne, A. S. (31 Dec 1977). "REPORT ON WILSON URANIUM PROPERTY CARDIFF S FARADAY TOWNSHIPS" (PDF). Ontario Government. Eastern Ontario Mining Division Counties of Haliburton A Hastings Ontario Canada. p. 10. Unknown parameter |url-status= ignored (help)
  4. "Mindat.org". www.mindat.org. Retrieved 2021-11-27.
  5. 5.0 5.1 5.2 Fifty sixth annual report of the Ontario Department of Mines, Volume LVI, Part 1 (PDF). Baptist Johnston. 1947. p. 124. Search this book on
  6. Annual Report - Volume 55. Pennsylvania State University: Ontario Department of Mines and Northern Affairs. 1948. p. 2. Search this book on
  7. Le Bourdais, Donat Marc (1959). Canada and the atomic revolution. McClelland & Stewart. p. 132. Search this book on
  8. Geology and Scenery. Peterborough, Bancroft and Madoc Area (PDF). Ministry of Northern Development and Mines. p. 55. ISBN 0-7729-3597-1. Search this book on
  9. Mining in Canada. Sanford Evans. 1967. Search this book on
  10. 10.0 10.1 Reynolds, Nila (1979). Bancroft. A Bonanza of Memories. The Bancroft Centennial Committee. p. 192. Search this book on
  11. 11.0 11.1 Proulx, Michèle (1997). The Uranium Mining Industry of the Bancroft Area, an Environmental History and Heritage Assessment (PDF). Peterborough, Ontario: Trent University. p. 52. ISBN 0-612-21696-9. Retrieved 11 October 2021. Search this book on


This article "Arthur H. Shore" is from Wikipedia. The list of its authors can be seen in its historical and/or the page Edithistory:Arthur H. Shore. Articles copied from Draft Namespace on Wikipedia could be seen on the Draft Namespace of Wikipedia and not main one.

Page kept on Wikipedia This page exists already on Wikipedia.