Publishable Quality Graphics I Raster Formats: Png, Jpeg, Tiff, Gif, Bmp,

Total Page:16

File Type:pdf, Size:1020Kb

Publishable Quality Graphics I Raster Formats: Png, Jpeg, Tiff, Gif, Bmp, MATH36032 Problem Solving by Computer Publishable Quality Graphics I Raster formats: png, jpeg, tiff, gif, bmp, ... I Vector formats: svg, ... I Container formats (for special graphic softwares): cpt (Corel Photo Paint), psd (Adobe PhotoShop), psp (Corel Paint Shop Pro), xcf (GIMP), ... Different formats for different usage: jpeg/jpg for photo; gif for animation; ... Other differences: Lossy/lossless compression Which format of figures (images) do you know? Which format of figures (images) do you know? I Raster formats: png, jpeg, tiff, gif, bmp, ... I Vector formats: svg, ... I Container formats (for special graphic softwares): cpt (Corel Photo Paint), psd (Adobe PhotoShop), psp (Corel Paint Shop Pro), xcf (GIMP), ... Different formats for different usage: jpeg/jpg for photo; gif for animation; ... Other differences: Lossy/lossless compression Raster Image vs Vector Image Any difference between the two logos? (keep on zooming in) Use vector images (eps,svg,...) whenever possible! Exporting jpg directly from MATLAB x = linspace(0,5,101); plot(x,erf(x),x,airy(−5*x)) % Save as"jpg" figure What could be improved for this figure? The improved figure 1 Error Function 0.75 Airy Function 0.5 0.25 f(x) 0 −0.25 −0.5 0 1 2 3 4 5 x More points for "Airy Function"; increase line width; better resolution; less ticks in horizontal axis(?); extend the vertical axis (above one); legend explaining the curves; different styles for the two functions; ... Compare them together 1 Error Function 0.75 Airy Function 0.5 0.25 f(x) 0 −0.25 −0.5 0 1 2 3 4 5 x Know the names first ... 1 Error Function 0.75 Airy Function 0.5 legend 0.25 f(x) 0 −0.25 XTick −0.5 0 1 2 3 4 5 x <− xlabel Default setting and its improvement I Narrow line width? plot( ..., 'Linewidth',2) I Small font size? (gca : get current axis) set(gca,'fontsize',18); I Axis label xlabel('x','fontsize',14,'fontname','times roman') I Axis Tick set(gca,'XTick',0:1:5) I More complicated legend? lg = legend('Error Function','Airy Function'); set(lg,'Position',[0.48 0.75 0.45 0.1], ... 'box','off'); Finally, save the right format (for Latex) print -depsc2 myfig.eps % c for color print -deps2 myfig.eps % for black white I Warning: What you see on screen may not exactly be the resulting eps or pdf file, need fine tuning of the parameters I DO NOT print (or save) to pdf directly (will be a figure in a full A4 paper, too much unwanted space above and below the figure) I Figures may look different on different devices (screen, printer, projector, ..) or even different viewer. In Microsoft Word, it is done differently ... Edit Copy Figure and then Paste (or shortcut Ctrl+V). ! A4 colour single-sided 21p ⊕ A4 colour double-sided (duplex) 40p ⊕ Many publications (journal articles, textbooks, ...) are still only black-white. Color vs Black-white University Printing Costs: A4 mono single-sided 5p ⊕ A4 mono double-sided (duplex) 8p ⊕ Color vs Black-white University Printing Costs: A4 mono single-sided 5p ⊕ A4 mono double-sided (duplex) 8p ⊕ A4 colour single-sided 21p ⊕ A4 colour double-sided (duplex) 40p ⊕ Many publications (journal articles, textbooks, ...) are still only black-white. Color, black-white, or does not matter? Two exactly the same figures (using print -depsc2 colorfig.eps and print -deps2 grayfig.eps) 1 1 0.8 0.8 0.6 0.6 x x 0.4 0.4 0.2 0.2 0 0 2.6 2.8 3 3.2 3.4 3.6 3.8 4 2.6 2.8 3 3.2 3.4 3.6 3.8 4 r r Which color to use? 1 0.8 0.6 0.4 0.2 0 −0.2 −0.4 −0.6 −0.8 −1 0 1 2 3 4 5 6 7 You may never use certain color(s). To differentiate different curves using line styles instead: plot(x,y1,'--',x,y2,'-*',x,y3,'-d', 'MarkerSize',6); Other vector graphics: Asymptote http://asymptote.sourceforge.net/ The footbal The Sierpinski Sponge Other vector graphics: tikz/pgf http://www.texample.net/tikz/ Editors Pro TEXt TEX MiKTEX pdfTEX 3 4 Systems TEX Engines 2 TEXLive X TE EX 1 5 LuaTEX Mac TEX Formats 9 ConTEXt LATEX 6 7 8 The mindmap A complete graph Gallery made by me (using Asymptote) p=1.25 0.1 p=1.50 p=1.80 RF p=1.95 Branch point 0 z = x + iǫ − W(r) Branch cut −0.1 −0.2 1 2 3 4 z = x iǫ r ρF on x RF − − | | ≤ y v w = f(z) r = r(θ) dθ x u θ τwk τw1 τw1 τw2 xj 1 xj xj+1 xj+2 xj+k − z = z(x) b U ∞ How the source code looks like? Asymptote code for "Football" Tikz/PGF code for "Mindmap" import graph3; size(400); nbeginftikzpictureg currentlight.background=palegreen; npath [ dtrender=render(compression=Zero,merge=true); mindmap, text = white, real c=(1+sqrt(5))/2; level 1 concept/.append style = ffont=nLargenbfseries, sibling angle=90g, triple[] x=f(0,c,1),(0,-c,1),(0,-c,-1)g; level 2 concept/.append style = triple[] y=f(1,0,c),(1,0,-c),(-1,0,-c)g; ffont=nnormalsizenbfseriesg, triple[] z=f(c,1,0),(-c,1,0),(-c,-1,0)g; level 3 concept/.append style = triple[][] Q= f ffont=nsmallnbfseriesg, fz[0],y[1],x[3],x[0],y[0],z[3]g, tex/.style = fconcept, ball color=blue, fz[1],x[0],x[3],y[2],z[2],y[3]g, font=nHugenbfseriesg, fz[2],z[1],y[2],x[2],x[1],y[3]g, engines/.style = fconcept, ball color=green!50!blackg, fz[3],z[0],y[0],x[1],x[2],y[1]g, formats/.style = fconcept, ball color=blue!50!blackg, fx[0],x[3],z[1],y[3],y[0],z[0]g, systems/.style = fconcept, ball color=red!90!blackg, fx[1],x[2],z[2],y[3],y[0],z[3]g, editors/.style = fconcept, ball color=orange!90!blackg fx[2],x[1],z[3],y[1],y[2],z[2]g, ] fx[3],x[0],z[0],y[1],y[2],z[1]g, node [tex] fTEXg [clockwise from=0] fy[0],y[3],x[1],z[3],z[0],x[0]g, fy[1],y[2],x[2],z[3],z[0],x[3]g, child[concept color=green!50!black, nodes=fenginesg] f fy[2],y[1],x[3],z[1],z[2],x[2]g, node fEnginesg [clockwise from=90] fy[3],y[0],x[0],z[1],z[2],x[1]g child f node fnTeXg g g; child f node fpdfnTeXg g child f node fnXeTeXg g path3 p=arc(O,Q[0][0],Q[0][1]); child f node fLuanTeXg gg real R=abs(point(p,reltime(p,1/3))); . Much more complicated than a programming language! Summary I Use vector graphics if possible I Use the right format I Fine tuning the parameters, and pay attention to small details I Figures should complement your writing, and should be referred in the main text I You can invest your time in more advanced graphics (Asymptote, Tikz/PGF, SVG,xfig,...) in the future..
Recommended publications
  • Digital Backgrounds Using GIMP
    Digital Backgrounds using GIMP GIMP is a free image editing program that rivals the functions of the basic versions of industry leaders such as Adobe Photoshop and Corel Paint Shop Pro. For information on which image editing program is best for your needs, please refer to our website, digital-photo- backgrounds.com in the FAQ section. This tutorial was created to teach you, step-by-step, how to remove a subject (person or item) from its original background and place it onto a Foto*Fun Digital Background. Upon completing this tutorial, you will have the skills to create realistic portraits plus photographic collages and other useful functions. If you have any difficulties with any particular step in the process, feel free to contact us anytime at digital-photo-backgrounds.com. How to read this tutorial It is recommended that you use your own image when following the instructions. However, one has been provided for you in the folder entitled "Tutorial Images". This tutorial uses screenshots to visually show you each step of the process. Each step will be numbered which refers to a number within the screenshot image to indicate the location of the function or tool being described in that particular step. Written instructions are first and refer to the following screenshot image. Keyboard shortcuts are shown after most of the described functions and are in parentheses as in the following example (ctrl+T); which would indicate that the "ctrl" key and the letter "T" key should be pressed at the same time. These are keyboard shortcuts and can be used in place of the described procedure; not in addition to the described procedure.
    [Show full text]
  • Seashore Guide
    Seashore The Incomplete Guide Contents Contents..........................................................................................................................1 Introducing Seashore.......................................................................................................4 Product Summary........................................................................................................4 Technical Requirements ..............................................................................................4 Development Notice....................................................................................................4 Seashore’s Philosophy.................................................................................................4 Seashore and the GIMP...............................................................................................4 How do I contribute?...................................................................................................5 The Concepts ..................................................................................................................6 Bitmaps.......................................................................................................................6 Colours .......................................................................................................................7 Layers .........................................................................................................................7 Channels ..................................................................................................................
    [Show full text]
  • Freeware Irfanview Windows 10 Latest Version Download Freeware Irfanview Windows 10 Latest Version Download
    freeware irfanview windows 10 latest version download Freeware irfanview windows 10 latest version download. Advantages of IrfanView 64-bit over 32-bit version: It can load VERY large files/images (image RAM size over 1.3 GB, for special users) Faster for very large images (25+ Megapixels, loading or image operations) Runs 'only' on a 64-bit Windows (Vista, Win7, Win8, Win10) Advantages of IrfanView 32-bit over 64-bit version: Runs on a 32-bit and 64-bit Windows Loads all files/images for normal needs (max. RAM size is about 1.3 GB) Needs less disc space All PlugIns will work: not all PlugIns are ported (yet) to 64-bit (like OCR) and some 32-bit PlugIns must be still used in the 64-bit version, some with limitations (see the "Plugins32" folder) Some old 32-bit PlugIns (like RIOT and Adobe 8BF PlugIn) work only in compatilibilty mode in IrfanView-64 ( only 32-bit 8BF files/effects can be used ) Command line options for scanning (/scan etc.) work only in 32-bit (because no 64-bit TWAIN drivers ) Notes: You can install both versions on the same system, just use different folders . For example: install the 32-bit version in your "Program Files (x86)" folder and the 64-bit version in your "Program Files" folder (install 32-bit PlugIns to IrfanView-32 and 64-bit PlugIns to IrfanView-64, DO NOT mix the PlugIns and IrfanView bit versions) The program name and icon have some extra text in the 64-bit version for better distinguishing. Available 64-bit downloads.
    [Show full text]
  • Digital Photo Editing
    Digital Photo Editing Digital Photo Editing There are two main catagories of photo editing software. 1. Photo Organizers - Programs that help you find your pictures. May also do some editing, and create web pages and collages. Examples: Picasa, XNView, ACDsee, Adobe Photoshop Elements 2. Photo Editors - Work on one picture file at a time. Usually more powerful editing features. Examples: Adobe Photoshop, Gimp, Paint.Net, Corel Paint Shop Photo Organizers Organizers tend to have a similar look and functionality to each other. Thumb nail views, a directory tree of your files and folders, and a slightly larger preview of the picture currently selected. A selection of the most used editing tools, and batch editing for making minor corrections to multiple pictures at once. The ability to create slide shows, contact sheets, and web pages are also features you can expect to see. XNView Picasa ACDsee Some of the editing features included in Photo Organizer software are: Red Eye Reduction, Rotate, Resize, Contrast, Color Saturation, Sharpen Focus and more. Many of these can be done in batch mode to as many pictures as you select. Picasa has added Picnik to it's tool set allowing you to upload your photo to the Picnik website for added editing features. Here is an example of Redeye removal in Picasa. Crop, Straighten, and Fill Light are often needed basic fixes. Saving and converting your picture file. In Xnview you can import about 400 file formats and export in about 50. For the complete list goto http://www.xnview. com/en/formats.html . Here is a list of some of the key file formats your likely to use and / or come across often.
    [Show full text]
  • R-Photo User's Manual
    User's Manual © R-Tools Technology Inc 2020. All rights reserved. www.r-tt.com © R-tools Technology Inc 2020. All rights reserved. No part of this User's Manual may be copied, altered, or transferred to, any other media without written, explicit consent from R-tools Technology Inc.. All brand or product names appearing herein are trademarks or registered trademarks of their respective holders. R-tools Technology Inc. has developed this User's Manual to the best of its knowledge, but does not guarantee that the program will fulfill all the desires of the user. No warranty is made in regard to specifications or features. R-tools Technology Inc. retains the right to make alterations to the content of this Manual without the obligation to inform third parties. Contents I Table of Contents I Start 1 II Quick Start Guide in 3 Steps 1 1 Step 1. Di.s..k.. .S..e..l.e..c..t.i.o..n.. .............................................................................................................. 1 2 Step 2. Fi.l.e..s.. .M..a..r..k.i.n..g.. ................................................................................................................ 4 3 Step 3. Re..c..o..v..e..r.y.. ...................................................................................................................... 6 III Features 9 1 File Sorti.n..g.. .............................................................................................................................. 9 2 File Sea.r.c..h.. ............................................................................................................................
    [Show full text]
  • Forcepoint DLP Supported File Formats and Size Limits
    Forcepoint DLP Supported File Formats and Size Limits Supported File Formats and Size Limits | Forcepoint DLP | v8.8.1 This article provides a list of the file formats that can be analyzed by Forcepoint DLP, file formats from which content and meta data can be extracted, and the file size limits for network, endpoint, and discovery functions. See: ● Supported File Formats ● File Size Limits © 2021 Forcepoint LLC Supported File Formats Supported File Formats and Size Limits | Forcepoint DLP | v8.8.1 The following tables lists the file formats supported by Forcepoint DLP. File formats are in alphabetical order by format group. ● Archive For mats, page 3 ● Backup Formats, page 7 ● Business Intelligence (BI) and Analysis Formats, page 8 ● Computer-Aided Design Formats, page 9 ● Cryptography Formats, page 12 ● Database Formats, page 14 ● Desktop publishing formats, page 16 ● eBook/Audio book formats, page 17 ● Executable formats, page 18 ● Font formats, page 20 ● Graphics formats - general, page 21 ● Graphics formats - vector graphics, page 26 ● Library formats, page 29 ● Log formats, page 30 ● Mail formats, page 31 ● Multimedia formats, page 32 ● Object formats, page 37 ● Presentation formats, page 38 ● Project management formats, page 40 ● Spreadsheet formats, page 41 ● Text and markup formats, page 43 ● Word processing formats, page 45 ● Miscellaneous formats, page 53 Supported file formats are added and updated frequently. Key to support tables Symbol Description Y The format is supported N The format is not supported P Partial metadata
    [Show full text]
  • Designing and Developing a Model for Converting Image Formats Using Java API for Comparative Study of Different Image Formats
    International Journal of Scientific and Research Publications, Volume 4, Issue 7, July 2014 1 ISSN 2250-3153 Designing and developing a model for converting image formats using Java API for comparative study of different image formats Apurv Kantilal Pandya*, Dr. CK Kumbharana** * Research Scholar, Department of Computer Science, Saurashtra University, Rajkot. Gujarat, INDIA. Email: [email protected] ** Head, Department of Computer Science, Saurashtra University, Rajkot. Gujarat, INDIA. Email: [email protected] Abstract- Image is one of the most important techniques to Different requirement of compression in different area of image represent data very efficiently and effectively utilized since has produced various compression algorithms or image file ancient times. But to represent data in image format has number formats with time. These formats includes [2] ANI, ANIM, of problems. One of the major issues among all these problems is APNG, ART, BMP, BSAVE, CAL, CIN, CPC, CPT, DPX, size of image. The size of image varies from equipment to ECW, EXR, FITS, FLIC, FPX, GIF, HDRi, HEVC, ICER, equipment i.e. change in the camera and lens puts tremendous ICNS, ICO, ICS, ILBM, JBIG, JBIG2, JNG, JPEG, JPEG 2000, effect on the size of image. High speed growth in network and JPEG-LS, JPEG XR, MNG, MIFF, PAM, PCX, PGF, PICtor, communication technology has boosted the usage of image PNG, PSD, PSP, QTVR, RAS, BE, JPEG-HDR, Logluv TIFF, drastically and transfer of high quality image from one point to SGI, TGA, TIFF, WBMP, WebP, XBM, XCF, XPM, XWD. another point is the requirement of the time, hence image Above mentioned formats can be used to store different kind of compression has remained the consistent need of the domain.
    [Show full text]
  • Scape D10.1 Keeps V1.0
    Identification and selection of large‐scale migration tools and services Authors Rui Castro, Luís Faria (KEEP Solutions), Christoph Becker, Markus Hamm (Vienna University of Technology) June 2011 This work was partially supported by the SCAPE Project. The SCAPE project is co-funded by the European Union under FP7 ICT-2009.4.1 (Grant Agreement number 270137). This work is licensed under a CC-BY-SA International License Table of Contents 1 Introduction 1 1.1 Scope of this document 1 2 Related work 2 2.1 Preservation action tools 3 2.1.1 PLANETS 3 2.1.2 RODA 5 2.1.3 CRiB 6 2.2 Software quality models 6 2.2.1 ISO standard 25010 7 2.2.2 Decision criteria in digital preservation 7 3 Criteria for evaluating action tools 9 3.1 Functional suitability 10 3.2 Performance efficiency 11 3.3 Compatibility 11 3.4 Usability 11 3.5 Reliability 12 3.6 Security 12 3.7 Maintainability 13 3.8 Portability 13 4 Methodology 14 4.1 Analysis of requirements 14 4.2 Definition of the evaluation framework 14 4.3 Identification, evaluation and selection of action tools 14 5 Analysis of requirements 15 5.1 Requirements for the SCAPE platform 16 5.2 Requirements of the testbed scenarios 16 5.2.1 Scenario 1: Normalize document formats contained in the web archive 16 5.2.2 Scenario 2: Deep characterisation of huge media files 17 v 5.2.3 Scenario 3: Migrate digitised TIFFs to JPEG2000 17 5.2.4 Scenario 4: Migrate archive to new archiving system? 17 5.2.5 Scenario 5: RAW to NEXUS migration 18 6 Evaluation framework 18 6.1 Suitability for testbeds 19 6.2 Suitability for platform 19 6.3 Technical instalability 20 6.4 Legal constrains 20 6.5 Summary 20 7 Results 21 7.1 Identification of candidate tools 21 7.2 Evaluation and selection of tools 22 8 Conclusions 24 9 References 25 10 Appendix 28 10.1 List of identified action tools 28 vi 1 Introduction A preservation action is a concrete action, usually implemented by a software tool, that is performed on digital content in order to achieve some preservation goal.
    [Show full text]
  • Les Formats De Fichier Images
    Les formats de fichier images Extension Description Catégorie Quel logiciel pour ouvrir ? diffusion ai Fichier Adobe Illustrator Image Vectorielle Adobe Illustrator pdf Adobe Acrobat Pro png Adobe Photoshop Adobe Photoshop Elements Adobe Flash Adobe Reader Apple Preview IMSI TurboCAD Deluxe ACD Systems Canvas CorelDRAW Graphics Suite Inkscape blend Fichier de données 3D Blender Image 3D Blender jpg/jpeg png avi bmp Fichier Image Bitmap Image Bitmap Apple Preview jpg Adobe Photoshop png Adobe Photoshop Elements Adobe Illustrator The GIMP Paint Paint.NET Roxio Toast The Logo Creator Corel Paint Shop Photo Pro X3 ACDSee Photo Manager 2009 Microsoft Windows Photo Gallery Viewer Nuance PaperPort Nuance OmniPage Professional Roxio Creator Inkscape dwg AtoCAD Drawing Database File Image 3D IMSI TurboCAD Deluxe jpg/jpeg PowerDWG Translator png Microspot DWG Viewer avi SolidWorks eDrawings Viewer Adobe Illustrator Autodesk AutoCAD Autodesk DWG TrueView SolidWorks eDrawings Viewer ACD Systems Canvas Corel Paint Shop Photo Pro Caddie DWG converter AutoDWG Solid Converter DWG IrfanView Formats de fichiers Images 1/7 Les formats de fichier images Extension Description Catégorie Quel logiciel pour ouvrir ? diffusion dxf Drawing Exchange Format File Image 3D TurboCAD Deluxe 16 jpg/jpeg PowerCADD PowerDWG translator png Microspot DWG Viewer avi NeoOffice Draw DataViz MacLink Plus Autodesk AutoCAD IMSI TurboCAD Deluxe SolidWorks eDrawings Viewer Corel Paint Shop Photo Pro ACD Systems Canvas DWG converter DWG2Image Converter OpenOffice.org Draw Adobe Illustrator
    [Show full text]
  • Table of Contents
    Contents in Detail Introduction ..................... xv 1.5 Exercises.................. 24 ThisBook.................. xv 2 Photograph Retouching ....... 25 TheAuthors................ xvi 2.1 Tutorial: Enhancing Badly Taken Production Notes . xvii Photographs . 25 Conventions . xvii Cropping, Straightening, and Acknowledgments . xvii Restoring Perspective . 25 Correcting Exposure . 26 Part I Learning GIMP Correcting the Color Balance . 28 1 Getting Started .............. 3 Removing an Object . 29 1.1 GIMP Basics . 3 Improving Sharpness . 30 The Screen Layout . 3 Removing Red Eye . 30 Dockable Dialogs . 4 2.2 Global Transformations . 32 TheToolbox................ 6 Resizing an Image . 32 The Single-Window Interface . 6 Shearing an Image . 33 1.2 Image Handling Basics . 8 Changing Brightness, Contrast, and Opening an Image . 8 Levels............... 34 Maximizing an Image . 9 Adjusting Colors . 36 Scanning.................. 10 2.3 Local Transformations . 38 Image Window Menus . 11 Making a Selection . 38 Zooming.................. 13 Modifying Sharpness . 41 Saving an Image . 13 Modifying Brightness . 42 1.3 Working with Images . 15 Using the Clone Tool . 45 Resizing an Image . 15 Perspective Cloning . 46 Cropping an Image . 15 More Correction Methods for Red Eye 47 Adding a Frame with Filters . 17 Changing the Sky of a Landscape . 49 UsingLayers................ 18 2.4 Retouching a Scanned Photograph . 50 Drawing in GIMP . 19 Correcting Colors . 50 Printing with GIMP . 20 Correcting Scratches and Spots . 53 1.4 Using a Tablet . 21 Restoring Very Old Photographs . 54 Installing a Tablet . 22 2.5 Advanced Techniques . 55 The Tablet Mouse and Stylus . 22 Making a Photograph Look Older . 55 Working with a Tablet in GIMP . 23 Improving a Portrait . 57 The Book of GIMP ©2013, Olivier Lecarme and Karine Delvare gimp_FINAL_FINAL_pourPDF.indd 7 10/16/2012 11:45:48 AM viii Contents in Detail Contents in Detail 0 ix Using Multiple Captures of the Using the Embossing Filters .
    [Show full text]
  • Registry Support for Multimedia and Metadata in Emu 3.2.03
    Registry support for multimedia and metadata in EMu 3.2.03. • Overview • ImageMagick • Multimedia o Audio o Video o Images • Metadata o EXIF o IPTC o XMP o Embed in derivatives o Extract into Multimedia module o Limiting Colours computation Overview The image, audio and video libraries used to support multimedia have been replaced in KE EMu 3.2.03. The previous libraries were becoming dated and lacked support for newer file formats, in particular 16 bit graphics and CMYK colour spaces, as well as JPEG 2000. The previous libraries also used a simple algorithm for resizing images, which led to loss of clarity and colour. Rather than tie EMu image development to a third party vendor an open source solution was adopted as this provides development for new image formats and metadata standards as they emerge. It was decided that ImageMagick offered the functionally to expand the current image support in EMu. Unfortunately ImageMagick does not provide support for audio or video formats, so it was decided to build this functionality into EMu rather then use third party libraries. Access to metadata stored in image files is made available through ImageMagick. In particular, it has limited support for EXIF, IPTC and XMP metadata profiles. EMu now uses this support to extract metadata from master images and to embed metadata into derived images. This document describes how the new multimedia and metadata features can be configured using the EMu Registry. ImageMagick The ImageMagick libraries distributed with EMu are stored under the same directory as the program executable. If a network installation is performed, the libraries reside on a server machine in a directory accessible to all client machines.
    [Show full text]
  • Are Research Datasets FAIR in the Long Run?
    IJDC | General Article Are Research Datasets FAIR in the Long Run? Dennis Wehrle Klaus Rechert University of Freiburg University of Freiburg Abstract Currently, initiatives in Germany are developing infrastructure to accept and preserve dissertation data together with the dissertation texts (on state level – bwDATA Diss1, on federal level – eDissPlus2). In contrast to specialized data repositories, these services will accept data from all kind of research disciplines. To ensure FAIR data principles (Wilkinson et al., 2016), preservation plans are required, because ensuring accessibility, interoperability and re-usability even for a minimum ten year data redemption period can become a major challenge. Both for longevity and re-usability, file formats matter. In order to ensure access to data, the data’s encoding, i.e. their technical and structural representation in form of file formats, needs to be understood. Hence, due to a fast technical lifecycle, interoperability, re-use and in some cases even accessibility depends on the data’s format and our future ability to parse or render these. This leads to several practical questions regarding quality assurance, potential access options and necessary future preservation steps. In this paper, we analyze datasets from public repositories and apply a file format based long-term preservation risk model to support workflows and services for non-domain specific data repositories. 1 BwDATADiss-bw Data for Dissertations: https://www.alwr-bw.de/kooperationen/bwdatadiss/ 2 EDissPlusDFG-Project – Electronic Dissertations Plus: https://www2.hu-berlin.de/edissplus/ Received 22 January 2018 ~ Accepted 22 January 2018 Correspondence should be addressed to Dennis Wehrle, Hermann-Herder-Str. 10, 79104 Freiburg.
    [Show full text]