<div dir="ltr">Yes, cnRasterCellSizeF, is what I was looking for! <div>This has created the high res, well defined image I was looking for. My data set is 3200x7200, which is 4800 squared, so I set cnRasterCellSizeF to 1.0/4800. The results look pretty good with this setting, but I will continue to experiment with this parameter. This doesn&#39;t account for the margins around the map image, so I&quot;m sure there is a bit of tweaking to be done. <div><br></div><div>I set the png resolution to 16384x16384. The reason I chose this resolution is because this is 256 * 2 (to the 6th power), which is the resolution of an image tile layer at zoom level 6 using standards for web map api&#39;s like google maps or leaflet. I will use ImageMagick to cut this image into squares of 256x256. The png output file was created relatively quick, about 2 minutes, whereas the AreaFill was taking on the order of 4 hours on my server. The ImageMagick calculations are impressively, but for zoom level 6, it creates 4096 images, which taks me around 20 minutes. </div><div><br></div><div>If anyone else is interested in the process to create the image tile layers, I&#39;d be happy to share with the community. </div><div><br></div><div>Thanks as always for the great help on this email list. </div><div><br></div><div>Micah</div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Oct 30, 2014 at 4:48 PM, David Brown <span dir="ltr">&lt;<a href="mailto:dbrown@ucar.edu" target="_blank">dbrown@ucar.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Kyle,<br>
<br>
My experience is that drawing a raster fill png plot keeping the cell<br>
size close to the grid cell size is usually (much) faster than drawing<br>
an AreaFill plot. For the example I just used, drawing the MPAS grid,<br>
the raster sample factor does not work well because it is an<br>
unstructured grid, and therefore there is not a clear definition of<br>
the size of a grid cell, which the cnRasterSampleFactorF resource<br>
depends on. With a little work, this could be improved I think.<br>
 -dave<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
<br>
On Thu, Oct 30, 2014 at 2:35 PM, Kyle Griffin &lt;<a href="mailto:ksgriffin2@wisc.edu">ksgriffin2@wisc.edu</a>&gt; wrote:<br>
&gt; Interesting. I would agree on having a couple of examples. In the meantime,<br>
&gt; a couple of thoughts...<br>
&gt;<br>
&gt; Between the cnRasterCellSizeF and cnRasterSampleFactorF, you can essentially<br>
&gt; set the cell size to be infinitely small (e.g. 1e-30, within the range of<br>
&gt; float still) and keeping the sample factor at 1.0 should keep the cells no<br>
&gt; smaller than the size of the grid itself, correct? If this was done, is<br>
&gt; there any computational efficiency to be gained versus using an AreaFill?<br>
&gt; Might depend on the data itself, I suppose, but it would seem that the<br>
&gt; infinitely-small limit of RasteFill is essentially CellFill mode, but<br>
&gt; perhaps more computations (such as averaging all data points contributing a<br>
&gt; cell - in this case this is 1, but don&#39;t know if the average is removed in<br>
&gt; this limiting case) which would make CellFill more example in this limiting<br>
&gt; case, perhaps? Either way, you could avoid wkWidth/Height-dependent<br>
&gt; calculations with the sample factor limit, if I&#39;m reading the documentation<br>
&gt; correctly.<br>
&gt;<br>
&gt; I think the application Micah has in mind would involve transferring the<br>
&gt; image over the web and using a browser-side piece of software to subset the<br>
&gt; image to the desired visible region. Plotting resolution issues were the<br>
&gt; problem when I tried something a while ago, so it would be interesting to<br>
&gt; find the most efficient way of hi-res plotting of an entire global grid and<br>
&gt; getting a subset to a web-based user.<br>
&gt;<br>
&gt;<br>
&gt; Kyle<br>
&gt;<br>
&gt; ----------------------------------------<br>
&gt; Kyle S. Griffin<br>
&gt; Department of Atmospheric and Oceanic Sciences<br>
&gt; University of Wisconsin - Madison<br>
&gt; Room 1421<br>
&gt; 1225 W Dayton St, Madison, WI 53706<br>
&gt; Email: <a href="mailto:ksgriffin2@wisc.edu">ksgriffin2@wisc.edu</a><br>
&gt;<br>
&gt; On Thu, Oct 30, 2014 at 3:19 PM, David Brown &lt;<a href="mailto:dbrown@ucar.edu">dbrown@ucar.edu</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Compared with high resolution PostScript files, high resolution PNG<br>
&gt;&gt; images do seem to be much more cost effective in terms of file size<br>
&gt;&gt; and quickness to load and manipulate by typical viewing tools like Mac<br>
&gt;&gt; Preview.<br>
&gt;&gt;<br>
&gt;&gt; Ideally you would want a PNG image that is close to the same<br>
&gt;&gt; resolution as your data or higher. In order to get this with an NCL<br>
&gt;&gt; &quot;RasterFill&quot; plot there are two things you need to adjust: the output<br>
&gt;&gt; workstation resolution, controlled by &quot;wkWidth&quot; and &quot;wkHeight&quot;, and<br>
&gt;&gt; the resolution that the raster fill method uses when drawing, which is<br>
&gt;&gt; most easily controlled by setting the resource &quot;cnRasterCellSizeF&quot; to<br>
&gt;&gt; a suitable small number. Note that the workstation resources set a<br>
&gt;&gt; resolution for the plot as a whole, including the annotations and any<br>
&gt;&gt; white space that surrounds the plot, while the raster cell size only<br>
&gt;&gt; relates to the area inside the viewport of the actual plot -- just<br>
&gt;&gt; something to keep in mind.<br>
&gt;&gt;<br>
&gt;&gt; For example, to visualize a 65,000,000 cell MPAS grid with maximum<br>
&gt;&gt; possible detail, I set<br>
&gt;&gt; wkWidth and wkHeight to 16384 (a power of 2 but not really necessary<br>
&gt;&gt; -- it could have been 16000).<br>
&gt;&gt; Then I set cnRasterCellSizeF to 1.0/16384.0  Nothing magical about<br>
&gt;&gt; these numbers, and they don&#39;t account for the whole plot vs viewport<br>
&gt;&gt; issue mathematically, but they do produce a very detailed image. The<br>
&gt;&gt; output PNG file is about 40 MB -- too big to attach to this message<br>
&gt;&gt; unfortunately.<br>
&gt;&gt;<br>
&gt;&gt; We should probably have an example or two showing how to create<br>
&gt;&gt; high-res graphics.<br>
&gt;&gt;  -dave<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Thu, Oct 30, 2014 at 11:30 AM, Micah Sklut &lt;<a href="mailto:micahs2005@gmail.com">micahs2005@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt; &gt; Okay, thanks for explaining how the raster fill works Kyle. That does<br>
&gt;&gt; &gt; help<br>
&gt;&gt; &gt; me understand this limitation. With respect to processing time between<br>
&gt;&gt; &gt; rasterFill and areaFill. It took about 1-2 minutes for rasterFill,<br>
&gt;&gt; &gt; compared<br>
&gt;&gt; &gt; to a ball park of 4 hours for areaFill. Quite a difference!<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; On Thu, Oct 30, 2014 at 1:26 PM, Kyle Griffin &lt;<a href="mailto:ksgriffin2@wisc.edu">ksgriffin2@wisc.edu</a>&gt;<br>
&gt;&gt; &gt; wrote:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; That&#39;s part of the definition of Raster fill - it will always create<br>
&gt;&gt; &gt;&gt; the<br>
&gt;&gt; &gt;&gt; same number of boxes regardless of resolution of the data underneath,<br>
&gt;&gt; &gt;&gt; typically based on an average of the data points within that set of<br>
&gt;&gt; &gt;&gt; grid<br>
&gt;&gt; &gt;&gt; points. Although I&#39;m not knowledgeable about the behind-the-scenes<br>
&gt;&gt; &gt;&gt; computations, I know it&#39;s common for NCL to mark the whole average as<br>
&gt;&gt; &gt;&gt; missing if any subset of that average is missing. I&#39;m not sure if<br>
&gt;&gt; &gt;&gt; there&#39;s a<br>
&gt;&gt; &gt;&gt; way to override this - a developer might need to chime in here - but<br>
&gt;&gt; &gt;&gt; that<br>
&gt;&gt; &gt;&gt; would be your only hope if you want to keep your image production time<br>
&gt;&gt; &gt;&gt; down,<br>
&gt;&gt; &gt;&gt; as the other fill modes will almost certainly be more intensive. You<br>
&gt;&gt; &gt;&gt; can<br>
&gt;&gt; &gt;&gt; scan examples of Raster Fill code here (see link) and in the contour<br>
&gt;&gt; &gt;&gt; resources page as well.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; <a href="https://www.ncl.ucar.edu/Applications/raster.shtml" target="_blank">https://www.ncl.ucar.edu/Applications/raster.shtml</a><br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; If you did AreaFill or CellFill, I don&#39;t think you see much difference<br>
&gt;&gt; &gt;&gt; in<br>
&gt;&gt; &gt;&gt; the time to produce a vector file output versus a raster image output.<br>
&gt;&gt; &gt;&gt; But<br>
&gt;&gt; &gt;&gt; yes, what you are seeing is a limitation of using the RasterFill<br>
&gt;&gt; &gt;&gt; setting.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Kyle<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; ----------------------------------------<br>
&gt;&gt; &gt;&gt; Kyle S. Griffin<br>
&gt;&gt; &gt;&gt; Department of Atmospheric and Oceanic Sciences<br>
&gt;&gt; &gt;&gt; University of Wisconsin - Madison<br>
&gt;&gt; &gt;&gt; Room 1421<br>
&gt;&gt; &gt;&gt; 1225 W Dayton St, Madison, WI 53706<br>
&gt;&gt; &gt;&gt; Email: <a href="mailto:ksgriffin2@wisc.edu">ksgriffin2@wisc.edu</a><br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; On Thu, Oct 30, 2014 at 11:55 AM, Micah Sklut &lt;<a href="mailto:micahs2005@gmail.com">micahs2005@gmail.com</a>&gt;<br>
&gt;&gt; &gt;&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; No, I&quot;m not masking data. Yes, I am using RasterFill, and the<br>
&gt;&gt; &gt;&gt;&gt; resulting<br>
&gt;&gt; &gt;&gt;&gt; image for the Mid Atlantic is great. But, when I expand to global, I<br>
&gt;&gt; &gt;&gt;&gt; lose<br>
&gt;&gt; &gt;&gt;&gt; the high detail, no matter how much I increase the png resolution. So,<br>
&gt;&gt; &gt;&gt;&gt; just<br>
&gt;&gt; &gt;&gt;&gt; wondering why I am losing detail with the global image, and if there<br>
&gt;&gt; &gt;&gt;&gt; is a<br>
&gt;&gt; &gt;&gt;&gt; way around it.<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; On Thu, Oct 30, 2014 at 12:52 PM, Kyle Griffin &lt;<a href="mailto:ksgriffin2@wisc.edu">ksgriffin2@wisc.edu</a>&gt;<br>
&gt;&gt; &gt;&gt;&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; Hi Micah,<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; This seems to me the type of result you would expect when using<br>
&gt;&gt; &gt;&gt;&gt;&gt; RasterFill as a cnFillMode - the default should be cnAreaFill, which<br>
&gt;&gt; &gt;&gt;&gt;&gt; increases plot time significantly, but might that be an issue?<br>
&gt;&gt; &gt;&gt;&gt;&gt; Otherwise, I assume you&#39;re doing nothing else to mask the data,<br>
&gt;&gt; &gt;&gt;&gt;&gt; correct?<br>
&gt;&gt; &gt;&gt;&gt;&gt; Sometimes masking data with a land mask can create similar<br>
&gt;&gt; &gt;&gt;&gt;&gt; blockiness,<br>
&gt;&gt; &gt;&gt;&gt;&gt; although I am unaware (via inexperience) as to whether there is a<br>
&gt;&gt; &gt;&gt;&gt;&gt; resolution<br>
&gt;&gt; &gt;&gt;&gt;&gt; dependence based on the plot size or native data resolution.<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; Kyle<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; ----------------------------------------<br>
&gt;&gt; &gt;&gt;&gt;&gt; Kyle S. Griffin<br>
&gt;&gt; &gt;&gt;&gt;&gt; Department of Atmospheric and Oceanic Sciences<br>
&gt;&gt; &gt;&gt;&gt;&gt; University of Wisconsin - Madison<br>
&gt;&gt; &gt;&gt;&gt;&gt; Room 1421<br>
&gt;&gt; &gt;&gt;&gt;&gt; 1225 W Dayton St, Madison, WI 53706<br>
&gt;&gt; &gt;&gt;&gt;&gt; Email: <a href="mailto:ksgriffin2@wisc.edu">ksgriffin2@wisc.edu</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; On Thu, Oct 30, 2014 at 11:37 AM, Micah Sklut &lt;<a href="mailto:micahs2005@gmail.com">micahs2005@gmail.com</a>&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Hi Kyle,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Thanks for the reply.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; The dataset is of 0.05 degree resolution, so that certainly isn&#39;t<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; the<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; problem. I have attached an image of the same data, but limiting the<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; min/max<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; lat/lon to the US Mid Atlantic. In this image you will see much more<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; detail.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; This is the type of detail I was hoping to achieve for the entire<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; globe. I<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; figured if I increased the resolution of the global png, it would<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; create the<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; desired effect, but as you can see from the global image I attached,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; this<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; wasn&#39;t the case.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Looking forward to hearing your thoughts.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Thank you,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Micah<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; On Thu, Oct 30, 2014 at 12:26 PM, Kyle Griffin &lt;<a href="mailto:ksgriffin2@wisc.edu">ksgriffin2@wisc.edu</a>&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; Micah,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; This looks more like a limitation of your dataset - SST data is not<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; of<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; infinite resolution, and you&#39;re plotting far more pixels than would<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; be data<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; points in even a 0.1˚ dataset! It looks like the internal pixels<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; are the<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; same size as your coastlines, so I don&#39;t see an issue with NCL<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; there. More<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; specifically, you are not actually plotting coastlines - they only<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; plot if<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; you tell them to plot with a call to gsn_csm_map or another similar<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; plotting<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; tool. If you&#39;re looking for high resolution coastlines, look at the<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; RANGS<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; mapping capabilities in NCL. Beyond that, you can always plot<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; shapefiles as<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; well.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; Yes, vector images are going to be extremely large and painful for<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; even a moderate resolution file over the full globe. When you say<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; raster,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; are you talking about it in the image sense (non-vector file) or in<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; the<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; cnFillMode sense (RasterFill, AreaFill, etc.;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; <a href="https://www.ncl.ucar.edu/Document/Graphics/Resources/cn.shtml#cnFillMode" target="_blank">https://www.ncl.ucar.edu/Document/Graphics/Resources/cn.shtml#cnFillMode</a>)?<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; Raster fill mode will make the data more blocky and reduce<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; interpolation<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; between points, but the trade-off is a much faster plotting of the<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; image and<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; works well for high-resolution datasets being plotted at relatively<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; low<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; resolution/wide zoom.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; Kyle<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; ----------------------------------------<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; Kyle S. Griffin<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; Department of Atmospheric and Oceanic Sciences<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; University of Wisconsin - Madison<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; Room 1421<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; 1225 W Dayton St, Madison, WI 53706<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; Email: <a href="mailto:ksgriffin2@wisc.edu">ksgriffin2@wisc.edu</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; On Thu, Oct 30, 2014 at 9:58 AM, Micah Sklut &lt;<a href="mailto:micahs2005@gmail.com">micahs2005@gmail.com</a>&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt; wrote:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; Hi,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; This is a follow up to my previous posts, in reference to<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; searching<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; for high resolution images that could be used as<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; zooming/navigating<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; (specific interest is with image tile layers).<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; I figured if I created a png file with a high resolution, it would<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; be<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; able to capture the high detail, like with coastlines and so<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; forth.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; I&#39;ve attached an image with very high resolution (16384x16384),<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; but<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; as you can see, if you zoom the global image into the coastlines<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; they are<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; extremely blocky.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; Is is possible to capture high resolution features, such as<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; coastlines in a global raster image with NCL?<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; FYI, I tried the vector image route, but the file size was<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; gigantic,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; so that didn&#39;t seem like a proper route.<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; Thank you,<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; --<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; Micah Sklut<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; ncl-talk mailing list<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; List instructions, subscriber options, unsubscribe:<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; --<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt; Micah Sklut<br>
&gt;&gt; &gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;&gt; --<br>
&gt;&gt; &gt;&gt;&gt; Micah Sklut<br>
&gt;&gt; &gt;&gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; --<br>
&gt;&gt; &gt; Micah Sklut<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; ncl-talk mailing list<br>
&gt;&gt; &gt; List instructions, subscriber options, unsubscribe:<br>
&gt;&gt; &gt; <a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
&gt;&gt; &gt;<br>
&gt;<br>
&gt;<br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br>Micah Sklut<br><br>
</div>