How can I load xcel data into simulate arbitary signal VI

Hello,
I am using the labview arbitary signal creator , now i have a pattern which can be easily created in microsoft xcel but i need to load the data in the simulate arbitary signal VI so essentially i need to convert an xcel file into a LVM file . Can i somehow load the xcel data as LVM data.
Thanks
Ams

Ams wrote:
Hello,
I am using the labview arbitary signal creator , now i have a pattern which can be easily created in microsoft xcel but...
If you can generate it in excel, it would be even easier to generate it directly in LabVIEW. Are we still talking about the staircase funcion?
http://forums.ni.com/ni/board/message?board.id=170​&message.id=221036
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • How can I load iCal data into Calendar and Address Book data into Contacts?

    I just bought a MacBook Pro running Yosemite. Migration Assistant could not read the Backup of my old, dead iMac, so I have been transferring data manually. So far Contacts and Calendar are the only Apps I have not been able to set up.

    What OS was the iMac running? I ask because where data is stored can change.

  • How can I load my data faster?  Is there a SQL solution instead of PL/SQL?

    11.2.0.2
    Solaris 10 sparc
    I need to backfill invoices from a customer. The raw data has 3.1 million records. I have used pl/sql to load these invoices into our system (dev), however, our issue is the amount of time it's taking to run the load - effectively running at approx 4 hours. (Raw data has been loaded into a staging table)
    My research keeps coming back to one concept: sql is faster than pl/sql. Where I'm stuck is the need to programmatically load the data. The invoice table has a sequence on it (primary key = invoice_id)...the invoice_header and invoice_address tables use the invoice_id as a foreign key. So my script takes advantage of knowing the primary key and uses that on the subsequent inserts to the subordinate invoice_header and invoice_address tables, respectively.
    My script is below. What I'm asking is if there are other ideas on the quickest way to load this data...what am I not considering? I have to load the data in dev, qa, then production so the sequences and such change between the environments. I've dummied down the code to protect the customer; syntax and correctness of the code posted here (on the forum) is moot...it's only posted to give the framework for what I currently have.
    Any advice would be greatly appreciated; how can I load the data faster knowing that I need to know sequence values for inserts into other tables?
    DECLARE
       v_inv_id        invoice.invoice_id%TYPE;
       v_inv_addr_id    invoice_address.invoice_address_id%TYPE;
       errString        invoice_errors.sqlerrmsg%TYPE;
       v_guid          VARCHAR2 (128);
       v_str           VARCHAR2 (256);
       v_err_loc       NUMBER;
       v_count         NUMBER := 0;
       l_start_time    NUMBER;
       TYPE rec IS RECORD
          BILLING_TYPE             VARCHAR2 (256),
          CURRENCY                 VARCHAR2 (256),
          BILLING_DOCUMENT         VARCHAR2 (256),
          DROP_SHIP_IND            VARCHAR2 (256),
          TO_PO_NUMBER        VARCHAR2 (256),
          TO_PURCHASE_ORDER   VARCHAR2 (256),
          DUE_DATE                 DATE,
          BILL_DATE                DATE,
          TAX_AMT                  VARCHAR2 (256),
          PAYER_CUSTOMER           VARCHAR2 (256),
          TO_ACCT_NO          VARCHAR2 (256),
          BILL_TO_ACCT_NO          VARCHAR2 (256),
          NET_AMOUNT               VARCHAR2 (256),
          NET_AMOUNT_CURRENCY      VARCHAR2 (256),
          ORDER_DT             DATE,
          TO_CUSTOMER         VARCHAR2 (256),
          TO_NAME             VARCHAR2 (256),
          FRANCHISES       VARCHAR2 (4000),
          UPDT_DT                  DATE
       TYPE tab IS TABLE OF rec
                      INDEX BY BINARY_INTEGER;
       pltab           tab;
       CURSOR c
       IS
          SELECT   billing_type,
                   currency,
                   billing_document,
                   drop_ship_ind,
                   to_po_number,
                   to_purchase_order,
                   due_date,
                   bill_date,
                   tax_amt,
                   payer_customer,
                   to_acct_no,
                   bill_to_acct_no,
                   net_amount,
                   net_amount_currency,
                   order_dt,
                   to_customer,
                   to_name,
                   franchises,
                   updt_dt
            FROM   BACKFILL_INVOICES;
    BEGIN
       l_start_time := DBMS_UTILITY.get_time;
       OPEN c;
       LOOP
          FETCH c
          BULK COLLECT INTO pltab
          LIMIT 1000;
          v_err_loc := 1;
          FOR i IN 1 .. pltab.COUNT
          LOOP
             BEGIN
                v_inv_id :=  SEQ_INVOICE_ID.NEXTVAL;
                v_guid := 'import' || TO_CHAR (CURRENT_TIMESTAMP, 'hhmissff');
                v_str := str_parser (pltab (i).FRANCHISES); --function to string parse  - this could be done in advance, yes.
                v_err_loc := 2;
                v_count := v_count + 1;
                INSERT INTO    invoice nologging
                     VALUES   (v_inv_id,
                               pltab (i).BILL_DATE,
                               v_guid,
                               '111111',
                               'NONE',
                               TO_TIMESTAMP (pltab (i).BILL_DATE),
                               TO_TIMESTAMP (pltab (i).UPDT_DT),
                               'READ',
                               'PAPER',
                               pltab (i).payer_customer,
                               v_str,
                               '111111');
                v_err_loc := 3;
                INSERT INTO    invoice_header nologging
                     VALUES   (v_inv_id,
                               TRIM (LEADING 0 FROM pltab (i).billing_document), --invoice_num
                               NULL,
                               pltab (i).BILL_DATE,                 --invoice_date
                               pltab (i).TO_PO_NUMBER,
                               NULL,
                               pltab (i).net_amount,
                               NULL,
                               pltab (i).tax_amt,
                               NULL,
                               NULL,
                               pltab (i).due_date,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               TO_TIMESTAMP (SYSDATE),
                               TO_TIMESTAMP (SYSDATE),
                               PLTAB (I).NET_AMOUNT_CURRENCY,
                               (SELECT   i.bc_value
                                  FROM   invsvc_owner.billing_codes i
                                 WHERE   i.bc_name = PLTAB (I).BILLING_TYPE),
                               PLTAB (I).BILL_DATE);
                v_err_loc := 4;
                INSERT INTO    invoice_address nologging
                     VALUES   (invsvc_owner.SEQ_INVOICE_ADDRESS_ID.NEXTVAL,
                               v_inv_id,
                               'BLAH INITIAL',
                               pltab (i).BILL_DATE,
                               NULL,
                               pltab (i).to_acct_no,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               SYSTIMESTAMP,
                               NULL);
                v_err_loc := 5;
                INSERT INTO    invoice_address nologging
                     VALUES   ( SEQ_INVOICE_ADDRESS_ID.NEXTVAL,
                               v_inv_id,
                               'BLAH',
                               pltab (i).BILL_DATE,
                               NULL,
                               pltab (i).TO_ACCT_NO,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               SYSTIMESTAMP,
                               NULL);
                v_err_loc := 6;
                INSERT INTO    invoice_address nologging
                     VALUES   ( SEQ_INVOICE_ADDRESS_ID.NEXTVAL,
                               v_inv_id,
                               'BLAH2',
                               pltab (i).BILL_DATE,
                               NULL,
                               pltab (i).TO_CUSTOMER,
                               pltab (i).to_name,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               SYSTIMESTAMP,
                               NULL);
                v_err_loc := 7;
                INSERT INTO    invoice_address nologging
                     VALUES   ( SEQ_INVOICE_ADDRESS_ID.NEXTVAL,
                               v_inv_id,
                               'BLAH3',
                               pltab (i).BILL_DATE,
                               NULL,
                               'SOME PROPRIETARY DATA',
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               NULL,
                               SYSTIMESTAMP,
                               NULL);
                v_err_loc := 8;
                INSERT
                  INTO    invoice_event nologging (id,
                                                             eid,
                                                             root_eid,
                                                             invoice_number,
                                                             event_type,
                                                             event_email_address,
                                                             event_ts)
                VALUES   ( SEQ_INVOICE_EVENT_ID.NEXTVAL,
                          '111111',
                          '222222',
                          TRIM (LEADING 0 FROM pltab (i).billing_document),
                          'READ',
                          'some_user@some_company.com',
                          SYSTIMESTAMP);
                v_err_loc := 9;
                INSERT INTO   backfill_invoice_mapping
                     VALUES   (v_inv_id,
                               v_guid,
                               pltab (i).billing_document,
                               pltab (i).payer_customer,
                               pltab (i).net_amount);
                IF v_count = 10000
                THEN
                   COMMIT;              
                END IF;
             EXCEPTION
                WHEN OTHERS
                THEN
                   errString := SQLERRM;
                   INSERT INTO   backfill_invoice_errors
                        VALUES   (
                                    pltab (i).billing_document,
                                    pltab (i).payer_customer,
                                    errString || ' ' || v_err_loc
                   COMMIT;
             END;
          END LOOP;
          v_err_loc := 10;
          INSERT INTO   backfill_invoice_timing
               VALUES   (
                           ROUND ( (DBMS_UTILITY.get_time - l_start_time) / 100,
                                  2)
                           || ' seconds.',
                           (SELECT   COUNT (1)
                              FROM   backfill_invoice_mapping),
                           (SELECT   COUNT (1)
                              FROM   backfill_invoice_errors),
                           SYSDATE
          COMMIT;
          EXIT WHEN c%NOTFOUND;
       END LOOP;
       COMMIT;
    EXCEPTION
       WHEN OTHERS
       THEN
          errString := SQLERRM;
          INSERT INTO   backfill_invoice_errors
               VALUES   (NULL, NULL, errString || ' ' || v_err_loc);
          COMMIT;
    END;

    Hello
    You could use insert all in your case and make use of sequence.NEXTVAL and sequence.CURRVAL like so (excuse any typos - I can't test without table definitions). I've done the first 2 tables, so it's just a matter of adding the rest in...
    INSERT ALL
         INTO      invoice nologging
                    VALUES   (     SEQ_INVOICE_ID.NEXTVAL,
                                   BILL_DATE,
                                    my_guid,
                                    '111111',
                                    'NONE',
                                    CAST(BILL_DATE AS TIMESTAMP),
                                    CAST(UPDT_DT AS TIMESTAMP),
                                    'READ',
                                    'PAPER',
                                    payer_customer,
                                    parsed_francises,
                                    '111111'
         INTO      invoice_header
              VALUES   (      SEQ_INVOICE_ID.CURRVAL,
                        TRIM (LEADING 0 FROM billing_document), --invoice_num
                        NULL,
                        BILL_DATE,                 --invoice_date
                        TO_PO_NUMBER,
                        NULL,
                        net_amount,
                        NULL,
                        tax_amt,
                        NULL,
                        NULL,
                        due_date,
                        NULL,
                        NULL,
                        NULL,
                        NULL,
                        NULL,
                        SYSTIMESTAMP,
                        SYSTIMESTAMP,
                        NET_AMOUNT_CURRENCY,
                        bc_value,
                        BILL_DATE)
         SELECT 
         src.billing_type,
              src.currency,
              src.billing_document,
              src.drop_ship_ind,
              src.to_po_number,
              src.to_purchase_order,
              src.due_date,
              src.bill_date,
              src.tax_amt,
              src.payer_customer,
              src.to_acct_no,
              src.bill_to_acct_no,
              src.net_amount,
              src.net_amount_currency,
              src.order_dt,
              src.to_customer,
              src.to_name,
              src.franchises,
              src.updt_dt,
              str_parser (src.FRANCHISES) parsed_franchises,
              'import' || TO_CHAR (CURRENT_TIMESTAMP, 'hhmissff') my_guid,
              i.bc_value
            FROM        BACKFILL_INVOICES src,
                 invsvc_owner.billing_codes i
         WHERE   i.bc_name = src.BILLING_TYPE;Some things to note
    1. Don't commit in a loop - you only add to the run time and load on the box ultimately reducing scalability and removing transactional integrity. Commit once at the end of the job.
    2. Make sure you specify the list of columns you are inserting into as well as the values or columns you are selecting. This is good practice as it protects your code from compilation issues in the event of new columns being added to tables. Also it makes it very clear what you are inserting where.
    3. If you use WHEN OTHERS THEN... to log something, make sure you either rollback or raise the exception. What you have done in your code is say - I don't care what the problem is, just commit whatever has been done. This is not good practice.
    HTH
    David
    Edited by: Bravid on Oct 13, 2011 4:35 PM

  • HT204003 How can I load all giftcards into one

    i have a whole bunch if the same brand giftcards on my passbook how can i put them all into 1

    I have two files the file with the main method has four inner classes.
    i tried to use the jar cvf command but it only jars the file i say to jar the inner classes dont get jared. Is there a way of using one command to jar my two files and include the inner clases that are in one of the files?

  • How can I load the data of Manager Beans into an Array?

    Hi all!
    I have a problem when use the ADF model layer (JDeveloper 10g). I want to load the data of a Manager Bean into Array(such as: Array in JavaScript).But I don't know any ways to do.
    Are there any ways to do that?
    Please, help me!
    Thanks so much!

    Hi,
    there is a fundamental difference between an array in Java and an array in JavaScript as the latter is added to the output page while the first sits in a Java class on the server.
    Populating a Java array from a managed bean is straight froward: Just create the Array, loop through the source of the data - ADF binding or the ADF Faces table component - and fill it.
    For a JavaScript Array I would suggest to write the array into a js file and reference it from the web page (which might cause concurrency issues).
    Frank

  • How can I load my Xlet into commercial STB emulator

    Hi
    I have developed some Xlets, and I could run and view the output of those Xlets in XleTView emulator.Now I want to run these xlets in commerial emulators like MHDK STBS .But I don't know how to load these Xlets into that emulator and run
    Any help would be greatly approiated.
    Thanks in advacne.

    hi
    if you want to test Xlets in the same real environment of a digital television, you can use [ OpenCaster|http://www.avalpa.com/the-key-values/15-free-software/33-opencaster] , it's a free software stand-alone carousel server that can do all the DVB tables to and a sample audio video playout server.
    You just need a supported PCI card that can modulate COFDM and drive directly a DVB STB (for DVB-T terrestrial, you could use a [Dektec DTA110T|http://www.dektec.com/Products/DTA-110T/index.asp], BTW i've no business interest with them.. )
    Hope it helps.
    bye
    andrea Venturi

  • How can I load a data in multiple period with a rule files?

    Hi!
    I need to create a rule file the permit me to load a record with multiple period.
    How can I do it?
    Thanks in advance.
    Bye

    As Glenn said, these two types are the typical input files.
    two ways that I can easily think of, but there are more.
    1. Have a row memberwith the period so for sample basic, the row would look lik
    cola,ny,actual,sales,Jan,100
    First case in the rule file you have to map all the member fileds with the dimension name and the data column with the data field.
    2. Have the data for each month as as the column members
    Here is the header followed by a data sample(again for sample basic)
    Product,Market,Scenario,Measure,Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec
    1oo-10,NY,Actual,Sales,100,100,100,100,100,100,100,010,122,111,222,333
    Second case in the rule file you have to map all the member fileds with the corresponding dimension name and the multiple data columns with the corresponding member names for that dimension.

  • How Can One use XML data into our Java Program

    I have an Java Program and an XML file contaning data. I want to parse the xml data and use into my Java Program. How can I do so.

    Check out the org.xml.sax.XMLReader class.

  • How can I load TPX Pantones into CS6 Photoshop palette?

    I use the Pantone papers for Fashion and Home and want to be able to load/download these into my photoshop palette rather than having to print out my designs and then match them to the papers by going tirelessly through the book. I've looked on the Pantone website and their links are useless and seem to be sending me round in circles. Photoshop seems to have every other type of Pantone pre-loaded apart from the TPX ones I need! Can any one help?

    You would need the ACB files from Pantone for the TPX books, and install those in the Photoshop presets folder.
    Sorry, but there are several of the more obscure Pantone books that we haven't shipped yet. (and it takes quite a bit of time to clean up and validate them all)

  • How can I load preview images into an extra file?

    Hi,
    I've got a question concerning those preview images. I wrote a plugin which uses the actual paths of the photos in the catalog an stores those paths of each photo into a log file. Then an external program has access to that file for further handling. So now I would like to use preview photos instead of the raw images. First, because the user might want to use the picture he/she edited with Lightroom; And then because of the size.Processing a preview image of level 5 would be more efficient than the original photo.
    So how can I get those preview photos? And more important: is it possible to store them in an extra file in a jpg format for instance, so that an external program can make use of them?

    Look at source code in PreviewExporter plugin.
    robcole.com - PreviewExporter

  • How can i load Metadata file into georaster?

    Hello everybody,
    I stone a tiff file in my db,I stone tiff file like this:
    1.create GeoRaster Table:
    create table rm_image_t(
    georid number,
    file_type varchar2(30),
    image_file mdsys.sdo_georaster);
    2.create trigger:
    exec sdo_geor_utl.createdmltrigger('rm_image_t','image_file');
    3.Create raster data table:
    create table rdt1 of mdsys.sdo_raster(
    primary key(rasterid,pyramidlevel,bandblocknumber,rowblocknumber,columnblocknumber))
    lob(rasterblock) store as (nocache nologging);
    4.Grant:
    exec dbms_java.grant_permission('OPER','SYS:java.io.FilePermission','c:\aaa.tif','read');
    call dbms_java.grant_permission('MDSYS','SYS:java.io.FilePermission','c:\aaa.tif','read' );
    call dbms_java.grant_permission('OPER','SYS:java.io.FilePermission', 'c:\aaa.tif','read' );
    call dbms_java.grant_permission('PUBLIC','SYS:java.io.FilePermission','c:\aaa.tif','read' );
    call dbms_java.grant_permission('MDSYS','SYS:java.io.FilePermission','c:\aaa.tif','read' );
    call dbms_java.grant_permission('OPER','SYS:java.io.FilePermission', 'c:\aaa.tif','read');
    call dbms_java.grant_permission('PUBLIC','SYS:java.io.FilePermission','c:\aaa.tif','read');
    5.Insert tiff file:
    DECLARE
    geor SDO_GEORASTER;
    BEGIN
    -- Initialize an empty GeoRaster object into which the external image
    -- is to be imported.
    INSERT INTO rm_image_t
    values( 1, 'TIFF', sdo_geor.init('rdt1') );
    -- Import the TIFF image.
    SELECT image_file INTO geor FROM rm_image_t
    WHERE georid = 1 FOR UPDATE;
    sdo_geor.importFrom(geor,'blocksize=(512,512) compression=DEFLATE', 'TIFF', 'file','c:\aaa.tif');
    UPDATE rm_image_t SET image_file = geor WHERE georid = 1;
    COMMIT;
    END;
    Then:
    SQL> SELECT t.georid,
    2 sdo_geor.validategeoraster(t.image_file) isvalid
    3 from rm_image_t t order by georid;
    GEORID ISVALID
    1 TRUE
    But I do not know how to load tiff_file's metadata into georaster.
    Can you help me?thanks!

    My metadata file called aaa.met,it has the following info:
    GROUP = METADATA_FILE
         PRODUCT_CREATION_TIME = 2004-02-12T15:09:20Z
         PRODUCT_FILE_SIZE = 703.1
         STATION_ID = "EDC"
         GROUND_STATION = "SGS"
         GROUP = ORTHO_PRODUCT_METADATA
              SPACECRAFT_ID = "Landsat7"
              SENSOR_ID = "ETM+"
              ACQUISITION_DATE = 2001-10-03
              WRS_PATH = 138
              WRS_ROW = 036
              SCENE_CENTER_LAT = +34.6152272
              SCENE_CENTER_LON = +91.7569675
              SCENE_UL_CORNER_LAT = +35.5648302
              SCENE_UL_CORNER_LON = +90.9958720
              SCENE_UR_CORNER_LAT = +35.2772270
              SCENE_UR_CORNER_LON = +92.9740331
              SCENE_LL_CORNER_LAT = +33.9414953
              SCENE_LL_CORNER_LON = +90.5596099
              SCENE_LR_CORNER_LAT = +33.6605964
              SCENE_LR_CORNER_LON = +92.5005228
              SCENE_UL_CORNER_MAPX = 318373.500
              SCENE_UL_CORNER_MAPY = 3937531.500
              SCENE_UR_CORNER_MAPX = 497638.500
              SCENE_UR_CORNER_MAPY = 3903787.500
              SCENE_LL_CORNER_MAPX = 274455.000
              SCENE_LL_CORNER_MAPY = 3758352.000
              SCENE_LR_CORNER_MAPX = 453691.500
              SCENE_LR_CORNER_MAPY = 3724636.500
              BAND1_FILE_NAME = "aaa.tif"
              GROUP = PROJECTION_PARAMETERS
                   REFERENCE_DATUM = "WGS84"
                   REFERENCE_ELLIPSOID = "WGS84"
                   GRID_CELL_ORIGIN = "Center"
                   UL_GRID_LINE_NUMBER = 1
                   UL_GRID_SAMPLE_NUMBER = 1
                   GRID_INCREMENT_UNIT = "Meters"
                   GRID_CELL_SIZE_PAN = 14.250
                   GRID_CELL_SIZE_THM = 57.000
                   GRID_CELL_SIZE_REF = 28.500
                   FALSE_NORTHING = 0
                   ORIENTATION = "NUP"
                   RESAMPLING_OPTION = "NN"
                   MAP_PROJECTION = "UTM"
              END_GROUP = PROJECTION_PARAMETERS
              GROUP = UTM_PARAMETERS
                   ZONE_NUMBER = +46
              END_GROUP = UTM_PARAMETERS
              SUN_AZIMUTH = 147.9348938
              SUN_ELEVATION = 46.4220192
              QA_PERCENT_MISSING_DATA = 0
              CLOUD_COVER = 0
              PRODUCT_SAMPLES_PAN = 17814
              PRODUCT_LINES_PAN = 15754
              PRODUCT_SAMPLES_REF = 8907
              PRODUCT_LINES_REF = 7877
              PRODUCT_SAMPLES_THM = 4454
              PRODUCT_LINES_THM = 3939
              OUTPUT_FORMAT = "GEOTIFF"
         END_GROUP = ORTHO_PRODUCT_METADATA
         GROUP = L1G_PRODUCT_METADATA
              BAND_COMBINATION = "123456678"
              CPF_FILE_NAME = "L7CPF20011001_20011231_04"
              GROUP = MIN_MAX_RADIANCE
                   LMAX_BAND1 = 191.600
                   LMIN_BAND1 = -6.200
                   LMAX_BAND2 = 196.500
                   LMIN_BAND2 = -6.400
                   LMAX_BAND3 = 152.900
                   LMIN_BAND3 = -5.000
                   LMAX_BAND4 = 241.100
                   LMIN_BAND4 = -5.100
                   LMAX_BAND5 = 31.060
                   LMIN_BAND5 = -1.000
                   LMAX_BAND61 = 17.040
                   LMIN_BAND61 = 0.000
                   LMAX_BAND62 = 12.650
                   LMIN_BAND62 = 3.200
                   LMAX_BAND7 = 10.800
                   LMIN_BAND7 = -0.350
                   LMAX_BAND8 = 243.100
                   LMIN_BAND8 = -4.700
              END_GROUP = MIN_MAX_RADIANCE
              GROUP = MIN_MAX_PIXEL_VALUE
                   QCALMAX_BAND1 = 255.0
                   QCALMIN_BAND1 = 1.0
                   QCALMAX_BAND2 = 255.0
                   QCALMIN_BAND2 = 1.0
                   QCALMAX_BAND3 = 255.0
                   QCALMIN_BAND3 = 1.0
                   QCALMAX_BAND4 = 255.0
                   QCALMIN_BAND4 = 1.0
                   QCALMAX_BAND5 = 255.0
                   QCALMIN_BAND5 = 1.0
                   QCALMAX_BAND61 = 255.0
                   QCALMIN_BAND61 = 1.0
                   QCALMAX_BAND62 = 255.0
                   QCALMIN_BAND62 = 1.0
                   QCALMAX_BAND7 = 255.0
                   QCALMIN_BAND7 = 1.0
                   QCALMAX_BAND8 = 255.0
                   QCALMIN_BAND8 = 1.0
              END_GROUP = MIN_MAX_PIXEL_VALUE
              GROUP = PRODUCT_PARAMETERS
                   CORRECTION_METHOD_GAIN_BAND1 = "CPF"
                   CORRECTION_METHOD_GAIN_BAND2 = "CPF"
                   CORRECTION_METHOD_GAIN_BAND3 = "CPF"
                   CORRECTION_METHOD_GAIN_BAND4 = "CPF"
                   CORRECTION_METHOD_GAIN_BAND5 = "CPF"
                   CORRECTION_METHOD_GAIN_BAND61 = "CPF"
                   CORRECTION_METHOD_GAIN_BAND62 = "CPF"
                   CORRECTION_METHOD_GAIN_BAND7 = "CPF"
                   CORRECTION_METHOD_GAIN_BAND8 = "CPF"
                   CORRECTION_METHOD_BIAS = "IC"
                   BAND1_GAIN = "H"
                   BAND2_GAIN = "H"
                   BAND3_GAIN = "H"
                   BAND4_GAIN = "L"
                   BAND5_GAIN = "H"
                   BAND6_GAIN1 = "L"
                   BAND6_GAIN2 = "H"
                   BAND7_GAIN = "H"
                   BAND8_GAIN = "L"
                   BAND1_GAIN_CHANGE = "0"
                   BAND2_GAIN_CHANGE = "0"
                   BAND3_GAIN_CHANGE = "0"
                   BAND4_GAIN_CHANGE = "0"
                   BAND5_GAIN_CHANGE = "0"
                   BAND6_GAIN_CHANGE1 = "0"
                   BAND6_GAIN_CHANGE2 = "0"
                   BAND7_GAIN_CHANGE = "0"
                   BAND8_GAIN_CHANGE = "0"
                   BAND1_SL_GAIN_CHANGE = "0"
                   BAND2_SL_GAIN_CHANGE = "0"
                   BAND3_SL_GAIN_CHANGE = "0"
                   BAND4_SL_GAIN_CHANGE = "0"
                   BAND5_SL_GAIN_CHANGE = "0"
                   BAND6_SL_GAIN_CHANGE1 = "0"
                   BAND6_SL_GAIN_CHANGE2 = "0"
                   BAND7_SL_GAIN_CHANGE = "0"
                   BAND8_SL_GAIN_CHANGE = "0"
              END_GROUP = PRODUCT_PARAMETERS
              GROUP = CORRECTIONS_APPLIED
                   STRIPING_BAND1 = "NONE"
                   STRIPING_BAND2 = "NONE"
                   STRIPING_BAND3 = "NONE"
                   STRIPING_BAND4 = "NONE"
                   STRIPING_BAND5 = "NONE"
                   STRIPING_BAND61 = "NONE"
                   STRIPING_BAND62 = "NONE"
                   STRIPING_BAND7 = "NONE"
                   STRIPING_BAND8 = "NONE"
                   BANDING = "N"
                   COHERENT_NOISE = "N"
                   MEMORY_EFFECT = "N"
                   SCAN_CORRELATED_SHIFT = "N"
                   INOPERABLE_DETECTORS = "N"
                   DROPPED_LINES = N
              END_GROUP = CORRECTIONS_APPLIED
         END_GROUP = L1G_PRODUCT_METADATA
    END_GROUP = METADATA_FILE
    END
    I want load it into db and query the tif_file use coordinates.
    Can you pls tell me how to do it?

  • How can i load a image into a midlet?

    Hi, i placed the png file together wif the midlet in the src directory.
    Image img = Image.createImage("title.png");
    I tried the above code but when i try to load the image in got this error
    Failed loading image.
    anione can help?

    just place your file in /res/ directory not in /src/

  • How can i import external data into folders in iCloud?

    I currently have all my iPhoto folders stored on a external harddrive (removed from iPhoto) and would like to put them in iCloud. The unfortunate thing is that i have an Macbook Air, and not enough memory to put all the folders back in iPhoto to have them uploaded to iCloud.
    - i have tried iCloud Drive, but this doesn't create folders..
    Thanks!

    You can create folders on iCloud Drive, like you create folders in Finder on your hard drive.
    Just open iCloud Drive in Finder and enter ⌘N to create a new folder. Then drag your photos to that folder and rename the folder.
    Only the special folders created by the standard apps do not allow to create deeply nested folders inside  these folders.
    The unfortunate thing is that i have an Macbook Air, and not enough memory to put all the folders back in iPhoto to have them uploaded to iCloud.
    If you want to move the photos to iCloud Drive to save space on your MacBook Air, that will not work.  For any file you store on iCloud Drive there will be a shadow copy on your Mac, so you cannot save space on your MacBook Air this way. You need as much spce on your MAcBook Air as you are using in iCloud.  Maybe this will change in future MacOS X versions, but right now you will have all iCloud files stored locally as well.
    See:   iCloud Drive FAQ

  • How can I resolve StackTrace data into a Method?

    Howdy,
    I am aware that using StackTraceElement will get me a method name, class name, and line number.
    I'd like to resolve this information to a java.lang.reflect.Method, but when method names are overloaded there is no indicator (other than line number) which signature was called.
    Has this problem been solved? Does someone have code to do this? Is there some key class or field somewhere that I have overlooked?
    Thanks,
    =Austin

    Austin_Hastings wrote:
    The "greater context" is that I'd like to know what method called me, in such a way that I can look up annotations on that method.Not possible, I'm afraid. I still don't really know what the purpose would be, anyway. What is the greater context here, 'cos what you've posted above is just an extension of your requirements :-)
    The only way I currently know of to get caller info is to get a stack trace element from the current thread, or by creating a fake Throwable. It isn't really "caller info", though, just a bit of debug. It isn't really designed to be used by your application
    Sadly, stack trace elements resolve file and line number info, but I'm not aware of a Method(file, line) constructor :( so I'm wondering if anyone has already done this work.There isn't one. This isn't really what stack traces were designed for, and the Java runtime doesn't really provide what you're after. I can't honestly think what use it would be, either

  • How can I load .mov links into a layer

    Hello ... I'm new to the dreamweaver forum ... fresh off the
    boat from the land of GoLive ...
    I'm sure there is an easy way to do this, I just need to be
    pointed in the right direction.
    I'm working on a dance studio website and I have prepared
    about 20 quicktime movies.
    I'd like to list the names of the numbers and have them play,
    when clicked, in a layer on the same page.
    Sort of like youtube, the way the selected video always plays
    in the same window.
    Thanks in advance,
    Netty

    Not everyone has the QT plug-in installed for their browser.
    The people who
    don't have it won't be able to see your .mov files. If you
    convert your .mov
    files to .flv, you can use a single player and playlists like
    this AV player
    from Wimpy.
    http://www.wimpyplayer.com/affiliates/idevaffiliate.php?id=836
    Flash has the advantage of being lower in file size and has
    much wider
    browser support on both Win & Mac systems.
    If you don't have an .mov to .flv converter, Riva Flv encoder
    is free:
    Riva Download -
    http://www.download.com/Riva-FLV-Encoder/3000-2140_4-10320097.html
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "Netty2Cent" <[email protected]> wrote in
    message
    news:fse19r$4e9$[email protected]..
    > Hello ... I'm new to the dreamweaver forum ... fresh off
    the boat from the
    land
    > of GoLive ...
    >
    > I'm sure there is an easy way to do this, I just need to
    be pointed in
    the
    > right direction.
    > I'm working on a dance studio website and I have
    prepared about 20
    quicktime
    > movies.
    > I'd like to list the names of the numbers and have them
    play, when
    clicked, in
    > a layer on the same page.
    > Sort of like youtube, the way the selected video always
    plays in the same
    > window.
    >
    > Thanks in advance,
    > Netty
    >

Maybe you are looking for