<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Which is faster: fewer larger features or more smaller features? in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48086#M2677</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Whatever you end up using, dissolving the contour lines by height might help further. I use FGDB for such things.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Dec 2013 17:40:25 GMT</pubDate>
    <dc:creator>michaelcollins1</dc:creator>
    <dc:date>2013-12-04T17:40:25Z</dc:date>
    <item>
      <title>Which is faster: fewer larger features or more smaller features?</title>
      <link>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48085#M2676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've made a county-wide LIDAR based 1ft contour feature class in a local fGDB.&amp;nbsp; There are ~2.6 million features for about 550 contour intervals (possibly order of billions of vertices, at least hundreds of millions).&amp;nbsp; The extent is about 15 miles by 30 miles.&amp;nbsp; Currently many of the lines are single features over 20 miles long with perhaps thousands of vertices (I'm speculating).&amp;nbsp; It takes about 6 minutes to draw at full extent which is pretty much unusable.&amp;nbsp; If I diced this up with, say, a 1mile x 1mile grid to make more, smaller features would the performance be better or worse?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Alternatively, would a local "personal" SDE GDB on SQL Server Express speed this up?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;10.1 SP1, Win 7 64bit, Core i7 870 (2.93Ghz), 10Gb RAM.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 17:31:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48085#M2676</guid>
      <dc:creator>StormwaterWater_Resources</dc:creator>
      <dc:date>2013-12-04T17:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Which is faster: fewer larger features or more smaller features?</title>
      <link>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48086#M2677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Whatever you end up using, dissolving the contour lines by height might help further. I use FGDB for such things.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 17:40:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48086#M2677</guid>
      <dc:creator>michaelcollins1</dc:creator>
      <dc:date>2013-12-04T17:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: Which is faster: fewer larger features or more smaller features?</title>
      <link>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48087#M2678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Why don't you apply a scale dependency to the data so only a small amount of contours would need to be accessible at any given time?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You could create major contours (e.g.10 or 20 ft intervals) and show these at smaller scales and only show the 1ft contours at the largest scales.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 17:40:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48087#M2678</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2013-12-04T17:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Which is faster: fewer larger features or more smaller features?</title>
      <link>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48088#M2679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Fewer rows are faster, except when there's data that can't be rendered.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best practice would be to intersect the contour lines against a regular grid&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;of at least 5x5 over the study area, then dissolve by grid cell and elevation&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(unioning nearby shapes with the same attribute).&amp;nbsp; If you then set scale&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dependency so that not more than 4-9 grids are rendered at one time,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; the draw request should fly (at which point it won't matter if it's got the&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;added database overhead of SQL-Server Express [which would generally&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;slow access vice a local FGDB]).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 19:06:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48088#M2679</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2013-12-04T19:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: Which is faster: fewer larger features or more smaller features?</title>
      <link>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48089#M2680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Two remarks to these topics:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I've made a county-wide LIDAR based 1ft contour feature class in a local fGDB.&amp;nbsp; There are ~2.6 million features for about 550 contour intervals (possibly order of billions of vertices, at least hundreds of millions).&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;First of, contours generated from extremely high detailed raster or LIDAR data, almost &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;&lt;STRONG&gt;always&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt; need &lt;/SPAN&gt;&lt;STRONG&gt;generalization&lt;/STRONG&gt;&lt;SPAN&gt; to be of any real use. There is really little use for maintaining all detail, since in general, the GIS analyses options for something like contour lines are very limited (e.g. compare with rasters), and mostly contours are simply used for display only. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See the&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00700000002r000000"&gt;An overview of the Generalization toolset&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Help topic, and especially the &lt;/SPAN&gt;&lt;STRONG&gt;Simplify Line&lt;/STRONG&gt;&lt;SPAN&gt; option, for more information about generalization.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;There are ~2.6 million features for about 550 contour intervals (possibly order of billions of vertices, at least hundreds of millions). &lt;BR /&gt;... &lt;BR /&gt;&lt;STRONG&gt;It takes about 6 minutes to draw at full extent which is pretty much unusable.&lt;/STRONG&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What would you expect attempting to display 2.6 million features, with hundreds of millions of vertices?... Even "Google Earth" type mega spatial databases, are only feasible by very smart indexing schemes, only sending out the minimum required data to the viewer to fill up his display at a particular scale and well chosen level of detail.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have therefore no clue as to what you attempt to do drawing &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;all&lt;/SPAN&gt;&lt;SPAN&gt; features "at full extent". In terms of display, there is absolutely no use for a completely cluttered up screen, swamped by 2.6M features. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Realistically, any display of GIS data should probably be limited to &amp;lt;100.000 features / screen to be of any real use in distinguishing individual features (a 1920x1080 full HD display has +/- 2M pixels at most anyway).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The main solution to your problem is therefore simple: set &lt;/SPAN&gt;&lt;STRONG&gt;minimum&lt;/STRONG&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;STRONG&gt;maximum&lt;/STRONG&gt;&lt;SPAN&gt; display scales to realistic values, preventing ever to display all features at full extent...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 19:11:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48089#M2680</guid>
      <dc:creator>MarcoBoeringa</dc:creator>
      <dc:date>2013-12-04T19:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: Which is faster: fewer larger features or more smaller features?</title>
      <link>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48090#M2681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;As an additional suggestion (which is something fairly easy and quick to try), it might be good to review your grid sizes for the contour feature class's spatial index.&amp;nbsp; In general, I have found that setting grid 1 to 1000 is good start and setting grid 2 to 3x the size of grid 1 is also a good start (in this case, grid 2 would become 3000 since grid 1 would be 1000) for a line feature class like this.&amp;nbsp; Grid 3 can be left at 0 for the time being.&amp;nbsp; Give it a try and see what happens when rendering the feature class.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Dec 2013 00:09:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48090#M2681</guid>
      <dc:creator>WilliamCraft</dc:creator>
      <dc:date>2013-12-06T00:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: Which is faster: fewer larger features or more smaller features?</title>
      <link>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48091#M2682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Multiple levels of spatial index gridding have a performance cost.&amp;nbsp; They should only be used&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;when needed (e.g., when there is effectively two sets of data with different intrinsic sizes&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;within the table).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you group the features to an overlay fishnet, then there is no reason to have more than&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;one grid size. The index grid size should be at least twice the size of the fishnet distance&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(if it's a large net [e.g., 4x4 - 5x5 over the area], then you can go as small as 133% of the&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;fishnet, but never down to the size itself, since that would generate 4-9 index rows with&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;each feature -- far too many false positives in the index).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Dec 2013 10:52:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48091#M2682</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2013-12-06T10:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: Which is faster: fewer larger features or more smaller features?</title>
      <link>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48092#M2683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;To address some of these posts.&amp;nbsp; I think the most promising thing is the dissolve.&amp;nbsp; I'm going to experiment with that some more, but on subsets of the data, dissolving on elevation into multi-part lines made a big difference in drawing speed.&amp;nbsp; I plan to more fully test vangelo's suggestion in message #4 below.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;mboeringa2010's comments were not invalid, but did not really answer the question.&amp;nbsp; Certainly, when I'm done, I expect to employ many of these data restriction techniques such as scale constraints and DQ's though I'm not interesting in simplifying/generalizing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I did split my contours up into 1 sq mile pieces.&amp;nbsp; Overall it does not look like that makes a big difference in performance, but I'm writing a Python button plug-in to load only those chunks necessary to cover the current display extent.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just out of curiosity I plan to dissolve the whole massive dataset to see what happens.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 18:48:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48092#M2683</guid>
      <dc:creator>StormwaterWater_Resources</dc:creator>
      <dc:date>2013-12-11T18:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Which is faster: fewer larger features or more smaller features?</title>
      <link>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48093#M2684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Fewer rows are faster, except when there's data that can't be rendered.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There's the quick and dirty answer to the original question from Vangelo (#4 below).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Best practice would be to intersect the contour lines against a regular grid&lt;BR /&gt;of at least 5x5 over the study area, then dissolve by grid cell and elevation&lt;BR /&gt;(unioning nearby shapes with the same attribute).&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Before I tried this I reassembled clipped subsets; I'll describe that in a minute.&amp;nbsp; However I finally tried the exact method from Vangelo.&amp;nbsp; Again, my original data set (*un*dissolved) had ~2.6 million features, many with thousands of vertices.&amp;nbsp; I created a 15x7 grid, and then attempted to intersect the whole thing.&amp;nbsp; After four days the process finally crashed (out of memory).&amp;nbsp; I tried these exact steps on a far smaller subset, and it worked perfectly.&amp;nbsp; The result was that my contours were split up by my grid and dissolved, but otherwise identical to the original contours.&amp;nbsp; Note: it's the dissolve that really makes the difference in performance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The way that I actually worked with the entire data set was by clipping and then merging.&amp;nbsp; As far as I can tell this accomplishes the exact same thing.&amp;nbsp; The entire set of contours was diced up into pieces and dissolved but otherwise identical to the original.&amp;nbsp; Here are the steps I took:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; - Create an index grid of squares (Toolbox -&amp;gt; Cartography -&amp;gt; Data Drive Pages -&amp;gt; Grid Index)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - Create a model (actually I scripted it, but the model iterator works great too)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]&amp;nbsp;&amp;nbsp;&amp;nbsp; - Use Feature Selection iterator over index grid&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Clip the contours with the output of the iterator&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - output the new feature class clips into a GDB&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[/INDENT] - Dissolve the individual clipped feature classes from above&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]&amp;nbsp;&amp;nbsp; (using another model with a Feature Classes iterator over the GDB)[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - Merge the dissolved clips again using a Feature Classes iterator.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I suppose this could all be grouped into one model but that's not the way I did it.&amp;nbsp; I am of course using a scale restriction.&amp;nbsp; The final product is slower than our original contour layer, but it's certainly acceptable performance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 13:29:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48093#M2684</guid>
      <dc:creator>StormwaterWater_Resources</dc:creator>
      <dc:date>2013-12-18T13:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: Which is faster: fewer larger features or more smaller features?</title>
      <link>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48094#M2685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't understand that last bit:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;The final product is slower than our original contour layer, but it's certainly acceptable performance.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How many features in each layer?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;How many features are drawn?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;How long does it take to draw each full-scale, and how long to draw at an extent 10% &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;larger than one of the grid cells?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If the sheer size of the contour lines is impacting performance, then Marco's suggestion&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;to generalize your features is your best fallback option.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 15:11:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48094#M2685</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2013-12-18T15:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Which is faster: fewer larger features or more smaller features?</title>
      <link>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48095#M2686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I think he means with "original contour layer", the data (format) as used in, or exported from, what probably is some sort of specialized software for processing LIDAR data... but CCStormwater will probably answer this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At least good to hear you more or less solved your issue.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 15:39:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48095#M2686</guid>
      <dc:creator>MarcoBoeringa</dc:creator>
      <dc:date>2013-12-18T15:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Which is faster: fewer larger features or more smaller features?</title>
      <link>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48096#M2687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I don't understand that last bit&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry, I wasn't clear.&amp;nbsp; When I said "our original contour layer", I was referring to an entirely separate contour layer created by others with unknown source data and before my time.&amp;nbsp; That is, we had a full county contour layer (2' vs the 1' I was making) which drew at a very reasonable speed.&amp;nbsp; That was my benchmark in terms of what was going to be acceptable to other users.&amp;nbsp; I should have said something like: "another contour layer in common use made by others" to make it clear it had nothing to do with my project.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Based on what I learned from this thread there was a dramatic performance gain from what I'd originally created.&amp;nbsp; The resultant layer, still huge and excessively detailed, draws at a perfectly acceptable speed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks to all who posted.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="font-style:italic;"&gt;PS: For readers new to this thread looking for a quick answer look first to Vangelo's answer in post #4, and then a description of my solution based on this in post #9&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jan 2014 12:53:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/which-is-faster-fewer-larger-features-or-more/m-p/48096#M2687</guid>
      <dc:creator>StormwaterWater_Resources</dc:creator>
      <dc:date>2014-01-13T12:53:41Z</dc:date>
    </item>
  </channel>
</rss>

