<HTML> <HEAD> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></META> <STYLE> BODY { margin:0.25in; font-family:Verdana,Arial,Helvetica,sans-serif; font-size:10pt; background-color:#FFFFFF; } H1 { margin-left:0.05in; font-family:Verdana,Arial,Helvetica,sans-serif; font-weight:bold; font-size:15; text-align:center; color:#006400; } H2 { margin-left:0.25in; font-size:13; text-align:center; color:#006400; } TABLE.header { valign:top; background-color: #FFFFFF; border-collapse:collapse; } TR { text-align:center; } TH { text-align:center; vertical-align: middle; font-family:Verdana,Arial,Helvetica,sans-serif; font-size:10pt; font-weight: bold;} TH.THLeft { text-align: left; border: none; color:#33665b;} TD { text-align:center; vertical-align: middle; font-family:Verdana,Arial,Helvetica,sans-serif; font-size:10pt} TD.TDLeft { text-align: left; border: none; color:#33665b;} TD.TDRight { text-align: right; border: none; } TD.clear { font-weight:bold; font-size:11pt; border: none; } .tsel { color:white; background-color:#33665b; border: none #33665b; } .tun { color:#2E8B57; xcolor:#33665b; background-color:white; } .tover { color:#FFFFFF; background-color:#A0A0A0; cursor:hand} .frameborder { background-color:#FFFFFF; border: 1pt solid #33665b; } div { display:block; } div.icon { display:inline; border:solid; border-width:1pt; color:black; text-align:center; vertical-align:middle; line-height:50%; font-weight:bold; width:18; height:18} span.icon { display:inline; border:none; border-width:1pt; color:black; text-align:center; vertical-align:middle; line-height:50%; font-weight:bold; width:18; height:18} .ph1 { color:#2E8B57; font-weight:bold; cursor: } .ph2 { margin-left:0.2in; color:#2E8B57; font-weight:bold; cursor: } .pover1 { color:#006000; font-weight:bold; cursor:hand } .pover2 { margin-left:0.2in; color:#006000; font-weight:bold; cursor:hand } .pn { color:#33665b; font-weight:bold } .pv { font-family:Verdana,sans-serif; line-height:135%; color:#33665b; margin:0in 0.15in 0.75in 0.15in} .pe1 { margin-left:0.2in} .pe2 { margin-left:0.25in; font-weight:normal; color:#33665b; } .lt { line-height:115%} .lt2 { line-height:115%; margin-bottom:1mm} .sr1 { margin-left:0in } .sr2 { margin-left:0.2in } .sr3 { margin-left:0.4in } .srh1 { margin-left:0in; color:#33665b; font-weight:bold; } .srh2 { margin-left:0.2in; color:#33665b; font-weight:bold; } </STYLE> <SCRIPT LANGUAGE="JavaScript1.2"> <!-- var bV = parseInt(navigator.appVersion); var NS4 = (document.layers) ? true : false; var IE4 = ((document.all)&&(bV>=4)) ? true : false; var DOM = document.getElementById; var ver4 = (NS4 || IE4 || DOM) ? true : false; var isExpanded = false; var firstInd; function initIt() { bV = parseInt(navigator.appVersion); NS4 = (document.layers) ? true : false; if (NS4) { alert("This page written for Netscape 6+ and Internet Explorer 5+"); } } // expand one division function expandIt(el) { if (DOM) expandDOM(el); else alert("This page intended for Nescape 6+ and Internet Explorer 5+"); return false; } function unhideSubDIV(el, icon) { if (el == null) { return; } // unhide the display of this division el.style.display = "block"; if (icon != null) icon.innerHTML = "&#151;"; // show all child icon Divs var divnodes = el.getElementsByTagName('DIV'); for (var j=0; j < divnodes.length; j++) { if (divnodes[j].id != null) if (divnodes[j].id.indexOf('Icon') > 0) divnodes[j].style.visibility = "visible"; } } function hideSubDIV(el, icon) { if (el == null) { return; } // hide the display of this division el.style.display = "none"; if (icon != null) icon.innerHTML = "&#187;"; // hides all child icon Divs var divnodes = el.getElementsByTagName('DIV'); for (var i=0; i<divnodes.length; i++) { if (divnodes[i].id != null) if (divnodes[i].id.indexOf('Icon') > 0) divnodes[i].style.visibility = "hidden"; } } function expandDOM(el) { var iconDiv; if (el.id == '') { // case #1. Nested DIVs could expand open. // Find its image icon. Its the first image in this DIV var divnodes = el.getElementsByTagName('DIV'); if (divnodes == null) return; // nothing to do. var spannodes = el.getElementsByTagName('SPAN'); for(i=0; i<divnodes.length; i++) { if (divnodes[i] == null) continue; // should not occur if (divnodes[i].id == 'alwayson') continue; if (divnodes[i].id.indexOf('Icon') > 0) { iconDiv = divnodes[i]; continue; } // if no DIV icon, maybe a SPAN icon if (iconDiv == null) { for(k=0; k<spannodes.length; k++) { alert("span " + spannodes[k].id); if (spannodes[k].id.indexOf('Icon') > 0) { iconDiv = spannodes[k]; alert("got a SPAN"); break; } } } if (divnodes[i].style.display != "block") { // show this DIV's content unhideSubDIV(divnodes[i], iconDiv); } else { // hide this DIV's content hideSubDIV(divnodes[i], iconDiv); } } } else { // Case #2. No nested DIVs but a child DIV with labelling. //alert("no DIV nodes under here"); var whichEl = document.getElementById(el.id + "Child"); if (whichEl == null) return; var iconDiv = document.getElementById(el.id + "Icon"); if (whichEl.style.display != "block") { unhideSubDIV(whichEl, iconDiv); if (iconDiv != null) { iconDiv.innerHTML = "&#151;"; } } else { hideSubDIV(whichEl, iconDiv); if (iconDiv != null) { iconDiv.innerHTML = "&#187;"; } } } return; } //changes the color of the tabs or headings that you can click //when the mouse hovers over them function doHilite(e) { if (e.className == "tun") { e.className = "tover"; } else if (e.className == "tover") { e.className = "tun"; } else if (e.className == "ph1") { e.className = "pover1"; } else if (e.className == "ph2") { e.className = "pover2"; } else if (e.className == "pover1") { e.className = "ph1"; } else if (e.className == "pover2") { e.className = "ph2"; } } var highlight_str1 = "<table id=\""; var highlight_str2 = "Table\" border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\"><tr><td width=\"11\" style=\"vertical-align:top; text-align:right\"><img height=\"17\" width=\"11\" src=\"/LAND/common/images/restab_leftcorner.gif\"/></td><td class=\"tsel\"><font face=\"Verdana,Helvetica,Arial\">"; var highlight_str3 = "</font></td><td width=\"11\" style=\"vertical-align:top; text-align:left\"><img height=\"17\" width=\"11\" src=\"/LAND/common/images/restab_rightcorner.gif\"/></td></tr></table>"; function highlightTab(name) { document.getElementById("DescriptionTab").innerHTML = "Description"; document.getElementById("SpatialTab").innerHTML = "Spatial"; document.getElementById("ThemesTab").innerHTML = "Themes"; document.getElementById(name + "Tab").innerHTML = highlight_str1 + name + highlight_str2 + name + highlight_str3; } function changeTab(newPageTabID) { var selTable = document.getElementById("SelectTable"); var selRows = selTable.tBodies[0].rows[0].cells; var lastPageTab for (var i = 0; i < selRows.length; i++) { lastPageTab = selRows[i]; if (lastPageTab.className == "tsel") { break; } } lastPageTab.className = "tun"; var newPageTab = document.getElementById(newPageTabID); newPageTab.className ="tsel"; var lastPage = document.getElementById(lastPageTab.id.substring(0, lastPageTab.id.indexOf('Tab'))); var newPage = document.getElementById(newPageTab.id.substring(0, newPageTab.id.indexOf('Tab'))); // hide old page // show new page // highlight tab of new page lastPage.style.display = "none"; newPage.style.display = "block"; highlightTab(newPage.id); } with (document) { write("<STYLE TYPE='text/css'>"); if (NS4) { write(".parent {position:absolute; visibility:hidden}"); write(".child {position:absolute; visibility:hidden}"); write(".regular {position:absolute; visibility:hidden}"); } else { write(".child {display: none; margin-left:0.2in; color:#2E8B57; font-weight:bold; cursor:}"); } write("</STYLE>"); } onload = initIt; --> </SCRIPT> <NOSCRIPT> <center><H1>Javascript must be enabled plus Netscape 6+ or Internet Explorer 5+ to properly view this page.</H1></center> </NOSCRIPT> </HEAD> <BODY onload="initIt()"> <a name="top"></a> <H1>SaskAdmin_2012_INDIAN_RESERVE</H1> <font size="2" face="Verdana,Arial,Helvetica" color="#004031"> <h2>Select a "Description", "Spatial", or "Themes" tab or a paragraph <DIV class="icon">»</DIV>  to see more.</h2> </font> <H2>Shapefile </H2> <TABLE class="header" ID="SelectTable" border="0" cellspacing="0" cellpadding="0" frame="void"> <TR> <TD ID="DescriptionTab" CLASS="tsel" width="105" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="changeTab(this.id)" TITLE="Click to see a description of the data"> <table id="DescriptionTabTable" border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td width="11" style="vertical-align:top; text-align:right"><img height="17" width="11" src="/LAND/common/images/restab_leftcorner.gif" /></td> <td class="tsel">Description</td> <td width="11" style="vertical-align:top; text-align:left"><img height="17" width="11" src="/LAND/common/images/restab_rightcorner.gif" /></td> </tr> </table> </TD> <TD ID="SpatialTab" CLASS="tun" width="105" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="changeTab(this.id)" TITLE="Click for details about the spatial data"> Spatial </TD> <TD ID="ThemesTab" CLASS="tun" width="105" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="changeTab(this.id)" TITLE="Click for details about the attribute data"> Themes </TD> </TR> </TABLE> <DIV ID="Group" CLASS="frameborder"> <DIV ID="Description" CLASS="pv" STYLE="display:block"> <BR /> <IMG ID="thumbnail" ALIGN="absmiddle" STYLE="height:144; border:'2 outset #FFFFFF'; position:relative" SRC="SaskAdmin_2012_INDIAN_RESERVE.shp0.bmp" /> <BR /><BR /> <SPAN CLASS="pn">Keywords</SPAN> <DIV STYLE="margin-left:0.2in" CLASS="lt2"><SPAN CLASS="pn">Theme: </SPAN> Municipal Limits, Dominion Land Survey System, Parks, Indian Reserves, Rural Municipality, Urban Municipality, Cities, Towns, Village, Organized Hamlet, INDIAN_RESERVE</DIV> <SPAN STYLE="margin-left:0.2in" CLASS="lt2"><SPAN CLASS="pn">Place: </SPAN> Saskatchewan, Canada, North America</SPAN> <BR /> <BR /> <SPAN CLASS="pn">Description</SPAN> <DIV CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV class="icon" id="Desc_AbstractIcon">-</DIV>  Abstract <DIV CLASS="pe2" STYLE="display:block"> <SPAN CLASS="lt">The Indian_Reserve layer, as part of the Saskatchewan Administrative Boundary data set, contains the annual copy of the GIS layer taken from Information Services Corporation of Saskatchewans live geospatial database at the end of each calendar year. The data is comprised of geospatial locations and attributional information for all of the Canadian federal Indian reserves that reside within the province of Saskatchewan. The layer identifies each Indian reserve by name, location and number. This data is suitable for use in Geographic Information Systems (GIS) and Computer Aided Drawing Systems (CAD).</SPAN><BR /> </DIV> </DIV> <DIV CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Desc_PurposeIcon" class="icon">-</DIV>  Purpose <DIV ID="Purpose" CLASS="pe2" STYLE="display:block"> <SPAN CLASS="lt">The Saskatchewan Administrative Boundary data set is distributed as the annual release of the provincial boundary as well as all provincial/national parks, rural municipalities, urban municipalities and Indian reserves that reside within the province of Saskatchewan. The data set is produced from Information Services Corporations live integrated geospatial database at of the end of each calendar year and is produced in conjunction with the SaskGIS Cadastral and SaskGrid TFM data sets.</SPAN><BR /> </DIV> </DIV> <DIV CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Desc_SuppIcon" class="icon">-</DIV>  Supplementary Information <DIV CLASS="pe2" STYLE="display:block"> <SPAN CLASS="lt">Questions on product may be directed to Pat Pierce ( (306) 787-0256 or Pat.Pierce@isc.ca) or Perry Frischholz ( (306) 787-0665 or Perry.Frischholz@isc.ca).</SPAN><BR /> </DIV> </DIV> <DIV CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)">Links to graphics describing the data <DIV CLASS="pe2" STYLE="display:block; position:relative; top:-15; margin-left:-0.05in"> <UL><LI> N/A (JPEG): <A TARGET="viewer" HREF="https://www.geosask.ca/Portal/publisher_images/ISC_SASKGRID_SASKADMIN_THUMBNAILS/INDIAN_RESERVE.JPG">https://www.geosask.ca/Portal/publisher_images/ISC_SASKGRID_SASKADMIN_THUMBNAILS/INDIAN_RESERVE.JPG</A> </LI> </UL> </DIV> </DIV> <center><SPAN STYLE="text-align:center; color:#6495ED">_________________</SPAN></center><BR /> <DIV CLASS="ph1" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Desc_datastatusIcon" class="icon">»</DIV>  Status of the data <DIV CLASS="pe2" STYLE="display:none"> <SPAN STYLE="margin-left:0.2in">Complete</SPAN><BR /> <I>Data update frequency: </I> Annually<BR /></DIV> </DIV> <BR /> <DIV CLASS="ph1" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Desc_timeperiodIcon" class="icon">»</DIV>  Time period for which the data is relevant <DIV CLASS="pe2" STYLE="display:none"> <DIV><I>Beginning date and time: </I> January 13th, 2012 </DIV> <DIV><I>Ending date and time: </I> January 13th, 2013 </DIV> <I>Description: </I> <SPAN CLASS="lt">The data is produced yearly from Information Services Corporation's live integrated geospatial database each calendar year in January.</SPAN><BR /> </DIV> </DIV> <BR /> <DIV CLASS="ph1" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Desc_pubinfoIcon" class="icon">»</DIV>  Publication Information <DIV CLASS="pe2" STYLE="display:none"><SPAN CLASS="lt2"> <I>Who created the data: </I>Information Services Corporation of Saskatchewan<BR /></SPAN> <I>Date and time: </I> 2012-01-13<BR /><I>Publisher and place: </I> <DIV STYLE="margin-left:0.2in"> Information Services Corporation of Saskatchewan, Regina, Saskatchewan, Canada </DIV> </DIV> </DIV> <center><SPAN STYLE="text-align:center; color:#6495ED">_________________</SPAN></center><BR /> <DIV ID="Desc_DataStorage" CLASS="ph1" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Desc_DataStorageIcon" class="icon">»</DIV>  Data storage and access information</DIV> <DIV ID="Desc_DataStorageChild" CLASS="pe2" STYLE="display:none"> <I>File name: </I>SaskAdmin_2012_INDIAN_RESERVE<BR /> <I>Type of data: </I>vector digital data<BR /> <I>Location of the data: </I> <LI STYLE="margin-left:0.2in"> <a href="ftp://portaldata:freedata@ftp.isc.ca/PackagedData/SaskAdmin2012/SaskAdmin_2012_INDIAN_RESERVE.zip"> ftp://portaldata:freedata@ftp.isc.ca/PackagedData/SaskAdmin2012/SaskAdmin_2012_INDIAN_RESERVE.zip </a> </LI> <I>Data processing environment: </I><SPAN CLASS="lt">Microsoft Windows XP Version 5.1 (Build 2600) Service Pack 3; ESRI ArcCatalog 9.2.6.1500</SPAN><BR /> <DIV CLASS="ph1" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Desc_AccessingDataChildIcon" class="icon">»</DIV>  Accessing the data <DIV CLASS="pe2" STYLE="display:none"> <I>Data format: </I>SHP<BR /> <I>Size of the data: </I>7.563 MB<BR /> <I>Data transfer size: </I>7.563 MB<BR /> <DIV CLASS="pe2"><I>Access instructions: </I>See the pre-packaged gallery at www.geosask.ca or contact the ISC Geomatics Distribution Centre for further assistance Toll Free at 1-866-420-6577 or (306) 787-6577 (Regina) or by email at saskmaps@isc.ca</DIV> <I>Available media: </I>DVD-ROM/CD-ROM<BR /><I>Available media: </I>Digital Download<BR /><BR /> </DIV> </DIV> <DIV CLASS="ph1" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Desc_AccessingDataChildIcon" class="icon">»</DIV>  Accessing the data <DIV CLASS="pe2" STYLE="display:none"> <I>Data format: </I>DXF<BR /> <I>Size of the data: </I>7.563 MB<BR /> <I>Data transfer size: </I>7.563 MB<BR /> <DIV CLASS="pe2"><I>Access instructions: </I>See the pre-packaged gallery at www.geosask.ca or contact the ISC Geomatics Distribution Centre for further assistance Toll Free at 1-866-420-6577 or (306) 787-6577 (Regina) or by email at saskmaps@isc.ca</DIV> <I>Available media: </I>DVD-ROM/CD-ROM<BR /><I>Available media: </I>Digital Download<BR /><BR /> </DIV> </DIV> <DIV CLASS="ph1" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Desc_ConstraintsChildIcon" class="icon">»</DIV>  Constraints on accessing and using the data <DIV CLASS="pe2" STYLE="display:none"> <I>Access constraints: </I> <DIV STYLE="margin-left:0.2in" CLASS="lt">The data set is licensed for use with no restrictions on who may obtain a license.</DIV> <I>Use constraints: </I> <DIV STYLE="margin-left:0.2in" CLASS="lt">The standard license for this data prohibits redistribution of the data in whole or in part. A resale license is available. There are some restrictions (designed to preserve the integrity of the data) on the presentation of the information as maps on a web site and on the distribution of products derived from this data.</DIV> </DIV> </DIV> </DIV> <BR /> <DIV ID="Desc_DocDetails" CLASS="ph1" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Desc_DocDetailsIcon" class="icon">»</DIV>  Details about this document</DIV> <DIV ID="Desc_DocDetailsChild" CLASS="pe2" STYLE="display:none"> <i>Contents last updated</i>: 20120125 <i>at time</i> 11254500 <i>Contents last reviewed</i>: 2012-01-01 <i>Contents to be reviewed</i>: Annually or as required <DIV CLASS="ph1" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Desc_WhoCompletedChildIcon" class="icon">»</DIV>  Who completed this document <DIV CLASS="pe2" STYLE="display:none"> <SPAN STYLE="margin-left:0.3in">Rick Knorr - Team Lead, GIS Data</SPAN><BR /> <SPAN STYLE="margin-left:0.3in">Information Services Corporation of Saskatchewan</SPAN><BR /> <I>Mailing and Physical Address:</I><BR /><DIV STYLE="margin-left:0.3in"> <DIV CLASS="lt"> 1301 1st Avenue </DIV> <DIV> Regina, Saskatchewan S4R 8H2</DIV> <DIV>Canada</DIV></DIV> <BR /> <SPAN STYLE="margin-left:0.3in">1-800-ASK-ISC1 (voice)</SPAN><BR /> <SPAN STYLE="margin-left:0.3in">(306) 787-3335 (fax)</SPAN><BR /><SPAN STYLE="margin-left:0.3in">saskmaps@isc.ca</SPAN><BR /><BR /> <DIV><I>Hours of service:</I> 8:00 A.M. to 5:00 P.M. CST Monday through Friday</DIV><DIV><I>Contact Instructions:</I></DIV> <DIV STYLE="margin-left:0.3in"> Please use the above contact for any question on the MetaData content or product content. </DIV> <BR /> </DIV> </DIV> <DIV CLASS="ph1" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Desc_StandardsUsedChildIcon" class="icon">»</DIV>  Standards used to create this document <DIV CLASS="pe2" STYLE="display:none"> <I>Standard name: </I>FGDC Content Standards for Digital Geospatial Metadata<BR /> <I>Standard version: </I>FGDC-STD-001-1998<BR /> <I>Time convention used in this document: </I>local time<BR /> Metadata profiles defining additional information<LI STYLE="margin-left:0.2in"> ESRI Metadata Profile: <A TARGET="viewer" HREF="http://www.esri.com/metadata/esriprof80.html">http://www.esri.com/metadata/esriprof80.html </A> </LI> </DIV> </DIV> </DIV> <BR /> <DIV CLASS="ph1" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Desc_DataQualityIcon" class="icon">»</DIV>  Data Quality <DIV CLASS="pe2" STYLE="display:none"> <dl> <DT><B>Attribute Accuracy:</B></DT> <DD> <DL> <DT><I>Attribute Accuracy Report:</I></DT> <DD>Attributes have been created by two means, depending on the attribute. Some, like the PPID, are generated by the system according to a set of rules. Others, have been manually entered (transcribed) from the source documents. Transcribed values are checked manually on a sampling basis to identify errors. As well external sources of information have been used to validate the values wherever possible. There is no independent quantification of the accuracy rate for the attribute values but it is believed to be very good.</DD> <BR /> </DL> </DD> </dl> <BR /> <dl> <DT><B>Logical Consistency Report:</B></DT> <DD>The data is free of duplicates and overlapping features.</DD> </dl> <BR /> <dl> <DT><B>Completeness Report:</B></DT> <DD>The data is complete as of the production date for the current year (January 10th). Any changes made after the production date will be reflected in the following year's release.</DD> </dl> <BR /> <DL> <DT><B>Positional Accuracy:</B></DT> <DT> <dl> <DT><I>Horizontal Positional Accuracy:</I></DT> <DD> <DL> <DT><I>Horizontal Positional Accuracy Report:</I></DT> <DD>The positions in this data set are correct to within 5-10 metres in the rural portions of the province and to within 1-2 metres in the urban portions. The relative accuracies are better than 5 metres in the rural areas and 1 metre in the urban areas for points that are near each other. The relative accuracies decrease as the distance between points increases.</DD> </DL> <DL> <DD> <DL> <DT><I>Horizontal Positional Accuracy Value:</I> varies</DT> </DL> <DL> <DT><I>Horizontal Positional Accuracy Explanation:</I></DT> <DD>The accuracy of the coordinate varies with the age of the survey, the quality of the survey and the quality of the control in the area of the survey. There has been no attempt to quantify these contributing factors. The coordinates were calculated using ties to geodetic control and information shown on legal plans of survey. If the error between the various plans was within acceptable limits, the least squares adjustment method was applied to the data so as to manipulate it into the fabric. Where the error between plans was deemed unacceptable according to tolerance standards, other sources of information were used for adjustment, including but not limited to, historical survey plans, field measurements and aerial photographs.</DD> </DL> </DD> </DL> </DD> </dl> </DT> <DT> <dl> <DT><I>Vertical Positional Accuracy:</I></DT> <DD> <DL> <DT><I>Vertical Positional Accuracy Report:</I></DT> <DD>N/A</DD> </DL> <DL> </DL> </DD> </dl> </DT> </DL> <dl> <DT><B>Lineage:</B></DT> <DD> <DL> <dt> <DL> </DL> </dt> <dt> <DL> <DT><I>Process Step:</I></DT> <DD> <DL> <DT><I>Process Description:</I></DT> <DD>Metadata imported.</DD> <DT><I>Source Used Citation Abbreviation:</I></DT> <DD>S:\GDC\MetaData\SaskAdmin\SaskAdmin2012\SaskAdmin2012\SaskAdmin2012_Metadata\SaskAdmin_2012_INDIAN_RESERVE.shp.xml</DD> </DL> </DD> </DL> </dt> </DL> </DD> </dl> </DIV> </DIV> </DIV> <DIV ID="Spatial" class="pv" STYLE="display:none"><BR /> <DIV CLASS="pn">Horizontal coordinate system</DIV> <DIV STYLE="margin-left:0.2in"><I>Projected coordinate system name: </I>NAD_1983_CSRS98_UTM_Zone_13N</DIV> <DIV STYLE="margin-left:0.2in"><I>Geographic coordinate system name: </I>GCS_North_American_1983_CSRS98</DIV> <DIV CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Spatial_hcsIcon" class="icon">»</DIV>  Details <DIV CLASS="pe2" STYLE="display:none"> <DIV CLASS="sr1"><SPAN CLASS="pn">Map Projection Name: </SPAN>Transverse Mercator</DIV> <DIV CLASS="sr2"><I>Scale Factor at Central Meridian: </I>0.999600<BR /> <I>Longitude of Central Meridian: </I>-105.000000<BR /> <I>Latitude of Projection Origin: </I>0.000000<BR /> <I>False Easting: </I>500000.000000<BR /> <I>False Northing: </I>0.000000<BR /> </DIV> <BR /> <DIV CLASS="sr1"><SPAN CLASS="pn">Planar Coordinate Information</SPAN></DIV> <DIV CLASS="sr2"><I>Planar Distance Units: </I>meters</DIV> <DIV CLASS="sr2"><I>Coordinate Encoding Method: </I>coordinate pair</DIV> <DIV CLASS="srh2">Coordinate Representation</DIV> <DIV CLASS="sr3"><I>Abscissa Resolution: </I>0.000000</DIV> <DIV CLASS="sr3"><I>Ordinate Resolution: </I>0.000000</DIV> <BR /> <DIV CLASS="srh1">Geodetic Model</DIV> <DIV CLASS="sr2"><I>Horizontal Datum Name: </I>D_North_American_1983_CSRS98</DIV> <DIV CLASS="sr2"><I>Ellipsoid Name: </I>Geodetic Reference System 80</DIV> <DIV CLASS="sr2"><I>Semi-major Axis: </I>6378137.000000</DIV> <DIV CLASS="sr2"><I>Denominator of Flattening Ratio: </I>298.257222</DIV> </DIV> </DIV> <BR /> <DIV CLASS="srh1">Altitude System Definition</DIV> <DIV CLASS="sr2"><I>Datum Name: </I>N/A</DIV> <DIV CLASS="sr2"><I>Resolution: </I>N/A</DIV> <DIV CLASS="sr2"><I>Distance Units: </I>N/A</DIV> <DIV CLASS="sr2"><I>Encoding Method: </I>N/A</DIV> <BR /> <DIV CLASS="srh1">Depth System Definition</DIV> <DIV CLASS="sr2"><I>Datum Name: </I>N/A</DIV> <DIV CLASS="sr2"><I>Resolution: </I>N/A</DIV> <DIV CLASS="sr2"><I>Distance Units: </I>N/A</DIV> <DIV CLASS="sr2"><I>Encoding Method: </I>N/A</DIV> <center><SPAN STYLE="text-align:center; color:#6495ED">_________________</SPAN></center><BR /> <DIV CLASS="pn">Bounding coordinates</DIV> <DIV STYLE="margin-left:0.2in" CLASS="pn">Horizontal</DIV> <DIV STYLE="margin-left:0.4in" CLASS="pn">In decimal degrees</DIV> <DIV STYLE="margin-left:0.6in"><I>West: </I> -111.351001</DIV> <DIV STYLE="margin-left:0.6in"><I>East: </I> -100.829273</DIV> <DIV STYLE="margin-left:0.6in"><I>North: </I> 59.492769</DIV> <DIV STYLE="margin-left:0.6in"><I>South: </I> 49.150592</DIV> <DIV STYLE="margin-left:0.4in" CLASS="pn">In projected or local coordinates</DIV> <DIV STYLE="margin-left:0.6in"><I>Left: </I>139058.620000</DIV> <DIV STYLE="margin-left:0.6in"><I>Right: </I>736549.470000</DIV> <DIV STYLE="margin-left:0.6in"><I>Top: </I>6594924.180000</DIV> <DIV STYLE="margin-left:0.6in"><I>Bottom: </I>5456005.700000</DIV> <center><SPAN STYLE="text-align:center; color:#6495ED">_________________</SPAN></center><BR /> <SPAN CLASS="pn">Spatial data quality</SPAN> <DIV CLASS="ph2" STYLE="margin-left:0.2in" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Spatial_hpaIcon" class="icon">»</DIV>  Horizontal positional accuracy <DIV CLASS="pe2" STYLE="margin-left:0.2in; display:none"> <SPAN CLASS="lt">The positions in this data set are correct to within 5-10 metres in the rural portions of the province and to within 1-2 metres in the urban portions. The relative accuracies are better than 5 metres in the rural areas and 1 metre in the urban areas for points that are near each other. The relative accuracies decrease as the distance between points increases.</SPAN> <BR /><SPAN STYLE="margin-left:0.2in"><I>Estimated accuracy: </I>varies</SPAN> <DIV STYLE="margin-left:0.2in"><I>How this value was determined: </I> <DIV STYLE="margin-left:0.2in" CLASS="lt">The accuracy of the coordinate varies with the age of the survey, the quality of the survey and the quality of the control in the area of the survey. There has been no attempt to quantify these contributing factors. The coordinates were calculated using ties to geodetic control and information shown on legal plans of survey. If the error between the various plans was within acceptable limits, the least squares adjustment method was applied to the data so as to manipulate it into the fabric. Where the error between plans was deemed unacceptable according to tolerance standards, other sources of information were used for adjustment, including but not limited to, historical survey plans, field measurements and aerial photographs.</DIV> </DIV> </DIV> </DIV> <BR /> <DIV CLASS="ph2" STYLE="margin-left:0.2in" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Spatial_vpaIcon" class="icon">»</DIV>  Vertical positional accuracy <DIV CLASS="pe2" STYLE="margin-left:0.2in; display:none"> <SPAN CLASS="lt">N/A</SPAN> </DIV> </DIV> <center><SPAN STYLE="text-align:center; color:#6495ED">_________________</SPAN></center><BR /> <SPAN CLASS="pn">Spatial data description</SPAN><BR /> <SPAN CLASS="pn" STYLE="margin-left:0.2in">Vector data information</SPAN> <DIV STYLE="margin-left:0.4in" CLASS="pn">ESRI description</DIV> <DIV CLASS="ph2" STYLE="margin-left:0.6in" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"> SaskAdmin_2012_INDIAN_RESERVE <DIV CLASS="pe2" STYLE="display:none"> <I>ESRI feature type: </I>Simple<BR /> <I>Geometry type: </I>Polygon<BR /> <I>Topology: </I>FALSE<BR /> <I>Feature count: </I>700<BR /> <I>Spatial Index: </I>FALSE<BR /> <I>Linear referencing: </I>FALSE<BR /> <BR /> </DIV> </DIV> <BR /> <DIV CLASS="ph2" STYLE="margin-left:0.4in" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"><DIV id="Spatial_sdts_descIcon" class="icon">»</DIV>  SDTS description <DIV CLASS="pe2" STYLE="display:none"> <DIV>Feature class: SDTS feature type, feature count</DIV> <DIV STYLE="margin-left:0.2in"> <LI> SaskAdmin_2012_INDIAN_RESERVE: G-polygon, 700 </LI> </DIV> </DIV> </DIV> </DIV> <DIV ID="Themes" class="pv" STYLE="display:none"><BR /> <DIV class="ph1" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)" id="Attrib_SaskAdmin_2012_INDIAN_RESERVE"> <DIV class="icon" id="Attrib_SaskAdmin_2012_INDIAN_RESERVEIcon">»</DIV> SaskAdmin_2012_INDIAN_RESERVE </DIV> <DIV STYLE="margin-left:0.2in"><I>Type of object: </I>Feature Class</DIV> <DIV STYLE="margin-left:0.2in"><I>Number of records: </I>700</DIV> <DIV CLASS="pe2" STYLE="display:block; margin-left:0.5in"> <SPAN CLASS="lt">The Indian_Reserve feature layer is comprised of geospatial locations and attributional information for all of the Canadian federal Indian reserves that reside within the province of Saskatchewan.</SPAN> <BR /> </DIV> <DIV CLASS="pe2" style="display:none;margin-left:0.25in" id="Attrib_SaskAdmin_2012_INDIAN_RESERVEChild"> <DIV STYLE="margin-left:0.25in" CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"> <DIV class="icon" id="2Attrib_FIDChildIcon">»</DIV> FID <DIV class="pe2" id="alwayson" style="margin-left:0.5in"><SPAN CLASS="lt">Internal feature number.</SPAN></DIV> <DIV CLASS="pe2" STYLE="display:none" style="margin-left:0.5in" id="2Attrib_FIDChild"> <I>Precision: </I>0<BR /> <I>Scale: </I>0<BR /> <table border="0"> <tr> <th class="THLeft" width="120">Field Type:</th> <td class="TDLeft">OID</td> </tr> <tr> <th class="THLeft" width="120">Field Width:</th> <td class="TDLeft">4</td> </tr> <tr> <th class="THLeft" style="vertical-align: top">Domain:</th> <td class="TDLeft" style="vertical-align: top">Sequential unique whole numbers that are automatically generated.</td> </tr> </table> </DIV> </DIV> <DIV STYLE="margin-left:0.25in" CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"> <DIV class="icon" id="2Attrib_ShapeChildIcon">»</DIV> Shape <DIV class="pe2" id="alwayson" style="margin-left:0.5in"><SPAN CLASS="lt">Feature geometry.</SPAN></DIV> <DIV CLASS="pe2" STYLE="display:none" style="margin-left:0.5in" id="2Attrib_ShapeChild"> <I>Precision: </I>0<BR /> <I>Scale: </I>0<BR /> <table border="0"> <tr> <th class="THLeft" width="120">Field Type:</th> <td class="TDLeft">Geometry</td> </tr> <tr> <th class="THLeft" width="120">Field Width:</th> <td class="TDLeft">0</td> </tr> <tr> <th class="THLeft" style="vertical-align: top">Domain:</th> <td class="TDLeft" style="vertical-align: top">Coordinates defining the features.</td> </tr> </table> </DIV> </DIV> <DIV STYLE="margin-left:0.25in" CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"> <DIV class="icon" id="2Attrib_PPIDChildIcon">»</DIV> PPID <DIV class="pe2" id="alwayson" style="margin-left:0.5in"><SPAN CLASS="lt">Permanent Provincial Identifier. Unique identifier. No other instance of this or any other type of object will have the same ID. Used for change detection and notification and for linking external information to this object.</SPAN></DIV> <DIV CLASS="pe2" STYLE="display:none" style="margin-left:0.5in" id="2Attrib_PPIDChild"> <table border="0"> <tr> <th class="THLeft" width="120">Field Type:</th> <td class="TDLeft">String</td> </tr> <tr> <th class="THLeft" width="120">Field Width:</th> <td class="TDLeft">10</td> </tr> <tr> <th class="THLeft">Domain:</th> <td class="TDLeft">From 0117000001 to 0117ZZZZZZ</td> </tr> </table> </DIV> </DIV> <DIV STYLE="margin-left:0.25in" CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"> <DIV class="icon" id="2Attrib_EFFDTChildIcon">»</DIV> EFFDT <DIV class="pe2" id="alwayson" style="margin-left:0.5in"><SPAN CLASS="lt">Effective Date - Date Last Altered</SPAN></DIV> <DIV CLASS="pe2" STYLE="display:none" style="margin-left:0.5in" id="2Attrib_EFFDTChild"> <table border="0"> <tr> <th class="THLeft" width="120">Field Type:</th> <td class="TDLeft">Date</td> </tr> <tr> <th class="THLeft" style="vertical-align: top">Domain:</th> <td class="TDLeft" style="vertical-align: top">Date coded as a character string in the format "MM/DD/YYYY". Leading zeros are included where required.</td> </tr> </table> </DIV> </DIV> <DIV STYLE="margin-left:0.25in" CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"> <DIV class="icon" id="2Attrib_EXPDTChildIcon">»</DIV> EXPDT <DIV class="pe2" id="alwayson" style="margin-left:0.5in"><SPAN CLASS="lt">The date this object was removed from the data base. If the expiry date is null the object is currently active. (Objects are not physically removed but only have their expiry date set.)</SPAN></DIV> <DIV CLASS="pe2" STYLE="display:none" style="margin-left:0.5in" id="2Attrib_EXPDTChild"> <table border="0"> <tr> <th class="THLeft" width="120">Field Type:</th> <td class="TDLeft">Date</td> </tr> <tr> <th class="THLeft" style="vertical-align: top">Domain:</th> <td class="TDLeft" style="vertical-align: top">Date coded as a character string in the format "MM/DD/YYYY". Leading zeros are included where required.</td> </tr> </table> </DIV> </DIV> <DIV STYLE="margin-left:0.25in" CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"> <DIV class="icon" id="2Attrib_FEATURECDChildIcon">»</DIV> FEATURECD <DIV class="pe2" id="alwayson" style="margin-left:0.5in"><SPAN CLASS="lt">Feature Code</SPAN></DIV> <DIV CLASS="pe2" STYLE="display:none" style="margin-left:0.5in" id="2Attrib_FEATURECDChild"> <table border="0"> <tr> <th class="THLeft" width="120">Field Type:</th> <td class="TDLeft">String</td> </tr> <tr> <th class="THLeft" width="120">Field Width:</th> <td class="TDLeft">12</td> </tr> <tr> <th class="THLeft">Domain:</th> <th class="THLeft">Value</th> <th class="THLeft">Description</th> </tr> <tr> <th class="THLeft"> </th> <td class="TDLeft" style="vertical-align: top">IRPPID</td> <td class="TDLeft">Indian Reserve PPID</td> </tr> </table> </DIV> </DIV> <DIV STYLE="margin-left:0.25in" CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"> <DIV class="icon" id="2Attrib_IRNOChildIcon">»</DIV> IRNO <DIV class="pe2" id="alwayson" style="margin-left:0.5in"><SPAN CLASS="lt">Indian Reserve Number</SPAN></DIV> <DIV CLASS="pe2" STYLE="display:none" style="margin-left:0.5in" id="2Attrib_IRNOChild"> <table border="0"> <tr> <th class="THLeft" width="120">Field Type:</th> <td class="TDLeft">String</td> </tr> <tr> <th class="THLeft" width="120">Field Width:</th> <td class="TDLeft">12</td> </tr> </table> </DIV> </DIV> <DIV STYLE="margin-left:0.25in" CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"> <DIV class="icon" id="2Attrib_IRNMChildIcon">»</DIV> IRNM <DIV class="pe2" id="alwayson" style="margin-left:0.5in"><SPAN CLASS="lt">Indian Reserve Name</SPAN></DIV> <DIV CLASS="pe2" STYLE="display:none" style="margin-left:0.5in" id="2Attrib_IRNMChild"> <table border="0"> <tr> <th class="THLeft" width="120">Field Type:</th> <td class="TDLeft">String</td> </tr> <tr> <th class="THLeft" width="120">Field Width:</th> <td class="TDLeft">60</td> </tr> </table> </DIV> </DIV> <DIV STYLE="margin-left:0.25in" CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"> <DIV class="icon" id="2Attrib_IRBANDNAMEChildIcon">»</DIV> IRBANDNAME <DIV class="pe2" id="alwayson" style="margin-left:0.5in"><SPAN CLASS="lt">Indian Reserve Band Name</SPAN></DIV> <DIV CLASS="pe2" STYLE="display:none" style="margin-left:0.5in" id="2Attrib_IRBANDNAMEChild"> <table border="0"> <tr> <th class="THLeft" width="120">Field Type:</th> <td class="TDLeft">String</td> </tr> <tr> <th class="THLeft" width="120">Field Width:</th> <td class="TDLeft">60</td> </tr> </table> </DIV> </DIV> <DIV STYLE="margin-left:0.25in" CLASS="ph2" onmouseover="doHilite(this)" onmouseout="doHilite(this)" onclick="expandIt(this)"> <DIV class="icon" id="2Attrib_IRBANDNUMChildIcon">»</DIV> IRBANDNUM <DIV class="pe2" id="alwayson" style="margin-left:0.5in"><SPAN CLASS="lt">Indian Reserve Band Number</SPAN></DIV> <DIV CLASS="pe2" STYLE="display:none" style="margin-left:0.5in" id="2Attrib_IRBANDNUMChild"> <table border="0"> <tr> <th class="THLeft" width="120">Field Type:</th> <td class="TDLeft">String</td> </tr> <tr> <th class="THLeft" width="120">Field Width:</th> <td class="TDLeft">12</td> </tr> </table> </DIV> </DIV> </DIV> </DIV> </DIV> <style> .modFtrTd { PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-SIZE: 10px; PADDING-BOTTOM: 4px; COLOR: #ffffff; PADDING-TOP: 4px; BACKGROUND-COLOR: #004c40; VERTICAL-ALIGN: middle; } </style> <table width="100%" border="0" cellspacing="0" cellpadding="0" id="Table1"> <tr> <td class="modFtrTd" align="right" nowrap="nowrap" style="text-align:right"><p class="copyright">Copyright © 2010 Information Services Corporation</p></td> <td class="modFtrTd"><img src="/images/pxl_trans.gif" width="5" height="1" alt="" border="0" /></td> </tr> </table> </BODY> </HTML>