Creating colourmaps for all colour bands of GeoRaster maps

Dear all
Is there away of creating a colourmap that applies to all three colour bands of a colour image so that one can then adjust the alpha channels for the complete images as opposed to just one band? I am trying to create semi transparent GeoRaster maps using colourmap alpha channels. Reading the following thread, How to display transparent georaster on Oracle Maps? it states that colourmaps can only be applied to one layer (band). Is there a way of creating one layer based on three bands?
Although in another recent forum thread I started Joao recommend upgrading to MapViewer 10.1.3, as that has better and easier to use transparency options, this is not possible in the short term since the server that MapViewer runs on would need to be upgraded. I need to complete the work before this is likely to happen.
Kind regards
Tim

Hello, Andy and welcome to the Discussions.
I would suggest that you ask for assistance in the developer forums to which you have access as a member of Apple's iOS developer's program:
http://developer.apple.com/devforums/
You'll be much more likely to get assistance there, particularly with such a very specific issue. This forum is really for people using the iPhone rather than for people developing for it.
Regards.

Similar Messages

  • Creating sequences for all tables in the database at a time

    Hi ,
    I need to create sequences for all the tables in my database.
    i can create individually ,using toad and sqlplus.
    Can any one give me a code for creating the sequences dynamically at a time for all the tables.
    it is urgent ..
    Regards.

    I need to create sequences for majority of the tables that are having ID column
    which is sequences."The majority" is not the same as all. So you probably want to drive your generation script off the ALL_TAB_COLUMNS view...
    where column_name = 'ID'You need to think about this carefully. You might want different CACHE sizes or different INCREMENT BY clauses for certain tables. You might even (whisper it) want a sequence to be shared by more than one table.
    Code generation is a useful technique, but it is a rare application where one case fits all.
    Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

  • How can I resize and reposition the Date Created window for All windows?

    When setting view options for a finder window set to list view, I cannot get column resizing or positioning to hold. When making those changes, the option for "All Windows" automatically shifts to "This window only" and it then does not hold.
    How can I resize and reposition the Date Created column for All WIndows?

    Hi Harmz,
    Try dragging this file to the Îesktop & reboot...
    /Users/YourUserName/Library/Preferences/com.apple.finder.plist

  • Creating synonys for all table

    i want to create synonyms for all atbles.the synonyn name and table name are same.instead creating one by one synonym i wnat to create all synonyms at a time.
    1)select 'CREATE PUBLIC SYNONYM'||' '||'test'||' '||'for' ||' '||'test' from dual
    2)select OBJECT_NAME from user_objects where OBJECT_TYPE ='TABLE'
    in the first query if we replace with test with 2nd query then we can get the script for that.
    i replaced that biut its not working how to do it

    Here is a generic grant script. If you review it, you will see how it works and can adapt it to your varying needs.
    BEGIN
        FOR x IN ( SELECT owner,
                          object_name,
                          DECODE(object_type, 'TABLE' ,   'select, insert, update, delete',
                                              'SEQUENCE', 'select',
                                              'VIEW',     'select',
                                                          'execute') AS privs,
                          DECODE (owner, 'SCHEMA_1', 'USER_1',
                                         'SCHEMA_2', 'ROLE_A'
                                          ) AS app_user
                     FROM dba_objects
                    WHERE object_type IN ('TABLE',    'PACKAGE', 'PROCEDURE',
                                          'FUNCTION', 'SEQUENCE', 'VIEW')
                      AND owner       IN ('SCHEMA_1', 'SCHEMA_2' ))
        LOOP
          BEGIN
            EXECUTE IMMEDIATE 'grant ' || x.privs       || ' on ' || x.owner ||
                              '.'      || x.object_name || ' to ' || x.app_user   ;
            EXECUTE IMMEDIATE 'create or replace synonym '|| x.app_user||'.'||x.object_name||
                               ' for ' ||x.owner||'.'||x.object_name ;
          EXCEPTION
            WHEN others THEN
              dbms_output.put_line('Bad owner = '||x.owner||';  Bad app_user='||x.app_user||
                                   ';  Bad object_name='||x.object_name);
          END;
        END LOOP;
    END;
    /

  • How to create gpo for all users in all ou?????

    hello,plz help me.i want to create gpo for all users in all ou.but i dont want that gpo to do in domain????

    Can you elaborate what you mean by "but i dont want that gpo to do in domain"?
    In terms of applying it to all users, that's simple enough, you can simply leave the GPO's security filtering with its default setting as "Authenticated Users" which then apply to everyone.
    In terms of it applying to all OUs, you only have two options.
    1) Create the GPO and link it to the root of your domain, so it then applies to the entire domain and all the OUs within it.
    2) Create the GPO, but instead link it to each OU that you want it to apply to. You can apply one GPO to as many OUs as you want, simply right click on the OU and select "Link an Existing GPO...". It's then not applied to the root of the domain, only the
    OUs, but any changes you make to the GPO are applied to all the OUs that you've linked it to (rather than having a separate GPO for each of them).

  • Create schedulers for all existing user jobs

    Hi Forum,
    In my database (Oracle Database 10g Enterprise Edition Release 10.2.0.4.0), I have 7 DB schemas.
    There are total existing 50 jobs (usaer_jobs).
    I want to shift them all to scheduler (user_scheduler_jobs).
    My plan is,
    1.     Create schedulers for all existing user jobs.
    2.     Enable all schedulers.
    3.     Disable all jobs.
    Is there any way / method for such shifting? I am ready to this exercise schema wise at a time.
    How to create scripts for creating schedulers from existing jobs?
    Thank you & regards..

    PROCEDURE CREATE_JOB
    Argument Name               Type               In/Out Default?
    JOB_NAME               VARCHAR2          IN
    SCHEDULE_NAME               VARCHAR2          IN
    JOB_TYPE               VARCHAR2          IN
    JOB_ACTION               VARCHAR2          IN
    NUMBER_OF_ARGUMENTS          BINARY_INTEGER          IN     DEFAULT
    JOB_CLASS               VARCHAR2          IN     DEFAULT
    ENABLED               BOOLEAN           IN     DEFAULT
    AUTO_DROP               BOOLEAN           IN     DEFAULT
    COMMENTS               VARCHAR2          IN     DEFAULT
    CREDENTIAL_NAME          VARCHAR2          IN     DEFAULT
    DESTINATION_NAME          VARCHAR2          IN     DEFAULTdoes not appear to be an available option.

  • Want to take "CREATE script" for all roles existing in DB.

    Hi All,
    I want to take "CREATE script" for all roles existing in DB.
    Please provide me script to generate if you have or suggest any link or doc.
    Oracle 10G

    Use this-
    select 'select dbms_metadata.get_ddl(''ROLE'','''||ROLE||''')||chr(10)||''/'' from dual;'
    from dba_roles
    Please be aware grants will not come in the definition
    If you like the answer then don't forget to give points

  • Creating SYNONYM for all tables who don't have one at once!

    Hello to all,
    I'm trying to create synonyms for every table who's missing one at the moment. I'm trying this code:
    declare
    cursor cur_objects is
    select obj.object_name , obj.owner
    from all_objects obj
    where owner = '&&SCHEMA_OWNER'
    AND NOT EXISTS (SELECT *
    FROM all_synonyms syn
    WHERE obj.object_name = syn.table_name)
    AND obj.object_type = 'TABLE'
    AND obj.object_name LIKE 'CI_%';
    begin
    for rec_objects in cur_objects loop
    begin
    dbms_output.put_line(rec_objects.object_name);
    execute immediate('create public synonym ' || rec_objects.object_name || ' for '
    || rec_objects.owner ||'.'||rec_objects.object_name )
    exception when others then
    null;
    end;
    end loop;
    end;
    I'm getting this error:
    ORA-06550: line 10, column 37:
    PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:
    begin function package pragma procedure subtype type use
    <een ID>
    <een scheidingsteken-ID tussen dubbele aanhalingstekens> form
    current cursor
    I'm still pretty new at PL/SQL and can't get it to work. Does anyone got any tips ?
    Thnx already

    Ok now I got this error:
    RA-06550: line 17, column 1:
    PLS-00103: Encountered the symbol "EXCEPTION" when expecting one of the following:
    * & = - + ; < / > at in is mod remainder not rem return
    returning <een exponent (**)> <> or != or ~= >= <= <> and or
    like LIKE2_ LIKE4_ LIKEC_ between into overlaps using ||
    multiset bulk year DAY_ member SUBMULTISET_
    The symbol ";" was substituted for "EXCEPTION" to continue.

  • Creating batch for all materials

    Hi Experts,
    is it possible to create ONE batch number for all Items. It will be used for batch scrapping or something. For example , If we have some pieces from a few materials i will make transfer posting Batch to this common Batch, which I have already created.
    Regards

    Material level:
    The batch number is unique in all plants in connection with the material.
    The same batch number has the same meaning for the material in all plants. One batch number cannot have different specifications in different plants. During stock transfer to another plant, the specification of the batch is known in the destination plant even if the batch is placed into storage in that plant for the first time.
    In other words, it is possible to have a batch SCRAP for any material number.

  • Question about creating Certificates for Out of Band management

    I would like to use out of band management for supporting clients in remote offices.  I am following the instructions at http://technet.microsoft.com/en-us/library/230dfec0-bddb-4429-a5db-30020e881f1e#BKMK_AMT2008_cm2012 in the "Deploying Certificates
    for AMT" section.  It says:
    If you cannot complete steps 18 or 19, check that you are using the Enterprise Edition of Windows Server 2008. Although you can configure templates with Windows Server Standard Edition and Certificate Services, you cannot deploy certificates using modified
    certificate templates unless you are using the Enterprise Edition of Windows Server 2008.
    My Certificate Authority server is Server 2008R2 Standard.  When I right click on Certificate Templates -> New -> Certificate Template to Issue, I do not see the ConfigMgr AMT Provisioning and ConfigMgr AMT Web Server Certificates.  I know
    the box says 2008 Standard isn't supported, but I am using 2008R2 Standard, not 2008.  Why am I not able to see either certificate.  If it is because I am using the Standard Edition, than how can I create the certificates needed?  Upgrading
    to Enterprise is not an available solution (cost reasons).  Does this mean that OOB management certificate creation is not supported on Server 2008R2 Standard, and so I will not be able to use ConfigMgr 2012 SP1 for out of band management because I am
    unable to generate the required certificates?

    Yes, I know this is an old post, but I’m trying to clean them up. Did you solve this problem, if so what was the solution?
    In order to use the cert template, you must use an Enterprise version of Windows. Only the Enterprise (or datacenter) version have the right version of the Certificate server.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Create hyperlinks for all the URLs in the text... possible?

    Hello everyone,
    I’m starting to learn how to do ePubs from the books I layout and I’ve come up with a very annoying issue. In the footnotes or bibliography, there are often urls in the text. I need to have them linked to the website they refer to in the ePub. I really wish there is some kind of automated way to do that, because if it’s not possible, I hardly see myself doing it manually for a whole book...
    So, well, can any of you guys help me with that? I’m really bad at scripting so I have no idea if it’s possible, but... thanks anyways!
    Annabelle

    If you are using CS5 or CS5.5 (the latter is strongly recommended for all things EPub), "Convert URL to hyperlinks" is a menu command in the Hyperlink palette:
    http://community.adobe.com/help/search.html?q=hyperlink&hl=en_US&lr=en_US&l=indesign_produ ct_adobelr&site=indesign_cs5_all&self=1&filter=0

  • ACS 5.3 Dashboard - Any way to create Dashboard for all users?

    I'm at the point of setting up admin access for engineers needing to have insight into the operations and status of our ACS 5.3 systems.
    I'm curious if there's any way to create a Dashboard that can be applied to all admin user accounts? (perhaps a custom role?)
    I've been able to customize the dashboard for my own account to show what is most relevant, but am unable to figure out how to apply this layout and setup to all other users.
    Basically, I have a number of folks that need to see this data, but that I can't exactly count on to setup their own dashboards to show the important details.  If there were some way to build a tab/dashboard/portlet, etc (whatver it may be) and have it apply to all users, that would save me TONS of work so that I don't have to login to each person's account and set things up for them.
    For example, I want to have all users see a tab/dashboard that shows the applet "Live Authentications", but with the protocol already configured to display TACACS vs the default which is RADIUS.
    Any thoughts?
    -Chris

    Chris,
    I see you are looking for read-only access to Dashboard. Currently there is no way to force all Admins to use same Dashboard and all admins will have full control of the Dashboard.
    Regards,
    ~JG
    Do rate helpful posts!

  • How can I have my app create components for all states on startup?

    Hi All,
    I've got an application with 8 different states.  When the user moves from one state to the next for the first time, there's a brief (but perceptible) delay while the Flash Player sets up everything on the next view (state).  I would like to see what the increased load time looked like--it may be preferable to have slightly longer load time in order to get "snappier" performance once inside the app.
    I initially thought I could set creationPolicy to "all" and then everything would get created immediately, when the app first loads.  But that's not working--no change in behavior, and when I inspect objects that on any view besides the first one, they are all null. I have to first change to the state where that component is hosted, and then component is initialized and available.
    I read elsewhere that I could use itemCreationPolicy, but that is not a property on the application object... do I need to apply that somewhere else?
    I'm on Flex 4.0.
      -Josh

    Oops I might have replied to the wrong post in http://forums.adobe.com/thread/767099
    I think you'll want to look at setting the itemCreationPolicy to immediate.
    Check out "Custom Creation and Destruction Policies" section of this spec for more details:
    http://opensource.adobe.com/wiki/display/flexsdk/Enhanced+States+Synta x

  • How can we show a custom column to all libraries in the default view without creating that for all libraries everytime

    Hi,
    Any help?
    Thanks
    srabon

    You can use powershell script below which loops through each libraries and sets view.You can modify the script to user it for single library as well.
    Add-PSSnapin Microsoft.SharePoint.PowerShell -erroraction SilentlyContinue
    $siteURL = "<YOURSITEURL>"
    $site = Get-SPSite($siteURL)
    foreach($web in $site.AllWebs) {
    foreach($list in $web.Lists) {
    if($list.BaseType -eq "DocumentLibrary") {
    // the variables `$web` and `$list` already reference the objects you need
    //$site = New-Object Microsoft.SharePoint.SPSite($SiteURL) ;
    //$web = $site.OpenWeb($SiteURL);
    // new instance of the list is necessary to avoid the error "Collection was modified"
    $newList = $web.Lists.item($list.ID);
    $viewfields = New-Object System.Collections.Specialized.StringCollection
    $viewfields.Add("DocIcon")
    $viewfields.Add("LinkFilename")
    $viewfields.Add("_UIVersionString")
    $viewfields.Add("FileSizeDisplay")
    $viewfields.Add("Created")
    $viewfields.Add("Modified")
    $viewfields.Add("Editor")
    [void]$newList.Views.Add(<VIEWNAME>, $viewfields, "", 100, $true, $true)
    $newList.Update();
    // setting the default view
    $view=$newList.Views["<VIEWNAME>"]
    $view.DefaultView = $true
    $view.Update()
    $web.Dispose();
    $site.Dispose();
    Ref: http://stackoverflow.com/questions/10015311/part2-sharepoint-2010-powershell-loop-through-all-document-libraries-creat
    Hope that helps!
    Avni Bhatt

  • Create hyperlink for all images

    Hello everyone,
    I am new to scripting, but I am assuming my current task needs some scripting.
    I have a catalog laid out in InDesign.  It is about 250 pages and each page has about 10 image so there are about 2500 images.  The way I have them laid out is each image is placed inside a frame.  Now, I need to hyperlink each image to an external web site.  For example, for an image whose name is (12345.jpg), the hyperlink will be "https://www.testabc.com/productdetails.aspx?itemnum=12345".  Similarly if the next item is 67890, then the hyperlink would need to be "https://www.testabc.com/productdetails.aspx?itemnum=67890".  All images are linked to a folder on the computer.
    Can you please suggest how best to write and run this script.  Any and all help would be greatly appreciated.
    Thank you

    I can't test the script at the moment, but looking at it, I do notice that the entire for loop is within a try-catch. That means that if it encounters an error, it stops processing any more graphics. There may be a good reason for this, but I think you could just move the try-catch into the for loop, so it can catch any individual linking error without stopping completely. Something like this:
    var myDoc = app.activeDocument; 
    var  myGr = app.activeDocument.allGraphics; 
    alert(myGr.length) 
        for(i=0; i<myGr.length; i++) 
          try{
            var myGrName = String(myGr[i].itemLink.name); 
            var mySplitName = myGrName.split(".")[0]; 
            app.select(myGr[i].parent) 
            myHyperlinkPageItemSource =  app.activeDocument.hyperlinkPageItemSources.add(app.selection[0]) 
            var myHyperlinkURLDestination = app.activeDocument.hyperlinkURLDestinations.add("https://www.testabc.com/productdetails.aspx?itemnum=" + String(mySplitName)));
            var myHyperlink = app.activeDocument.hyperlinks.add(myHyperlinkPageItemSource, myHyperlinkURLDestination, {name: "https://www.testabc.com/productdetails.aspx?itemnum=" + String(mySplitName)})   
            } catch(e){} 
    alert("Process Completed")
    The forum's syntax highlighting is giving me a hard time, but I would probably throw an "alert(myGrName)" into those catch brackets so you can begin to try to figure out where it's erroring out (if that is indeed the problem).
    Another thought is that, if there's a chance of multiple images with the same number, you might want to have your hyperlinkURLDestination check for an already existing destination before adding a new one.

Maybe you are looking for

  • Spry Accordeon open on other label then 1st possible?

    Ls, On opening a page with the spry accordeon i constructed from a database repeat region, I want to be able to open on the current/last viewed/expanded detailset on a page update/refresh. Currently, i always opens on spry label nr 1. I made an updat

  • Which USB Firewall cable do I Buy.......

    to transfer data from my old iMac to my new 20" iMac? the instructions are no help at all - showing merely a USB cable with the same connectors on each end. Yet i cannot find such a cable at any of the cable stores. Can anyone tell me the FULL NAME o

  • Itunes 10.6 is not playing anything.

    It was working fine on previous versions, but when i updated, its not playing my songs. like it tells me how long the song is and everything but it just doesnt play..im not sure whats wrong with it.

  • Software update forcing constant reboots

    Hello, I recently have to reinstall OS X on my MacBook Pro after a failed update to Lion.  I have installed OS X 10.6 (snow leopard) and preceded with the software updates.  However, due to my slightly dodgy Internet connection it looks like the soft

  • Sato printer configuration for  sap scripts

    hi friends, i got a requirement .i have to print the labels for sato printer. The form is already developed but not for sato printer. i have to change the form according to the sato printer. Please help me regarding this. Regards, Srinivas