Embed data on maps (image)

Hi all,
I need to show some statistics (sales in the US) and to visualize it on a map. example: in the past month we had sales in:
CA $10,000
NY $30,000
AR $40,000
MA $15,000
this info should be shown on a map with the appropriate number (so in the location of NY it will show $30,000)
does anyone have any idea where can I get such API the lets you embed your numbers on a map? jfreeshcart doesn't support such feature.
thanks
peter

I raised a ticket with Oracle and i heard the following:
The chart or graph works with the total dataset, not the currently paged Pivot or Table results displayed.
Tested this here and paged through the different pages downward and upward and see that the graph/map does not change.
However, all of the data on the chart is representative of the data in the Pivot or Table.
So basically all you are doing is paging thru the data in the Pivot or Table as the results are already plotted in the chart upon initial display.
So, any other method or solution.
Is there any way to load data in steps.
Say, my search results in 50 records.  But, during loading it i would like to load intially 5 records such that even performance increases.
Once, the user clicks on next page in table view - it should load next 5 records.
This, improves performance and might resolve issue.  (Here, the page is refreshing after we click next page).Thank you.
Edited by: GRK on Oct 23, 2012 7:58 AM

Similar Messages

  • How to get the whole map image after zoom in?

    Hi,
    I use mapviewer API to generate map images and put them in JSP as well as in Java Applet. I called the method getGeneratedImage(). After I using the methods zoomIn() or zoomOut(), I got a new map image. But the size is fixed, so after zoom in I can only see a part of the whole map. I would like to use scrollbar to see other part of the map after zoom in.
    How can I solve this problem? I have the images as predefinied themes saved in database with MBR information.
    Thanks in advance.

    Hi,
    For the map request in MapViewer you may define the data area that you want to display, as well as the device size (width and height). The result is a java Image with width and height sizes. You can draw this image on a canvas with scroll bars, and if the size of the canvas is smaller than the image size, then you should see the scroll bars. But you have to code that. MapViewer will just return an Image with the specified size.
    The zoom in/out options just change the data area, but keeps the device size. Therefore you should use the API methods to set the data area (setBox or setCenterAndSize) and to set the device size (setDeviceSize), in order to control the size of your resulted image, and then draw it on your canvas with scroll bars.
    Regards.

  • SRM-MDM-CAT How to map images in Groups

    Dear all,
    can anybody please explain to me how I can map images in groups to articles?
    What I did yet:
    1. Import Images from different suppliers into MDM. Each Supplier has his own image group. Am I right if I think the images in a group are unique? So two or more images can have the same name in different groups and I then have different pictures?
    2. Now I want to map my articles to these pictures with the import manager. I have the fields: supplier (=group), article_numer and image.
        So how can I map the group into import manager? I only see the image field?
    Best regards and thanks for help.
    Roman

    Hi Roman,
    are you uploading the picture files directly into the repository or you only using hyperlinks?
    By hyperlinks you can map this directly in the import manager. The image you have to import.
    If you have all the needed pictures in the rep., then you have to map this in Data Manager.
    There you have to select the items, which should have the same picture and in Image you can select the picture. Don't forget to save the changes!
    I hope this helps.
    Regards,
    Tamá

  • Aperture cannot add GPS data to multiple images at the same time

    I am new to Aperture and have been using it for a week or so now. Today I tried to add GPS data to a number of images and found out, it appears Aperture can only add GPS data to one image at the time. When I select multiple images to add the GPS data to, it just doesn't do anything. It leaves the GPS data blank.
    Here is what I do:
    From the Info-tab I select "GPS" from the drop down menu
    At the bottom of the info tab I show the map
    In the map's search box I enter the location I want to assign to the photo(s)
    From the resulting drop down menu I select the locatiion I want and press the "assign to location" button
    As long as I choose only a single image, this works fine and the GPS Data is added. Not so when I select more than a single image. After pressing the "assign to location" button it seems as if the GPS data is added (there is no message indicating otherwise), but the GPS data in the selected images is blank.
    What am I doing wrong ?
    Additional info
    I have been testing this a bit more and the behavior is even more strange: When you select multiple images in Aperture, they get a thin white border, except the one that you touch last (normally the last image of the selection) that will have a thicker border around it. It appears that, when selecting multiple images, the GPS data is ONLY assigned to the photo in the selected setthat has the thicker border (?????)
    Message was edited by: dinky2

    Rereading your post, I think the problem is, that you are assigning the location from the Info panel and not from the Metadata menu. The Info panel and the Metadata menu ar behaving differently.
    The Info panel will always only affect the primary selection, but the Metadata menu will work on all selected images (unless "Primary only" is checked). So , if you want to assign your location to multiple images, use "Metadata > Assign location" instead of the little map in the "Info" panel.
    Or use the "Places" view. Then you can drag all images at once to the same pin on the map.
    Regards
    Léonie

  • Extracting data from an image (Java Steganography)

    Hey all!
    I am writing an application in Java that hides bytes in an images pixel's Least Significant Bits.
    Here is the embeding function (mind you, its at an early stage). As far as I can tell, it works perfectly...
         public BufferedImage LSB_BufferedImageEmbed(BufferedImage image, byte[] data)
              int imgWidth = image.getWidth(null);
              int imgHeight = image.getHeight(null);
              //preformat the data array and return as an array of ints?
              int[] formated_data = FormatDataArray(data);
              int index = 0;
              try
                   for(int i = 0; i < imgHeight; i++)
                        for(int j = 0; j < imgWidth; j++)
                             if(index == formated_data.length)
                                  break;
                             System.out.print("Pixel prior Embed: " + image.getRGB(j, i) + "\n");
                             int current_pixel = image.getRGB(j, i);
                             int current_data = formated_data[index++];
                             //Perform bitwise AND on current pixel value - isolating the Least Significant bits.
                             //NB: Mask is = ff fc fc fc [Alpha Byte] [Red] [Green] [Blue]
                             //1111 1111 - 1111 1100 - 1111 1100 - 1111 1100
                             current_pixel &= 0xfffcfcfc;
                             //x << y is "shift x right by y spaces"
                             //Add bits 5,4 of current data to the bottom of the red channel - xx -- xx xx
                             current_pixel = current_pixel + ((current_data & 0x30) << 12);
                             //Add bits 3,2 of current data to the bottom of the green channel - xx xx -- xx
                             current_pixel = current_pixel + ((current_data & 0x0c) << 6);
                             //Add bits 1,0 of current data to the bottom of the blue channel - xx xx xx --
                             current_pixel = current_pixel + (current_data & 0x03);
                             image.setRGB(j, i, current_pixel);
              catch(Exception e)
                   System.out.println("Problem with LSB!!");
              return image;
    And here's the corresponding extraction method
         public byte[] LSB_ExtractFromBufferedImage(BufferedImage image)
              int imgWidth = image.getWidth(null);
              int imgHeight = image.getHeight(null);
              int index = 0;
              byte[] extracted_bytes;
              byte[] extracted_data = new byte[12];
              try
                   for (int i = 0; i < imgHeight; i++)
                        for (int j = 0; j < imgWidth; j++)
                             if(index == extracted_data.length)
                                  break;
                             System.out.print("Pixel prior Extract: " + image.getRGB(j, i) + "\n");
                             int current_pixel = image.getRGB(j, i);
                             //Isolate the bit pattern needed for the Int to byte[] method...
                             current_pixel &= 0x00030303;
                             extracted_bytes = IntToByteArray(current_pixel);
                             for(int t = 0; t < 4; t++)
                                  extracted_data[index++] = extracted_bytes[t];
              catch(Exception e)
                   System.out.println("Problem with LSB Extraction!!");
              return extracted_data;
    Unfortunately, this doesn't work all that well (by that, I mean not working at all!) It does return the bits alright, but not the ones that were previosuly embedded. Does anyone have any ideas on any aspect of these methods as to why that shouldn't work??
    Any help is greatly appreciated!
    Cougaris

    Are you sure that you interpret your results correctly ?
    Your routines use different data representations and that leads easily to misinterpretation.
    Especially as you only use 6 Bits from an int but take 4 Bytes as result.
    Post some input and output data. i.e. an array of 3 values for formattedData and the 12 resulting bytes. I expect the data to be correct (relative to your code, probably not to your intentions).
    Regards
    SH

  • How do I embed a site map in the root directory?

    I am trying to find the root directory, so that I can embed the site map. Where is the root directory?

    Hi , thank you for your repy.
    I want to set up the user story default to have a 2 line entry in the tab prior to the user entering data
    I know I can enter a CR during editing
    For example I would like the details to to be (after creating new , before entering data) to be:
    Line1<o:p></o:p>
    CR<o:p></o:p>
    Line2
    <o:p></o:p>
    So the user enters data after the Line 2 heading

  • Keep Map Image For Remote Reference

    Maybe I'm the  last to realize this, but if you don't have a 3G iPad, but want a way to keep a map image for reference later, perhaps while driving where you might not have Internet access, try this:
    Before you go, and while your iPad has Internet access, call up one or more map images of the area you are interested in at a good magnification and while holding down the HOME key, momentarily click the SLEEP button.  This will cause a snapshot of your iPad screen to be saved permanently in your photo storage area.  
    Later, while driving, when you need to get your bearings again, simply turn your iPad on and review the previously saved images. 

    Good idea. Even if you have 3G, you can do this for the entire route and save download data.
    ...and if traveling, there are apps that show rest areas....

  • Getting map images

    I want to take my GPS data and overlay it onto a map. I was thinking about using the picture functions to draw features onto the map, e.g. highlighted path, and associated data at each point. I am tracking wheelchair users and I want to associate wheelchair data with position, using the mouse functions to bring up graphs and such, of the wheelchair data.
    How do I get map data into a picture control onto which I can plot my gps data?
    jc
    Mac 10.4
    LV7.1
    CLD

    jc,
    The Web-based Google Maps API may be the easiest and most flexible solution of all, if you're willing to:
      1) use an ActiveX control (Internet Explorer here) in your LabVIEW panel, and
      2) host a simple external Web page (or rely on someone else's page) to produce the map/overlay object for you to display
    I've been looking for an excuse to play around with Google Maps for a while now, and your post spurred me into action.  Attached is a VI (LV 8.0, sorry) that is a bit simpler than vivi's example.  It allows you to specify a center point, zoom level, and list of lat/long points for which to display a path on the map.  The Web page that produces the map image is hosted on my site for the sake of demonstration, but I included the HTML source in the VI so that you could easily transplant it to your own Web server if you want to pursue this approach.
    There are other map-related examples posted in the forums besides mine and vivi's, but I didn't see one that addressed this specific need, so I figured I'd post mine.  Let me know what you think.
    Take care,
    John
    Attachments:
    DisplayPathOnMap.vi ‏33 KB

  • Unable to embed data in any of the components

    I have an xlf file that contains a series of charts, tables and other components with data embedded in them. As I get new data, I update the previous data. But, currently I am unable to embed data in the existing charts or any other new components that I create. I also have a backup of this file and the backup behaves in the same manner. I restored both these files to earlier versions created last week when I was able to update the embedded data. But I am still not able to make any changes.
    I have another xlf file that was created 1-2 months ago and it works fine, so it seems that there is no problem with the software itself.
    Any suggestions would be very helpful.

    It had occurred to me that the old shutdown/restart routine can cure a multitude of problems. That's what I did and it took care of all of the problems in all my Numbers documents.

  • Hello apple guys, i can't open app store, reminders, contacts, mail(crash), maps, Image Capture, and other apps that comes with Mavericks OS, how i can solve this problem?

    hello apple guys, after installing OS X Mavericks, i can't open app store, reminders, contacts, mail(crash), maps, Image Capture, and other apps that comes with Mavericks OS, how i can solve this problem?

    So is this the way Apple works now? Not solving customers problems? I'm sure so many users have had this problem. I've had, and I reinstalled Mavericks 3 times. Works fine for some days and then several Apple Apps stop working. Is that a way to force us ti update to Yosemite? (I don't want to) and then pay to update some third party programs (i.e. Pro Tools). Also, there are so many 15" MacBooks Pro with graphic problems and of course the guys at the Apple Service Centers always say: "It's the logic board, you can have it replaced, but it's so expensive I would recommend a new Mac".  I really, really miss Steve Jobs!

  • I am using Adobe Pro 11 and on opening a pdf I am getting error 'Insufficient Data for an Image'. Please help and provide a workaround if the solution not there.

    Hi all,
    I am using Adobe Pro 11 and on opening a pdf I am getting error 'Insufficient Data for an Image'. Please help and provide a workaround if the solution not there.
    I have already set the preferences to for page view to low zoom settings, and page fit view settings, but it never opens the pdf. Please check and provide a solution asap.
    Thanks in advance!

    Most of the documents have sensitive info on them.  I will have to do some looking for some that i can share, but will get something to upload (dropbox) as soon as I can.
    Thanks for you help.

  • "Insufficient data for an image" when saving a file

    I'm running Acrobat 9.5.0 on a Macbook Pro running OS X 10.6.8.
    After scanning a document from my Canon MX882, or opening and editing an existing pdf I get the following error when I try to save the file:
    Insufficient data for an image
    When I try to save the file again, I get this:
    The document could not be saved. There was a problem reading this document (109).
    Sometimes the error also has (8) instead of (109).
    When this occurs, the thumbnail of the page appears correct in the left pane; however, the content of the page itself is entirely or partially missing.
    Any suggestions would be appreciated.
    -c

    I am also having this problem, especially with scanned documents. Since I need to download scanned documents in my work this is a big problem!Sometimes I can read but not save the document, sometimes one or two of the pages will be blank from the start. I have the latest version of Adobe Reader XI (11.0.10). I tried reducing the page zoom, a suggested workaround on this page: Acrobat: “Insufficient data for an image” error after updating to 10.1.4 or 9.5.2,  but that did not help at all. FWIW I use a Windows 8.1 PC with 4 GB RAM. I usually download PDFs from the internet using Firefox.

  • Error when opening legitimate documents "Insufficient data for an image"

    I work for a company who has sold "downloadable resources" via PDF for years now. We created a large batch of PDF documents in 2003 with
    Adobe Acrobat 6.0 paper capture, and these are all PDF 1.5 type documents. We've provided these resources for years, however just today we were notified by a user that upon downloading the file they get a message "Insufficient data for an image". These ARE NOT HACKED PDF's. and they worked fine until 9.0. I have tried 9.0 and 9.1, on multiple computers and have confirmed this issue.
    Now we are stuck with hundreds of PDF's that won't open in 9.x.
    I did try downloading a free demo of "PDF-TOOLS" Recovery & Analysis tool, and I open the file using that program, scan the file - TELLS ME ALL IS OK, then resave it using that program.
    Only then can I open it in 9.x.
    What are we to do now short of buying a $200 tool and taking perhaps several days of time to open and save hundreds of "previously working" PDF files???

    RollingRocker, did you ever get a solution for this? I am having the same problem. I produce a pdf using a JSF third party api called flying saucer, which actually uses itext to produce the pdf. I can attempt to produce the same exact pdf over and over and about 85% of the time the error occurs and the rest of the time the pdf opens successfully with no error. Obviously 15% of the time the reader is completely happy with this pdf, so it is not a malicious document in any way.

  • Printing problem linked to EXIF time data for JPEG images.

    For some years I have been using Photoshop Elements 8.0 with no problems of any kind. My computer runs on XP Professional with a system comfortably in excess of the minimum requirements to run Elements 8.0. I load my images into Elements from a card reader which is the same one since I got this version of Elements. I shoot mostly in JPEG with a Nikon D300. I print to one of 2 Epson printers, an SX100 and a PX700W. I don't use the wireless feature of the PX700W, connecting it via USB.
    About a year ago I suddenly began to experience printing problems. If I tried to print an image Elements crashed just at the point where printing would begin. By trial & error I discovered that if I adjusted the time in the EXIF data of the image in Elements, whether by advancing or retarding it by hours or days and then adjusted it back to the original time I had no problems printing that image thereafter.
    I also discoveredc that where I had shot in RAW I could print direct from the RAW image in Elements or from the JPEG I saved from an edited in RAW and had no problems.
    I saw the forum discussions about the issues about the date/time in EXIF having been changed following the import into Elements. For those images I still had on my memory cards I checked the EXIF data in Elements and compared it what was on the image on the card. They were the same. I also checked the time zone and time settings of the camera and they were correct.
    I backed up my catalog, re-formatted the computer to bring it back to its ex-factoy status, re-installed Elements and restored my catalog. I imported new images, tried to print them and the problem was still there.
    Before I might upgrade to Photoshop Elements 10 I'm hoping someone else may tell me they have had the same problem and, hopefully, be able to tell me how they fixed it. I know the workaround will bypass the problem but it really annoys me that it suddenly appeared and I seem to be stuck with it. I'm also concerned that, given I totally re-formatted my computer but the problem  is still with me, that the problem may be imbedded in my catalog and simply gets backed up to,\and restored from,  my backup.
    I'd be grateful for any ideas.

    Hi Miceal,
    Though I'm not sure, but see if Catalog repair and optimize helps resolve the issue.
    For doing this, click File >> Catalog and selec your catalog and then click "repair' button.
    Tick the checkbox for rebuilding indices in the repair workflow.
    Now perform the optimize operation on the catalog similarly.
    Let me know if that helps.
    Thanks
    andaleeb

  • PDF from postscript (ps2pdf) displays "Insufficient data for an image" error in Reader

    Hello,
    I'm not fully confident this is the best place for this, but I'll start here. Note that this is NOT the same as the issue that was recently fixed in Reader 11 (found at http://helpx.adobe.com/acrobat/kb/insufficient-data-image.html)
    I am using the command "ps2pdf" (using Ghostscript) to convert postscript files to PDF. To get better quality, I use the ps2pdf options "-dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode", which force lossless encoding for color images. However, there are images on certain pages that yield the error "Insufficient data for an image" when opened in Adobe Reader XI (current version), and the image on that page is not viewable (or rather, it can be viewed, but only until you get the whole image on the screen; then the image disappears). If the PDF is printed, the image will not print. The error also occurs in Acrobat 9.4.0, and possibly other versions. However, Reader 8 displays the files with no issues. Also, Foxit reader displays the PDF files fine.
    The postscript files are screenshots generated by the user dragging a box to define the area of the screen to be printed to file. This issue only occurs for some size boxes that the user draws; others come out fine and are read by Reader just fine.
    This only happens when using FlateEncode; using lossy JPEG compression (e.g. the default ps2pdf output) does not yield files that produce the error.
    Here are some example files to demonstrate the issue (hey, maybe the issue is not even reproducible for other people! That would be helpful to know if true, so even if you can't help solve the problem, if you could verify whether this issue occurs when you open one of these files in Reader or Acrobat, it would awesome).
    bad pdf where error occurs: http://www.mediafire.com/file/zbk36yfy7vrhvhw/gmbad.pdf
    good pdf (very similar, but slightly different box drawn): http://www.mediafire.com/file/649fuxul0td5bsx/gmgood.pdf
    Merged good and bad: http://www.mediafire.com/file/54nwwebh3da7p9w/good_and_bad.pdf
    If anyone has any ideas on this issue, I would greatly appreciate it. Or if you think this isn't the right place for this, and perhaps know of a better place for my question, I'd appreciate that too. Thanks!
    Additional possibly relevant information:
    ps2pdf is being run using Ghostscript 8.15 on Unix Solaris 10. I also ran the same postscript files through ps2pdf (again using Ghostscript 8.15) on a Windows 7 machine, and the resulting PDFs did not exhibit the same errors when opened in Reader or Acrobat.
    Adobe Reader 8 and 11, and Foxit were run on Windows 7. Acrobat 9.4.0 was run through a Citrix server, and I'm not sure what version of Windows it runs on.
    I tried lots of different options in ps2pdf, and also tried running the postscript through ghostscript directly (using the "gs" command). Nothing was able to eliminate the error without resorting to using lossy JPEG compression.
    I am now using lossy (but fairly high quality) JPEG compression in the workflow, accepting the loss in quality and (paradoxically) doubled filesize of the JPEG-compressed PDF files, so I'm really just pursuing this to figure out what the heck is going on, not because it is mission critical.
    Postscript files used to create the above pdfs:
    bad: http://www.mediafire.com/file/v656dp45h2jeyj6/gmbad.ps
    good: http://www.mediafire.com/file/47sn60dgbzbxrs6/gmgood.ps
    The .ps files are very similar to each other, differing only in the image content and the image location/translation.
    The postscript files give multiple warnings/errors when opened in gsview (this happens with all .ps files created by Pinnacle, not just the ones giving me issues).
    The program that is used to create the postscript files is Philips (Adac) Pinnacle^3, a treatment planning system for radiation oncology.

    Hi, thanks for getting back to me so quickly.  Our application uses scanned images up to 10 years old, and there are thousands of images so we cannot rescan these unfortunately.   
    I work in a large organisation with it's own desktop team so unfortunately I can't upgrade the version of Reader on our user's machines to see if this resolves either.  The desktop team will also not upgrade the version as the problem appears to have only started in 9.5.2. 
    Does anyone know how I can confirm if the problem was first seen in 9.5.2 or if there were instances in 9.5.1 also?
    Thanks again

Maybe you are looking for

  • I want to use my Photoshop CS4 for windows on my iMac.

    I have tried the Adobe site, tried to phone ( no answers and then cut off), left messages...to no avail. How can I use my CS4 on my iMac - I am not inclined to spend ridiculous money on a new licence. Thanks to anyone who can help me. Adobe site and

  • Final Cut Studio 2 and New Macbooks with Nvidia graphics

    Do the new Macbooks announced today (10/14/2008) meet the minimum system requirements for running Final Cut Studio 2?

  • Place Excel file; retain strokes

    InDesign CS6 and CC tables are not retaining strokes from imported Excel worksheets. I have searched all over for a solution with no luck. I am placing Excel worksheets (financials) into InDesign (tried every method), tried copy/paste. Looks like I h

  • Create new attribute in the universal worklist

    hi, Anyone knows how to create new attribute in the universal worklist ? I try: in the UWL administration iview --> Click to Configure Item Types and Customize Views Using a Wizard--> Define custom attributes and customize the corresponding view--> h

  • What Javascript event is triggered in moving shuttle items to the right?

    Application Express 3.2.1.00.10 I've tried onclick, onblur, onfocus, onchange, but none of them fires immediately after moving all shuttle values to the right using the >> (select all). My alert message is only displayed once the user selects all and