Web Kit Reference for C

Total Page:16

File Type:pdf, Size:1020Kb

Web Kit Reference for C Web Kit Reference for C June 6, 2003 Even though Apple has reviewed this manual, APPLE MAKES NO WARRANTY OR Apple Computer, Inc. REPRESENTATION, EITHER EXPRESS OR © 2003, 2004 Apple Computer, Inc. IMPLIED, WITH RESPECT TO THIS MANUAL, ITS QUALITY, ACCURACY, All rights reserved. MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. AS A RESULT, THIS MANUAL IS SOLD ªAS IS,º AND YOU, THE No part of this publication may be PURCHASER, ARE ASSUMING THE ENTIRE reproduced, stored in a retrieval system, or RISK AS TO ITS QUALITY AND ACCURACY. transmitted, in any form or by any means, IN NO EVENT WILL APPLE BE LIABLE FOR mechanical, electronic, photocopying, DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES recording, or otherwise, without prior RESULTING FROM ANY DEFECT OR written permission of Apple Computer, Inc., INACCURACY IN THIS MANUAL, even if with the following exceptions: Any person advised of the possibility of such damages. is hereby authorized to store documentation THE WARRANTY AND REMEDIES SET FORTH ABOVE ARE EXCLUSIVE AND IN on a single computer for personal use only LIEU OF ALL OTHERS, ORAL OR WRITTEN, and to print copies of documentation for EXPRESS OR IMPLIED. No Apple dealer, agent, or employee is authorized to make any personal use provided that the modification, extension, or addition to this documentation contains Apple’s copyright warranty. notice. Some states do not allow the exclusion or limitation of implied warranties or liability for The Apple logo is a trademark of Apple incidental or consequential damages, so the Computer, Inc. above limitation or exclusion may not apply to you. This warranty gives you specific legal Use of the “keyboard” Apple logo rights, and you may also have other rights which vary from state to state. (Option-Shift-K) for commercial purposes without the prior written consent of Apple may constitute trademark infringement and unfair competition in violation of federal and state laws. No licenses, express or implied, are granted with respect to any of the technology described in this document. Apple retains all intellectual property rights associated with the technology described in this document. This document is intended to assist application developers to develop applications only for Apple-labeled or Apple-licensed computers. Every effort has been made to ensure that the information in this document is accurate. Apple is not responsible for typographical errors. Apple Computer, Inc. 1 Infinite Loop Cupertino, CA 95014 408-996-1010 Apple, the Apple logo, Carbon, Cocoa, Mac, and Mac OS are trademarks of Apple Computer, Inc., registered in the United States and other countries. Safari is a trademark of Apple Computer, Inc. Objective-C is a trademark of NeXT Software, Inc. Simultaneously published in the United States and Canada. Contents Chapter 1 Web Kit Reference for C 5 WebKit C Functions 5 WebInitForCarbon 5 HIWebViewCreate 5 HIWebViewGetWebView 6 ConvertNSImageToCGImageRef 6 Document Revision History 9 Index 11 3 © 2003, 2004 Apple Computer, Inc. All Rights Reserved. CONTENTS 4 © 2003, 2004 Apple Computer, Inc. All Rights Reserved. CHAPTER 1 Web Kit Reference for C Framework: Carbon/Carbon.h Header: HIWebView.h, CarbonUtils.h The Web Kit C API provides a way to embed a web view in a Carbon window. Once you have added the view to a window, you must load information to display URL content using native Cocoa classes. For more details on how to add web views to your application and how to display and manage content using Objective-C APIs, see Displaying Web Content. WebKit C Functions WebInitForCarbon Initializes Web Kit. void WebInitForCarbon(void); Discussion You must call this function before making any other Web Kit calls. Availability Available in Mac OS X 10.2 with Safari 1.0 and later. Header: CarbonUtils.h HIWebViewCreate Creates an HIView-based container for web content. OSStatus HIWebViewCreate (HIViewRef *outControl); Parameter Descriptions outControl On return, outControl points to the newly-created web view. WebKit C Functions 5 © 2003, 2004 Apple Computer, Inc. All Rights Reserved. CHAPTER 1 Web Kit Reference for C function result A result code. Discussion The web view is a standard HIView, so you can use any of the standard HIView functions to manipulate it. Note however, that the web view cannot currently be obscured by other views above it. Availability Available in Mac OS X 10.2 with Safari 1.0 and later. Header: HIWebView.h HIWebViewGetWebView Obtains the Cocoa NSView associated with the web view. WebView* HIWebViewGetView (HIViewRef inView); Parameter Descriptions inView The web view whose Cocoa equivalent you want to obtain. function result The Cocoa equivalent of the web view. Discussion You must obtain the Cocoa web view if you want to make native Cocoa calls to manipulate the view contents. Availability Available in Mac OS X 10.2 with Safari 1.0 and later. Header: HIWebView.h ConvertNSImageToCGImageRef Creates a Core Graphics image from a Cocoa NSImage. CGImageRef ConvertNSImageToCGImageRef (NSImage *inImage); Parameter Descriptions inImage A reference to the Cocoa NSImage to convert. function result A reference to the Core Graphics image. Discussion You may need to use this function if you want to display icons for URLs from the history or page icons. Availability Available in Mac OS X 10.2 with Safari 1.0 and later. 6 WebKit C Functions © 2003, 2004 Apple Computer, Inc. All Rights Reserved. CHAPTER 1 Web Kit Reference for C Header: CarbonUtils.h WebKit C Functions 7 © 2003, 2004 Apple Computer, Inc. All Rights Reserved. CHAPTER 1 Web Kit Reference for C 8 WebKit C Functions © 2003, 2004 Apple Computer, Inc. All Rights Reserved. REVISION HISTORY Document Revision History This table describes the revisions to Web Kit Reference for C. Date Notes June 6, 2003 This initial release describes the C APIs available for embedding web content in a Carbon application. 9 © 2003, 2004 Apple Computer, Inc. All Rights Reserved. REVISION HISTORY Document Revision History 10 © 2003, 2004 Apple Computer, Inc. All Rights Reserved. Index C ConvertNSImageToCGImageRef function 6 H HIWebViewCreate function 5 HIWebViewGetWebView function 6 W WebInitForCarbon function 5 11 © 2003, 2004 Apple Computer, Inc. All Rights Reserved..
Recommended publications
  • Mac OS X Server Administrator's Guide
    034-9285.S4AdminPDF 6/27/02 2:07 PM Page 1 Mac OS X Server Administrator’s Guide K Apple Computer, Inc. © 2002 Apple Computer, Inc. All rights reserved. Under the copyright laws, this publication may not be copied, in whole or in part, without the written consent of Apple. The Apple logo is a trademark of Apple Computer, Inc., registered in the U.S. and other countries. Use of the “keyboard” Apple logo (Option-Shift-K) for commercial purposes without the prior written consent of Apple may constitute trademark infringement and unfair competition in violation of federal and state laws. Apple, the Apple logo, AppleScript, AppleShare, AppleTalk, ColorSync, FireWire, Keychain, Mac, Macintosh, Power Macintosh, QuickTime, Sherlock, and WebObjects are trademarks of Apple Computer, Inc., registered in the U.S. and other countries. AirPort, Extensions Manager, Finder, iMac, and Power Mac are trademarks of Apple Computer, Inc. Adobe and PostScript are trademarks of Adobe Systems Incorporated. Java and all Java-based trademarks and logos are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries. Netscape Navigator is a trademark of Netscape Communications Corporation. RealAudio is a trademark of Progressive Networks, Inc. © 1995–2001 The Apache Group. All rights reserved. UNIX is a registered trademark in the United States and other countries, licensed exclusively through X/Open Company, Ltd. 062-9285/7-26-02 LL9285.Book Page 3 Tuesday, June 25, 2002 3:59 PM Contents Preface How to Use This Guide 39 What’s Included
    [Show full text]
  • Mac OS X: an Introduction for Support Providers
    Mac OS X: An Introduction for Support Providers Course Information Purpose of Course Mac OS X is the next-generation Macintosh operating system, utilizing a highly robust UNIX core with a brand new simplified user experience. It is the first successful attempt to provide a fully-functional graphical user experience in such an implementation without requiring the user to know or understand UNIX. This course is designed to provide a theoretical foundation for support providers seeking to provide user support for Mac OS X. It assumes the student has performed this role for Mac OS 9, and seeks to ground the student in Mac OS X using Mac OS 9 terms and concepts. Author: Robert Dorsett, manager, AppleCare Product Training & Readiness. Module Length: 2 hours Audience: Phone support, Apple Solutions Experts, Service Providers. Prerequisites: Experience supporting Mac OS 9 Course map: Operating Systems 101 Mac OS 9 and Cooperative Multitasking Mac OS X: Pre-emptive Multitasking and Protected Memory. Mac OS X: Symmetric Multiprocessing Components of Mac OS X The Layered Approach Darwin Core Services Graphics Services Application Environments Aqua Useful Mac OS X Jargon Bundles Frameworks Umbrella Frameworks Mac OS X Installation Initialization Options Installation Options Version 1.0 Copyright © 2001 by Apple Computer, Inc. All Rights Reserved. 1 Startup Keys Mac OS X Setup Assistant Mac OS 9 and Classic Standard Directory Names Quick Answers: Where do my __________ go? More Directory Names A Word on Paths Security UNIX and security Multiple user implementation Root Old Stuff in New Terms INITs in Mac OS X Fonts FKEYs Printing from Mac OS X Disk First Aid and Drive Setup Startup Items Mac OS 9 Control Panels and Functionality mapped to Mac OS X New Stuff to Check Out Review Questions Review Answers Further Reading Change history: 3/19/01: Removed comment about UFS volumes not being selectable by Startup Disk.
    [Show full text]
  • Carbon Copy Cloner Documentation: English
    Carbon Copy Cloner Documentation: English Getting started with CCC System Requirements, Installing, Updating, and Uninstalling CCC CCC License, Registration, and Trial FAQs Trouble Applying Your Registration Information? Establishing an initial backup Preparing your backup disk for a backup of Mac OS X Restoring data from your backup What's new in CCC Features of CCC specific to Lion and greater Release History Carbon Copy Cloner's Transition to a Commercial Product: Frequently Asked Questions Credits Example backup scenarios I want to clone my entire hard drive to a new hard drive or a new machine I want to backup my important data to another Macintosh on my network I want to backup multiple machines or hard drives to the same hard drive I want my backup task to run automatically on a scheduled basis Backing up to/from network volumes and other non-HFS volumes I want to back up my whole Mac to a Time Capsule or other network volume I want to defragment my hard drive Backup and archiving settings Excluding files and folders from a backup task Protecting data that is already on your destination volume Managing previous versions of your files Automated maintenance of CCC archives Advanced Settings Some files and folders are automatically excluded from a backup task The Block-Level Copy Scheduling Backup Tasks Scheduling a task and basic settings Performing actions Before and After the backup task Deferring and skipping scheduled tasks Frequently asked questions about scheduled tasks Email and Growl notifications Backing Up to Disk Images
    [Show full text]
  • Process: Com.Apple.Webkit.Webcontent [42333] Path: /System
    Process: com.apple.WebKit.WebContent [42333] Path: /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/ A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/ com.apple.WebKit.WebContent Identifier: com.apple.WebKit.WebContent Version: 10601 (10601.2.7.2) Build Info: WebKit2-7601002007002000~4 Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: Safari [42245] User ID: 501 Date/Time: 2016-01-09 12:39:26.291 -0800 OS Version: Mac OS X 10.10.5 (14F1021) Report Version: 11 Anonymous UUID: 0B08DE02-8D5C-FB4B-694B-21993A99903D Sleep/Wake UUID: 0A89A049-455B-4641-8229-7CFA767730FA Time Awake Since Boot: 1200000 seconds Time Since Wake: 2100 seconds Crashed Thread: 24 com.apple.coremedia.audiomentor Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: EXC_I386_GPFLT Application Specific Information: Bundle controller class: BrowserBundleController Process Model: Multiple Web Processes Thread 0:: Dispatch queue: com.apple.main-thread 0 libobjc.A.dylib 0x00007fff8f5950d7 objc_msgSend + 23 1 com.apple.Foundation 0x00007fff96fb9915 NSKeyValueWillChange + 231 2 com.apple.Foundation 0x00007fff96f7d801 - [NSObject(NSKeyValueObserverNotification) willChangeValueForKey:] + 216 3 com.apple.avfoundation 0x00007fff91051ba5 -[AVPlayerItem willChangeValueForKey:] + 86 4 com.apple.avfoundation 0x00007fff910c5978 __avplayeritem_fpItemNotificationCallback_block_invoke + 2669 5 libdispatch.dylib 0x00007fff9b91a700 _dispatch_call_block_and_release + 12 6 libdispatch.dylib 0x00007fff9b916e73 _dispatch_client_callout + 8 7 libdispatch.dylib
    [Show full text]
  • Carbon Black Cloud Python API Documentation Release 1.3.3
    Carbon Black Cloud Python API Documentation Release 1.3.3 Carbon Black Developer Network Aug 09, 2021 User Guide 1 Major Features 3 2 API Credentials 5 3 Getting Started 7 3.1 Installation................................................7 3.2 Authentication..............................................9 3.3 Getting Started with the Carbon Black Cloud Python SDK - “Hello CBC”............... 14 3.4 Concepts................................................. 17 3.5 Guides and Resources.......................................... 26 3.6 Porting Applications from CBAPI to Carbon Black Cloud SDK.................... 26 3.7 Logging & Diagnostics.......................................... 31 3.8 Testing.................................................. 32 3.9 Changelog................................................ 33 4 Full SDK Documentation 39 4.1 Audit and Remediation.......................................... 39 4.2 Credential Providers........................................... 51 4.3 Developing New Credential Providers.................................. 53 4.4 Endpoint Standard............................................ 56 4.5 Enterprise EDR.............................................. 68 4.6 Platform................................................. 86 4.7 Workload................................................. 127 4.8 CBC SDK................................................ 133 4.9 Exceptions................................................ 254 5 Indices and tables 257 Python Module Index 259 Index 261 i ii Carbon Black Cloud Python API Documentation,
    [Show full text]
  • A Brief Technical Introduction
    Mac OS X A Brief Technical Introduction Leon Towns-von Stauber, Occam's Razor LISA Hit the Ground Running, December 2005 http://www.occam.com/osx/ X Contents Opening Remarks..............................3 What is Mac OS X?.............................5 A New Kind of UNIX.........................12 A Diferent Kind of UNIX..................15 Resources........................................39 X Opening Remarks 3 This is a technical introduction to Mac OS X, mainly targeted to experienced UNIX users for whom OS X is at least relatively new This presentation covers primarily Mac OS X 10.4.3 (Darwin 8.3), aka Tiger X Legal Notices 4 This presentation Copyright © 2003-2005 Leon Towns-von Stauber. All rights reserved. Trademark notices Apple®, Mac®, Macintosh®, Mac OS®, Finder™, Quartz™, Cocoa®, Carbon®, AppleScript®, Bonjour™, Panther™, Tiger™, and other terms are trademarks of Apple Computer. See <http://www.apple.com/legal/ appletmlist.html>. NeXT®, NeXTstep®, OpenStep®, and NetInfo® are trademarks of NeXT Software. See <http://www.apple.com/legal/nexttmlist.html>. Other trademarks are the property of their respective owners. X What Is It? 5 Answers Ancestry Operating System Products The Structure of Mac OS X X What Is It? Answers 6 It's an elephant I mean, it's like the elephant in the Chinese/Indian parable of the blind men, perceived as diferent things depending on the approach X What Is It? Answers 7 Inheritor of the Mac OS legacy Evolved GUI, Carbon (from Mac Toolbox), AppleScript, QuickTime, etc. The latest version of NeXTstep Mach, Quartz (from Display PostScript), Cocoa (from OpenStep), NetInfo, apps (Mail, Terminal, TextEdit, Preview, Interface Builder, Project Builder, etc.), bundles, faxing from Print panel, NetBoot, etc.
    [Show full text]
  • Carbon 3.16 Release Notes
    Carbon 3.16 Release Notes v1.0 Carbon 3.16 Release Notes Table of Contents INTRODUCTION ................................................................................................................................... 4 DETAILED LISTS OF FEATURES, BUG FIXES, & TICKETS ........................................................................... 5 CARBON SOFTWARE VERSIONS ............................................................................................................ 5 NEW SYSTEM SPECIFICATIONS AND REQUIREMENTS ........................................................................... 6 SYSTEM REQUIREMENTS ................................................................................................................................. 6 MINIMUM SYSTEM ........................................................................................................................................ 6 RECOMMENDED SYSTEM ................................................................................................................................ 6 NEW FEATURES – OVERVIEW ............................................................................................................... 7 NEW WORKFLOW EXAMPLES ............................................................................................................... 9 F‐12127: SMOOTH STREAMING EXPORTER WITH MULTIPLE AUDIO STREAMS ...................................................... 10 F‐12133: V‐CHIP INFORMATION INSERTION ..................................................................................................
    [Show full text]
  • Apple Safari – PWN2OWN Desktop Exploit
    Apple Safari – PWN2OWN Desktop Exploit 2018-10-29 (Fabian Beterke, Georgi Geshev, Alex Plaskett) Contents Contents ........................................................................................................ 1 1. Introduction ............................................................................................... 2 2. Browser Vulnerability Details ...................................................................... 3 3. Browser Exploitation ................................................................................ 11 3.1 Memory Layout and Trigger Objects ................................................................... 11 3.2 Heap RefPtr Information Leak ............................................................................. 12 3.3 Arbitrary Decrement Primitive ............................................................................. 13 3.4 Read Primitive ..................................................................................................... 13 3.5 JIT Page Location ................................................................................................ 17 3.6 Shell Code Execution .......................................................................................... 18 4. Dock Vulnerability Details ........................................................................ 20 5. Dock Exploitation ..................................................................................... 25 6. Appendix ................................................................................................
    [Show full text]
  • PSC Macos 3.3.2 Release Notes.Pdf ‏930 KB
    PSC sensor version 3.3.2.58 is a GA (General Availability) release for macOS only. In these release notes: ● Important notification about the certificate whitelist process. ● Release checksums. ● New feature: Sensor UI Rebrand. ​ ● New feature: Mojave App Notarization. ● New feature: Last active user on Endpoint Management page ● New feature: Obfuscation of command line inputs ● Fixed in this release. ● Known issues. Important Devices that are upgrading from sensor versions 3.0 and older to 3.1+ should have the new ​ ​ ​ ​ code signing certificate (Team ID 7AGZNQ2S2T) whitelisted prior to the sensor upgrade. This ​ ​ procedure is required because of a Team ID change in the CB Defense code signing certificate that was introduced in the 3.1 sensor release. See the Known issues section for more details. ​ ​ Carbon Black recommends using an MDM-compatible mass deploy solution to push the updates, pre-approve, and whitelist the KEXT code signing certificate. Please see the following User Exchange article about granting the sensor Full Disk Access as required by macOS 10.14+: macOS 10.14+ Privacy Changes and Granting the macOS Sensor ​ Access. ​ Release checksums 3.3.2.58 DMG SHA256 Checksum ea3564331b4f6caa5c95d58500aee31ac99a602a418eab9441bcd928a79be1c8 3.3.2.58 PKG SHA256 Checksum d6618a8a11de6b0b273b0bc17cb7379ead3b33b24895a09b69bcef9337ae8989 Carbon Black, Inc. | 1100 Winter Street, Waltham, MA 02451 U​ SA | Tel: 617.393.7400 Copyright © 2011–2019 Carbon Black, Inc. All rights reserved. Carbon Black, CB Defense, and CB LiveOps are registered trademarks and/or trademarks of Carbon Black, Inc. in the United States and other countries. All other trademarks and product names may be the trademarks of their respective owners 1 New features Sensor UI Rebrand As part of a company wide rebrand, the macOS sensor UI (including icons, favicons, the installer background, etc.) has been updated to match the PSC console and the rest of the company branding.
    [Show full text]
  • 8.5.0 MAC AGENT RELEASE NOTES Build: 8.5.0.72 Date: 17 March, 2021
    8.5.0 MAC AGENT RELEASE NOTES Build: 8.5.0.72 Date: 17 March, 2021 Introduction This document provides change information regarding VMware Carbon Black CB Protection 8.5.0 Mac agents and instructions for installation. Note: VMware Carbon Black App Control Server v8.5.0 included rebranding. Previous versions were referred to as Cb Protection. The server product is now Carbon Black App Control and references in the software and documentation reflect that change. This Mac Agent is still branded as Cb Protection and will be rebranded App Control in a future release. Installation As of the 8.1.4 server release, the Mac Agent no longer comes bundled with the App Server, nor does it require manual (command line) steps to add it to the server. You can upgrade Mac Agents without having to upgrade their App Control Server. Please visit the latest App Control User Guide for more information. For information regarding what Mac operating systems are supported in this release, please review the CB Response sensors & CB Protection agents document on the Carbon Black User Exchange. Purpose of This Release The v8.5.0 Mac Agent provides improved performance, security, and new branding for the user interface. For more detailed information, please review the specific sections carefully: New Features and Product Enhancements Corrective Content Known Issues and Limitations COPYRIGHT © 2004-2021 VMWARE, INC. ALL RIGHTS RESERVED. CARBON BLACK IS A REGISTERED TRADEMARK AND/OR TRADEMARK OF VMWARE, INC. IN THE UNITED STATES AND OTHER COUNTRIES. ALL OTHER TRADEMARKS AND PRODUCT NAMES MAY BE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.
    [Show full text]
  • Itree Science Changes – 2/2021 1) New Carbon Equations and New
    Science changes integrated in i-Tree Suite v6.1.36 and Eco v6.0.22 released Feb2021 iTree Science Changes – 2/2021 1) New carbon equations and new process to estimate carbon storage and sequestration using wood density a. Further Detail - See CarbonEquations_2020 document. i. Values will go up and down b. Applications impacted: i. Eco ii. Forecast iii. API (MyTree, Design, Planting) c. Reason i. To get more species/genus specific equations. ii. To adjust sequestration values for differing tree wood densities when an equation is not species specific. 2) Carbon equations are queried based on taxonomic hierarchy a. SAS used to lookup species, genus and then average all softwood or hardwood values i. This significantly impacts the carbon values in Eco b. Applications impacted: i. Eco c. Reason i. Increased accuracy 3) Tropical carbon equations based on location. a. When a project location is classified as tropical application defaults to tropical equations based on Dry, Moist or Wet designation. Users can opt to use the standard species specific equations. b. Applications impacted: i. Eco ii. Forecast iii. API (MyTree, Design, Planting) c. Reason: i. To account for the fact that carbon sequestration rates are more dependent on climate than species in tropical locations. 4) Annual DBH growth rates based on species specific slow, moderate, and fast growth rate classifications, matching to the method of forecast and API. a. Applications impacted: i. Eco b. Reason: i. To improve carbon sequestration estimates. 5) Leaf area and leaf biomass adjusted based on actual dieback not categorical condition classes. a. The maximum value between dieback and percent crown missing is used to adjust the values.
    [Show full text]
  • Quantifying Changes in Carbon Pools with Shrub Invasion of Desert Grasslands Using Multi-Angular Data from EOS Terra and Aqua –– Preliminary Results ––
    NASA Earth Observing System (EOS) Quantifying Changes in Carbon Pools with Shrub Invasion of Desert Grasslands using Multi-Angular Data from EOS Terra and Aqua –– preliminary results –– December 8, 2004 C Pools from EOS MISR & MODIS 1 Carbon Pools in Desert Grasslands from EOS –– project start July 2004 –– –– people –– Mark J. Chopping Montclair State University Lihong Su Montclair State University Albert Rango USDA/ARS John V. Martonchik NASA/Jet Propulsion Laboratory Debra P. C. Peters USDA/ARS William J. Parton NREL/Colorado State University Quick Time™ and a TIFF (Uncompr ess ed) decompr ess or ar e needed to see this pic ture. December 8, 2004 C Pools from EOS MISR & MODIS 2 Carbon Pools in Desert Grasslands from EOS Acknowledgment: This work is supported by NASA grant NNG04GK91G to EOS project EOS/03-0183-0465 under EOS/LCLUC, (program manager: Dr. Garik Gutman). Data sets were provided by NASA EOS/EOSDIS/LaRC; NSF (grants DEB-0080412 and DEB-94-11971 to the Jornada Basin and Sevilleta NWR LTERs, respectively); and the USDA, Agricultural Research Service, Jornada Experimental Range. December 8, 2004 C Pools from EOS MISR & MODIS 3 overview Goal: To improve estimates of above- and belowground C pools in desert grasslands by providing improved maps of: - plant community type (Kremer & Running, 19931) - canopy structural parameters - soil/shrub/grass fractional cover Method: exploit unique information content of multi- angle remotely-sensed data from MISR & MODIS on NASA EOS satellites. 1 See references on later slide. December 8, 2004 C Pools from EOS MISR & MODIS 4 why? 1. World-wide increase in woody plant abundance in grasslands since C19th, e.g.
    [Show full text]