1 00:00:00,900 --> 00:00:01,733 - [Instructor] Hi, 2 00:00:01,733 --> 00:00:04,440 and welcome to module three of Advanced GIS. 3 00:00:04,440 --> 00:00:06,110 This sequence of lectures differentiates 4 00:00:06,110 --> 00:00:08,810 between overlay and data aggregation strategies 5 00:00:08,810 --> 00:00:12,120 and identifies approaches for developing composite datasets, 6 00:00:12,120 --> 00:00:14,053 both Vector and Raster. 7 00:00:16,420 --> 00:00:18,390 We'll focus on both Vector and Raster data 8 00:00:18,390 --> 00:00:19,770 in this lecture sequence, 9 00:00:19,770 --> 00:00:22,060 and look at alternative Geoprocessing operations 10 00:00:22,060 --> 00:00:24,130 for putting data together. 11 00:00:24,130 --> 00:00:25,060 On the Vector side, 12 00:00:25,060 --> 00:00:27,770 we have options including Merge or append. 13 00:00:27,770 --> 00:00:29,640 I include Union in this list of options 14 00:00:29,640 --> 00:00:30,940 to highlight the fact that it is not 15 00:00:30,940 --> 00:00:32,930 the correct tool for the job. 16 00:00:32,930 --> 00:00:35,240 Hopefully, this will be born out in the examples, 17 00:00:35,240 --> 00:00:36,073 but if not, 18 00:00:36,073 --> 00:00:38,127 let's keep that conversation going on (indistinct). 19 00:00:39,010 --> 00:00:40,940 As far as Raster data are concerned, 20 00:00:40,940 --> 00:00:43,180 our options are a bit more limited. 21 00:00:43,180 --> 00:00:46,410 We can create a Mosaic dataset and add Rasters to it, 22 00:00:46,410 --> 00:00:49,980 or we can append data to an existing Raster dataset, 23 00:00:49,980 --> 00:00:51,720 those are the options. 24 00:00:51,720 --> 00:00:52,640 Note the append tool 25 00:00:52,640 --> 00:00:55,513 can accommodate both Vector and Raster datasets. 26 00:00:56,840 --> 00:00:58,290 Let's start with Vector data. 27 00:00:59,819 --> 00:01:02,619 And a quick review of the Union Geoprocessing operation. 28 00:01:03,890 --> 00:01:07,400 Union tool computes a geometric Union of the input features 29 00:01:07,400 --> 00:01:10,180 and creates a new feature class of the resulting feature, 30 00:01:10,180 --> 00:01:12,330 plus; and this is important here, 31 00:01:12,330 --> 00:01:13,893 all the input attributes. 32 00:01:14,820 --> 00:01:17,200 The Union tool can only use polygon data 33 00:01:17,200 --> 00:01:19,920 and only requires a single dataset to Run, 34 00:01:19,920 --> 00:01:22,630 that last part might be a bit confusing. 35 00:01:22,630 --> 00:01:24,760 But think of the case where you have a polygon dataset 36 00:01:24,760 --> 00:01:26,970 that has overlapping polygons. 37 00:01:26,970 --> 00:01:28,960 If you want to break those overlaps down, 38 00:01:28,960 --> 00:01:31,210 the Union tool would be the correct approach. 39 00:01:32,120 --> 00:01:33,630 Most important to consider here 40 00:01:33,630 --> 00:01:36,080 is that this is an overlay operation, 41 00:01:36,080 --> 00:01:39,770 it's meant to be used on data that overlap one another. 42 00:01:39,770 --> 00:01:41,820 So how does it work? 43 00:01:41,820 --> 00:01:43,670 It's a four-step process. 44 00:01:43,670 --> 00:01:46,230 First, the algorithm determines the spatial reference 45 00:01:46,230 --> 00:01:48,250 to be used in the analysis. 46 00:01:48,250 --> 00:01:49,640 This comes from the first input 47 00:01:49,640 --> 00:01:52,060 in the list of input datasets. 48 00:01:52,060 --> 00:01:55,040 Then it cracks and clusters the features. 49 00:01:55,040 --> 00:01:56,710 Cracking means that anywhere two lines 50 00:01:56,710 --> 00:01:58,300 from different polygons intersect, 51 00:01:58,300 --> 00:01:59,890 it's going to break those polygons 52 00:01:59,890 --> 00:02:01,880 at those intersection points. 53 00:02:01,880 --> 00:02:04,500 Then those point locations are evaluated 54 00:02:04,500 --> 00:02:06,750 against the cluster-tolerance parameter. 55 00:02:06,750 --> 00:02:08,390 And if they're too close, 56 00:02:08,390 --> 00:02:10,630 fall within a certain threshold, 57 00:02:10,630 --> 00:02:12,280 they're closer to a single point. 58 00:02:13,860 --> 00:02:16,310 Next, the overlaps are identified, 59 00:02:16,310 --> 00:02:17,143 in other words, 60 00:02:17,143 --> 00:02:19,690 ArcGIS discovers the geometric relationships 61 00:02:19,690 --> 00:02:21,793 between or among the different input data. 62 00:02:22,840 --> 00:02:25,763 Lastly, the new features are written to an output dataset. 63 00:02:26,800 --> 00:02:28,480 We've heard the what and the how, 64 00:02:28,480 --> 00:02:31,820 now let's identify what a Union operation does not do. 65 00:02:31,820 --> 00:02:33,310 It doesn't provide you a means 66 00:02:33,310 --> 00:02:35,630 for efficiently assembling multiple datasets 67 00:02:35,630 --> 00:02:37,620 into a single dataset. 68 00:02:37,620 --> 00:02:38,453 For one thing, 69 00:02:38,453 --> 00:02:40,740 it does not let you map fields to one another, 70 00:02:40,740 --> 00:02:42,850 instead, assembling all the attributes 71 00:02:42,850 --> 00:02:44,440 from all the input datasets 72 00:02:44,440 --> 00:02:46,810 and presenting them individually. 73 00:02:46,810 --> 00:02:48,290 We'll look at the power of field mapping 74 00:02:48,290 --> 00:02:49,483 here in a few minutes. 75 00:02:50,600 --> 00:02:54,400 Additionally, the Union tool cannot accommodate Raster data. 76 00:02:54,400 --> 00:02:57,023 It's a Vector only Geoprocessing operation. 77 00:02:59,981 --> 00:03:01,400 One of the parameters of the Union tool 78 00:03:01,400 --> 00:03:03,100 I did not introduce previously 79 00:03:03,100 --> 00:03:04,313 is the gaps allowed. 80 00:03:05,290 --> 00:03:08,340 Gaps are areas that are completely enclosed by the polygons 81 00:03:08,340 --> 00:03:10,103 resulting from a Union operation. 82 00:03:11,040 --> 00:03:14,290 Let's look at the two examples here to our right. 83 00:03:14,290 --> 00:03:16,640 We have two polygon data sets as our inputs 84 00:03:16,640 --> 00:03:19,960 one shaded in green, one outlined in blue. 85 00:03:19,960 --> 00:03:21,370 If we leave the default setting 86 00:03:21,370 --> 00:03:23,070 for the gaps allowed parameter, 87 00:03:23,070 --> 00:03:26,370 no additional features are created to fill those gaps. 88 00:03:26,370 --> 00:03:28,060 We started with two polygons 89 00:03:28,060 --> 00:03:29,440 and we ended up with four 90 00:03:29,440 --> 00:03:31,513 as our output from the Union operation. 91 00:03:32,580 --> 00:03:35,580 If however you uncheck that parameter option, 92 00:03:35,580 --> 00:03:39,030 the opposite happens, the gaps are filled. 93 00:03:39,030 --> 00:03:41,610 In this case, starting with two 94 00:03:41,610 --> 00:03:44,683 but ending up with five polygons in the output dataset. 95 00:03:45,550 --> 00:03:48,060 Important to note here that the FID values 96 00:03:48,060 --> 00:03:50,830 of these polygons will be set to negative one. 97 00:03:50,830 --> 00:03:52,870 So if you wanted to have the gaps filled 98 00:03:52,870 --> 00:03:54,510 but later also want it to be able to 99 00:03:54,510 --> 00:03:58,040 identify those polygons that represent those filled gaps, 100 00:03:58,040 --> 00:03:59,090 you could perform a select 101 00:03:59,090 --> 00:04:01,570 by attributes operation to identify features 102 00:04:01,570 --> 00:04:03,993 with an FID value of negative one. 103 00:04:06,370 --> 00:04:09,880 A Merge operation combines multiple input data sets 104 00:04:09,880 --> 00:04:12,900 into a single output data set using points, 105 00:04:12,900 --> 00:04:16,180 lines or polygons as inputs. 106 00:04:16,180 --> 00:04:17,740 The output geometry type 107 00:04:17,740 --> 00:04:19,890 as well as the data types for each attribute 108 00:04:19,890 --> 00:04:22,203 are determined by the first input dataset. 109 00:04:23,670 --> 00:04:25,100 You've heard twice now the effect 110 00:04:25,100 --> 00:04:28,510 of first input data set has on the output data set. 111 00:04:28,510 --> 00:04:30,550 It's always important to think about that first 112 00:04:30,550 --> 00:04:32,790 input data set that you enter 113 00:04:32,790 --> 00:04:34,720 because a lot of information for the output 114 00:04:34,720 --> 00:04:37,173 is reliant on that input data information. 115 00:04:38,050 --> 00:04:40,800 So what doesn't Merge do ? 116 00:04:40,800 --> 00:04:42,870 well, unlike the Union tool 117 00:04:42,870 --> 00:04:46,400 the Merge tool will not split or alter the geometry. 118 00:04:46,400 --> 00:04:48,250 It does not affect the individual features 119 00:04:48,250 --> 00:04:50,350 even if they overlap one another. 120 00:04:50,350 --> 00:04:53,130 It also does not accommodate Raster data. 121 00:04:53,130 --> 00:04:54,970 I can't stress enough how important it is 122 00:04:54,970 --> 00:04:56,020 to understand the difference 123 00:04:56,020 --> 00:04:58,990 between a Union and Merge operation. 124 00:04:58,990 --> 00:05:00,820 A Union cracks features 125 00:05:00,820 --> 00:05:03,480 and creates new ones based on the spatial relationships 126 00:05:03,480 --> 00:05:05,970 between input datasets, 127 00:05:05,970 --> 00:05:07,990 the Merge tool lumps the input data sets 128 00:05:07,990 --> 00:05:09,670 together without looking more closely 129 00:05:09,670 --> 00:05:12,583 at the geometry of the individual features themselves. 130 00:05:14,110 --> 00:05:16,860 Permit me a brief aside here about field mapping, 131 00:05:16,860 --> 00:05:18,720 a parameterization you can specify 132 00:05:18,720 --> 00:05:21,480 for a limited set of Geoprocessing tools, 133 00:05:21,480 --> 00:05:24,023 I provide a short list here of the most common. 134 00:05:24,940 --> 00:05:26,080 Field mapping controls, 135 00:05:26,080 --> 00:05:29,620 how and whether fields or attributes 136 00:05:29,620 --> 00:05:33,000 are processed and mapped to an output data set. 137 00:05:33,000 --> 00:05:34,130 Like we've heard before, 138 00:05:34,130 --> 00:05:35,930 the first input data set in the list 139 00:05:35,930 --> 00:05:39,240 is the one from which that list of attributes is drawn, 140 00:05:39,240 --> 00:05:40,960 and it's the list of attributes 141 00:05:40,960 --> 00:05:42,640 to which every subsequent data set 142 00:05:42,640 --> 00:05:44,070 needs to have their fields mapped 143 00:05:44,070 --> 00:05:45,920 in order to be written to the output. 144 00:05:46,920 --> 00:05:48,970 If all the tables scheme match, 145 00:05:48,970 --> 00:05:51,060 meaning they all have the same list of attributes 146 00:05:51,060 --> 00:05:52,440 and data types, 147 00:05:52,440 --> 00:05:54,443 but not necessarily attribute values, 148 00:05:55,370 --> 00:05:58,190 ArcGIS will map the fields automatically. 149 00:05:58,190 --> 00:06:00,820 Again, this only happens when the attribute 150 00:06:00,820 --> 00:06:02,910 definitions are the same. 151 00:06:02,910 --> 00:06:06,090 Otherwise it's up to you to manually map the fields 152 00:06:06,090 --> 00:06:07,610 of the various input datasets 153 00:06:07,610 --> 00:06:10,173 to the fields of the first input dataset. 154 00:06:11,300 --> 00:06:14,750 You can also add and delete fields set data types 155 00:06:14,750 --> 00:06:16,170 and even define Merge rules, 156 00:06:16,170 --> 00:06:18,450 if you're trying to combine multiple input fields 157 00:06:18,450 --> 00:06:20,550 into a single output field; 158 00:06:20,550 --> 00:06:22,753 not unlike a concatenation operation. 159 00:06:25,020 --> 00:06:27,360 Moving on, the last of the three Vector tools , 160 00:06:27,360 --> 00:06:29,300 we'll look at is Append 161 00:06:29,300 --> 00:06:31,110 What does this tool do? 162 00:06:31,110 --> 00:06:34,490 It adds or appends data to an existing dataset. 163 00:06:34,490 --> 00:06:35,840 Imagine you're writing a book, 164 00:06:35,840 --> 00:06:38,000 you saved the first three chapters in one file 165 00:06:38,000 --> 00:06:40,100 and the next three in a separate file. 166 00:06:40,100 --> 00:06:41,650 How do you resolve this? 167 00:06:41,650 --> 00:06:45,080 You paste or append the final three chapters 168 00:06:45,080 --> 00:06:46,460 to the initial three , 169 00:06:46,460 --> 00:06:48,900 same basic idea with facial data. 170 00:06:48,900 --> 00:06:51,270 You're adding more data to an existing 171 00:06:51,270 --> 00:06:52,903 or target dataset. 172 00:06:53,740 --> 00:06:57,290 Both the Union and Merge operations result in a new dataset, 173 00:06:57,290 --> 00:07:00,320 the Append tool modifies the target data. 174 00:07:00,320 --> 00:07:03,410 The append tool can also accommodate most data types 175 00:07:03,410 --> 00:07:06,560 Vector, Raster, tabular, and more. 176 00:07:06,560 --> 00:07:07,620 It sounds great. 177 00:07:07,620 --> 00:07:09,240 What can't it do? 178 00:07:09,240 --> 00:07:11,350 Well like the Merge operation, 179 00:07:11,350 --> 00:07:13,710 it doesn't split or alter the geometries 180 00:07:13,710 --> 00:07:16,470 even if the inputs overlap one another. 181 00:07:16,470 --> 00:07:18,370 It also does not allow new attributes 182 00:07:18,370 --> 00:07:21,480 to be created using the field mapping interface. 183 00:07:21,480 --> 00:07:24,820 Remember you're adding data to an existing data set here, 184 00:07:24,820 --> 00:07:27,690 a dataset with its own table specification. 185 00:07:27,690 --> 00:07:31,330 Any data you want to append should match that specification. 186 00:07:31,330 --> 00:07:33,500 The assumption here is that the existing dataset 187 00:07:33,500 --> 00:07:36,453 already has the schema or table structure you need. 188 00:07:38,290 --> 00:07:40,490 Okay, the bottom line , 189 00:07:40,490 --> 00:07:41,750 Union. 190 00:07:41,750 --> 00:07:42,690 Great for computing 191 00:07:42,690 --> 00:07:44,660 or understanding the spatial relationships 192 00:07:44,660 --> 00:07:46,940 between or among input features 193 00:07:46,940 --> 00:07:49,520 but it's not the right tool for assembling discrete pieces 194 00:07:49,520 --> 00:07:52,110 of data into a single dataset. 195 00:07:52,110 --> 00:07:54,190 This tool is an overlay analysis use 196 00:07:54,190 --> 00:07:56,550 for understanding the relationship or between 197 00:07:56,550 --> 00:07:59,233 or among the geometries of the input features. 198 00:08:00,220 --> 00:08:02,270 The append tool is used to add data 199 00:08:02,270 --> 00:08:05,200 to an existing data set with limited field mapping options; 200 00:08:05,200 --> 00:08:07,980 I think making the book longer here. 201 00:08:07,980 --> 00:08:08,950 Lastly, 202 00:08:08,950 --> 00:08:11,890 Merge gives us the ability to combine multiple inputs 203 00:08:11,890 --> 00:08:13,500 into a new output 204 00:08:13,500 --> 00:08:16,183 with significantly more field mapping capabilities. 205 00:08:17,730 --> 00:08:21,660 Now, one more thing to think about ,the dissolve tool. 206 00:08:21,660 --> 00:08:24,170 What role might dissolve play as a followup 207 00:08:24,170 --> 00:08:27,203 to a Union Merge or append operation. 208 00:08:29,420 --> 00:08:31,500 Dissolve the Union output on an attribute, 209 00:08:31,500 --> 00:08:32,930 common to your inputs 210 00:08:32,930 --> 00:08:36,840 or a new attribute you create to derive new geometries. 211 00:08:36,840 --> 00:08:38,980 Following a Merge or append operation, 212 00:08:38,980 --> 00:08:40,290 the dissolve tool could be used 213 00:08:40,290 --> 00:08:42,077 to eliminate overlapping polygons 214 00:08:42,077 --> 00:08:44,120 and the input datasets. 215 00:08:44,120 --> 00:08:45,978 You'll typically find these along the edges 216 00:08:45,978 --> 00:08:48,070 of the tile data . 217 00:08:48,070 --> 00:08:50,660 You could of course manually edit the offending polygons 218 00:08:50,660 --> 00:08:53,610 but oftentimes the dissolve operation will go much quicker. 219 00:08:55,340 --> 00:08:56,173 Okay 220 00:08:56,173 --> 00:08:58,070 Let's move on and talk about some approaches 221 00:08:58,070 --> 00:09:00,300 to assembling tiled Raster data; 222 00:09:00,300 --> 00:09:01,570 the corollary to the Merge 223 00:09:01,570 --> 00:09:03,753 and append operations we just discussed. 224 00:09:05,930 --> 00:09:08,020 The nice thing about Raster data in this regard 225 00:09:08,020 --> 00:09:10,090 is that there are really only two options , 226 00:09:10,090 --> 00:09:12,950 create Mosaic dataset and append, 227 00:09:12,950 --> 00:09:16,220 and one of them won't work to create a new dataset. 228 00:09:16,220 --> 00:09:17,053 That's right, 229 00:09:17,053 --> 00:09:20,240 the same append tool from the Vector section of the lecture. 230 00:09:20,240 --> 00:09:22,560 We already know that adds to a target dataset, 231 00:09:22,560 --> 00:09:24,300 which means create Mosaic dataset 232 00:09:24,300 --> 00:09:27,130 seems like the appropriate place to start. 233 00:09:27,130 --> 00:09:30,040 Mosaic dataset is used to manage display, 234 00:09:30,040 --> 00:09:32,910 serve and share Raster data. 235 00:09:32,910 --> 00:09:34,563 It consists of many parts. 236 00:09:35,830 --> 00:09:39,170 Key to understand, at least initially are the catalog, 237 00:09:39,170 --> 00:09:41,720 the source of information that defines the Raster values 238 00:09:41,720 --> 00:09:43,820 and their spatial extents. 239 00:09:43,820 --> 00:09:46,780 A polygon feature class of the Mosaic boundary 240 00:09:46,780 --> 00:09:48,700 rules for data handling. 241 00:09:48,700 --> 00:09:49,533 Don't worry. 242 00:09:49,533 --> 00:09:50,720 We'll use the defaults for now. 243 00:09:51,930 --> 00:09:53,480 Lastly, a color correction 244 00:09:53,480 --> 00:09:55,330 that supplies the color ramp for each Raster 245 00:09:55,330 --> 00:09:57,943 in the Mosaic dataset could also be included. 246 00:09:59,040 --> 00:10:01,710 Just like with regular old Vector and Raster datasets, 247 00:10:01,710 --> 00:10:03,590 you can access a property's interface 248 00:10:03,590 --> 00:10:05,430 for the Mosaic dataset. 249 00:10:05,430 --> 00:10:08,300 The interface includes three sections of information, 250 00:10:08,300 --> 00:10:11,063 general, default and multi-dimensional. 251 00:10:12,970 --> 00:10:15,740 There's only one way to create a new Mosaic dataset 252 00:10:15,740 --> 00:10:17,810 but there are two ways to get there, 253 00:10:17,810 --> 00:10:19,500 either right click the geo database 254 00:10:19,500 --> 00:10:21,510 where you want to store the Mosaic dataset 255 00:10:21,510 --> 00:10:22,950 in the catalog pane 256 00:10:22,950 --> 00:10:24,850 and choose new new Mosaic dataset 257 00:10:24,850 --> 00:10:26,430 from the list of options 258 00:10:26,430 --> 00:10:29,170 or search for the tool in the Geoprocessing pane, 259 00:10:29,170 --> 00:10:31,450 like we've done many times before, 260 00:10:31,450 --> 00:10:34,110 either way you end up in the same place; 261 00:10:34,110 --> 00:10:36,563 the create Mosaic data set Dialog box. 262 00:10:38,330 --> 00:10:39,380 As for Parameters, 263 00:10:39,380 --> 00:10:42,520 We see that we need to specify a Mosaic data set name, 264 00:10:42,520 --> 00:10:44,990 that's the empty container to be created 265 00:10:44,990 --> 00:10:47,000 and a coordinate system. 266 00:10:47,000 --> 00:10:48,610 If you access the Dialog box 267 00:10:48,610 --> 00:10:49,960 from the Geoprocessing pane, 268 00:10:49,960 --> 00:10:51,310 you will also need to specify 269 00:10:51,310 --> 00:10:53,603 the geo database to store the Mosaic in. 270 00:10:55,880 --> 00:10:56,990 Once you click Run, 271 00:10:56,990 --> 00:10:59,740 the Mosaic dataset is added to the geo database 272 00:11:00,880 --> 00:11:03,900 then right click the Mosaic data set 273 00:11:03,900 --> 00:11:05,740 and select add Rasters 274 00:11:05,740 --> 00:11:07,163 from the list of options. 275 00:11:08,500 --> 00:11:11,270 Next, specify Which Rasters to add 276 00:11:11,270 --> 00:11:15,280 and what format they are in to complete the specification. 277 00:11:15,280 --> 00:11:17,170 Think of the Mosaic dataset you just created 278 00:11:17,170 --> 00:11:18,930 as an empty container. 279 00:11:18,930 --> 00:11:22,330 same basic idea when we create a new feature class 280 00:11:22,330 --> 00:11:23,873 on the Vector side of things. 281 00:11:24,810 --> 00:11:28,100 we create an empty container and digitize features. 282 00:11:28,100 --> 00:11:29,240 With the Mosaic, 283 00:11:29,240 --> 00:11:32,050 you create the container and add the Raster data 284 00:11:32,050 --> 00:11:33,960 in lieu of digitizing , 285 00:11:33,960 --> 00:11:35,823 click Run to complete the process. 286 00:11:39,760 --> 00:11:42,420 Now we see a snapshot of the Mosaic dataset components 287 00:11:42,420 --> 00:11:44,800 in the contents pane of my project. 288 00:11:44,800 --> 00:11:45,900 We've got the boundary; 289 00:11:45,900 --> 00:11:47,260 remember that's the outer bounds 290 00:11:47,260 --> 00:11:49,400 of the entire Mosaic dataset, 291 00:11:49,400 --> 00:11:51,630 there's a footprint feature class, 292 00:11:51,630 --> 00:11:54,653 polygons representing the individual Raster boundaries. 293 00:11:56,530 --> 00:11:58,660 Lastly, there's the image itself, 294 00:11:58,660 --> 00:12:00,123 the Mosaic we just created. 295 00:12:01,020 --> 00:12:02,900 Look at the value range here, 296 00:12:02,900 --> 00:12:04,870 it doesn't make much sense 297 00:12:04,870 --> 00:12:06,580 unless you specify a color ramp, 298 00:12:06,580 --> 00:12:08,393 this is likely to happen to you too. 299 00:12:09,820 --> 00:12:11,820 If we look at the help documentation associated 300 00:12:11,820 --> 00:12:13,780 with data types and ArcGIS, 301 00:12:13,780 --> 00:12:15,560 we see the maximum and minimum value 302 00:12:15,560 --> 00:12:17,030 that can be stored in a floating point 303 00:12:17,030 --> 00:12:19,870 single precision number ; 304 00:12:19,870 --> 00:12:22,190 looks pretty similar to what we saw in the legend 305 00:12:22,190 --> 00:12:24,200 and that's not a coincidence. 306 00:12:24,200 --> 00:12:25,680 It simply means that the statistics 307 00:12:25,680 --> 00:12:28,450 of the Raster table have not been calculated, 308 00:12:28,450 --> 00:12:29,890 which in turn means that the software 309 00:12:29,890 --> 00:12:32,620 is displaying your data without having read it. 310 00:12:32,620 --> 00:12:33,820 It knows it's there, 311 00:12:33,820 --> 00:12:35,580 but doesn't know what's in it. 312 00:12:35,580 --> 00:12:37,243 What's a geo processor to do! 313 00:12:38,400 --> 00:12:40,670 Well ,you can force GIS 314 00:12:40,670 --> 00:12:43,610 to compute the statistics of your dataset, 315 00:12:43,610 --> 00:12:45,270 this doesn't have happen automatically 316 00:12:45,270 --> 00:12:46,890 for floating point Rasters. 317 00:12:46,890 --> 00:12:49,240 And while it may seem a bit counterintuitive, 318 00:12:49,240 --> 00:12:51,160 imagine if you had a very large ; 319 00:12:51,160 --> 00:12:53,070 from a file size perspective, 320 00:12:53,070 --> 00:12:56,320 high resolution over a broad spatial extent for example, 321 00:12:56,320 --> 00:12:58,430 a very large Raster file 322 00:12:58,430 --> 00:13:01,390 that might take a long time to compute statistics. 323 00:13:01,390 --> 00:13:03,190 And it might not be necessary 324 00:13:03,190 --> 00:13:05,410 if you already know the value ranges. 325 00:13:05,410 --> 00:13:06,700 You either need to know that 326 00:13:06,700 --> 00:13:08,480 or allow the statistics to be computed 327 00:13:08,480 --> 00:13:10,850 to generate a proper display. 328 00:13:10,850 --> 00:13:11,720 You have options here 329 00:13:11,720 --> 00:13:13,710 for controlling the calculations . 330 00:13:13,710 --> 00:13:14,870 For large data sets, 331 00:13:14,870 --> 00:13:18,150 you can skip cells, skip specific values 332 00:13:18,150 --> 00:13:20,070 or even skip areas where statistics 333 00:13:20,070 --> 00:13:21,340 have already been computed ; 334 00:13:21,340 --> 00:13:23,440 likely at a different time. 335 00:13:23,440 --> 00:13:26,010 You can also simply specify an area of interest 336 00:13:26,010 --> 00:13:28,503 and only compute statistics for that region. 337 00:13:30,760 --> 00:13:31,720 Once that's done, 338 00:13:31,720 --> 00:13:33,010 we see that in my case, 339 00:13:33,010 --> 00:13:37,823 the value range between zero and just under 4,400 meters. 340 00:13:40,540 --> 00:13:41,950 One other thing here, 341 00:13:41,950 --> 00:13:44,070 the data Lock icon , 342 00:13:44,070 --> 00:13:48,000 this appears when dataset alterations are underway. 343 00:13:48,000 --> 00:13:49,200 For example, 344 00:13:49,200 --> 00:13:50,380 you'll see this with something like 345 00:13:50,380 --> 00:13:51,880 the add X, Y coordinates 346 00:13:51,880 --> 00:13:55,750 or even when computing statistics on a Raster dataset. 347 00:13:55,750 --> 00:13:57,550 That's because ArcGIS is actually 348 00:13:57,550 --> 00:13:59,700 updating some aspect of the dataset, 349 00:13:59,700 --> 00:14:02,190 which means that you can not use that data for anything 350 00:14:02,190 --> 00:14:04,240 while the Lock icon is present; 351 00:14:04,240 --> 00:14:07,460 it disappears once the operation has been completed. 352 00:14:07,460 --> 00:14:09,450 Okay, last thing here, 353 00:14:09,450 --> 00:14:10,980 a short reminder that the append tools 354 00:14:10,980 --> 00:14:12,170 is an options as well, 355 00:14:12,170 --> 00:14:14,450 and that it is to be used to expand the coverage 356 00:14:14,450 --> 00:14:16,400 of an existing Raster dataset, 357 00:14:16,400 --> 00:14:18,310 not to create a new one. 358 00:14:18,310 --> 00:14:20,230 This is the one Geoprocessing operation 359 00:14:20,230 --> 00:14:22,120 out of all that have been discussed in the segment 360 00:14:22,120 --> 00:14:25,270 that works for both Vector and Raster data. 361 00:14:25,270 --> 00:14:27,790 So hopefully that provides a clear picture 362 00:14:27,790 --> 00:14:30,090 of the distinctions between Union and Merge 363 00:14:30,090 --> 00:14:31,160 and the correct workflows 364 00:14:31,160 --> 00:14:32,630 for assembling tile data, 365 00:14:32,630 --> 00:14:34,870 whether they're Vector or Raster. 366 00:14:34,870 --> 00:14:35,770 In the next segment, 367 00:14:35,770 --> 00:14:37,340 I'll provide brief demonstration 368 00:14:37,340 --> 00:14:39,370 of the tools we just discussed here. 369 00:14:39,370 --> 00:14:40,210 We'll follow that up with 370 00:14:40,210 --> 00:14:42,170 a look at summarizing one dataset 371 00:14:42,170 --> 00:14:44,120 based on boundaries in another dataset. 372 00:14:45,190 --> 00:14:46,023 That said, 373 00:14:46,023 --> 00:14:47,930 if you think you've got the gist of this 374 00:14:47,930 --> 00:14:49,890 feel free to skip the demonstration video 375 00:14:49,890 --> 00:14:52,740 and move right into the summarizing data lecture. 376 00:14:52,740 --> 00:14:54,490 I look forward to seeing you there.