Lr 4.1RC GPS metadata not read in CR2 files on Synch

After importing CR2 files from a Canon 5dMkii I later updated those files with GPS coordinates using the program GeoSetter (www.geosetter.de).  The program is a GUI front end to ExifTool that adds the coordinates to the CR2 or JPG files.
After the files are modified, I execute Syncronize Folder in lightroom and select the Scan for metadata updates checkbox.  Lightroom picks up the coordinates from JPG files, but not the CR2 image files.  The only way I can get the GPS data to be imported is to right-click on the CR2 files and select "Read metadata from the selected files".  That works, but any corrections made to the CR2 files after the original import are blown away (there is a warning before the read happens that alerts you to that fact).
So I believe that there's a bug in the Syncronize Folder method that misses the updates from the CR2 files.  Is this a known bug, and if not, how can I get this info to Adobe?

OK, let's start again.
I assume you have changed the Geosetter defaults for your Raw files, so rather than creating an XMP sidecar file you are having the GPS data written directly into the CR2 file, is that correct?
And you have two issues:
1. When you synchronise the folder after making the Geosetter change, Lightroom fails to automatically detect the fact that the file has been amended, and you have to force Lightroom to read the updated metadata from the file by doing a "Read Metadata from File" command.
2. And when you do that, all the existing Lightroom changes are 'lost'.
Have I got that right?
If so, re the first point, I think Lightroom is simply operating as designed. I have tested it on both LR3 and LR4 with the same result, and I guess that as Lightroom itself will never write directly to a proprietary Raw file (i.e. it would always write to an XMP sidecar file), it assumes any XMP data created by external apps would also be in an XMP sidecar file. As Geosetter isn't creating one, it can't detect changed Metadata when you sync the folder, and you have to force it to read the file. I know it WILL detect updated metadata if the file is a Jpeg, but again that's because Lightroom DOES write XMP data directly to Jpeg files, so it's more logical that it looks at the XMP area in such files during the sync folder operation.
On the second point, that will always happen as Lightroom, AFAIK, has no capability of merging it's own catalog metadata with externally created metadata. There are two choices when a metadata conflict is detected.....use the in file metadata, which replaces the in-catalog metadata, or re-write the metadata in the file with what's in the catalog. In fact in your situation, because you are not creating an XMP sidecar file, Lightroom will never know that there's a conflict.....so when you do the "Read metadata from file" it's a one-option deal, i.e. replace the in-catalog metadata with what's in the file, and thus losing the Lightroom data.
If your absolute requirement is for GPS data to be stored in the actual CR2 files, I can't think of any option other than changing your workflow....process the files through Geosetter first, before you do any work on them in Lightroom. If you delay importing into Lightroom until the Geosetter work is done, the GPS data will come in on import. If you import first, then do the Geosetter work, then you'll have to do the "Read Metadata from File" before starting any Lightroom processing.
I guess you could also put in a feature request to have the sync behaviour changed for Raw files.

Similar Messages

  • Problem:  this mac is not reading an excell file after upgrading to yosemite.   My Mac is from 2009, it use to work perfectly but it wasn´t able to open some apps, thats why i upgrade it.   Now it once i donwload the zip it appears with an ".ods" ext

    Problem:  this mac is not reading an excell file after upgrading to yosemite.   My Mac is from 2009, it use to work perfectly but it wasn´t able to open some apps, thats why i upgrade it.   Now it once i donwload the zip it appears with an ".ods" extension
    i even already download a link
    http://www.microsoft.com/en-us/download/confirmation.aspx?id=44026
    which i read on another support page... but it doesnt allowed me to install it cause it says that i already have the disk of this program....
    Im afraid to erase it and not being able to get it back...
    What can i do!??
    Thanks in advance for this kind answer!!!

    fsolution wrote:
    Problem:  this mac is not reading an excell file after upgrading to yosemite...   Now it once i donwload the zip it appears with an ".ods" extension...
    If the "it" refers to a compressed (zipped) spreadsheet that you downloaded, the ".ods" extension is used by LibreOffice and probably OpenOffice (which are free versions of MS Office) for spreadsheets, which would suggest that wherever you're getting that "Excel" file from has switched to one of those programs. I've tried opening an .ods file from LibreOffice using MS Office 2013 for Windows and it does open though with a warning that some things have been changed. I don't know if Office for Mac can normally open .ods files. But if your need is to just open .ods files, take a look at LibreOffice.

  • I have iphoto '08 version with an imac osx 10.5.8. It will not read my RAW files  from my Nikon D800 - a very new model.How can I get it to read my RAW files?

    my somewhat old imac osx 10.5.8 with iphoto '08 will not read my RAW files from my new Nikon D800 camera - a new model on the market( 5 months or so). How can I get iphoto to read my RAW  files?

    iPhoto 08 would not read RAW files from that new a camera. You need to upgrade so you can get more up-to-date version of OS X and iPhoto. Another possiblity is see if iPhoto 11 will run on 10.5.8, if so you should update. You can also attempt to run Software Update and see if it finds a newer release of iPhoto 08 that supports newer RAW formats.

  • Photoshop CS6 will not read my raw files

    I have both a Canon 5D Mark 3 and a Canon 70D and CS6 will not read my RAW files.  I have to convert them to DNG to work on them.  Suggestions?

    According to this Adobe help link, the 5D Mark III had support since Camera Raw version 7.1 and the 70D had support since version 8.2, which CS6 should support fully. (CS6 supports up to the latest Camera Raw, which is version 8.7 as of this post.)
    Is everything updated? (Help > Updates in Photoshop.)

  • Air App will not read local text file using openAsync/readUTFBytes on user (non-admin) mode

    I am running an Air App I did for the desktop, from the actual installed executable already deployed in the machine (Not from Flash Pro / Flex dev. environment). For some reason the app will not read a text file stored in the same application folder unless I run my app as administrator from the OS.
    When I run the app as admin, or within the development environment it works fine. Maybe this is related to some security issue? I read the adobe air documentation, and this should work...
    I am using openAsync/readUTFBytes on user as shown here:
    var continueGamesConnection:FileStream();
    var continueFile:File = new File(File.applicationDirectory.resolvePath("continueGames.txt").nativePath.toString()); 
    continueGamesConnection.addEventListener(Event.COMPLETE, openSavedGames);
    continueGamesConnection.openAsync(continueFile, FileMode.UPDATE); 
    function openSavedGames(event:Event):void
         continueGamesConnection.removeEventListener(Event.COMPLETE, openSavedGames);
         var content:URLVariables = new URLVariables();
         var loadedContent:String = new String();
         loadedContent = continueGamesConnection.readUTFBytes(continueGamesConnection.bytesAvailable);
         content.decode(loadedContent); 
         variableX = content. variableX
         //etc, etc. 
         continueGamesConnection.close();
    By the way, I have also, tried using FileMode.READ, and others, and it still gives me the same problem. Only works if ran on admin mode or from the dev. environment.
    It's very frustrating, I tried reading other posts without any luck... What solutions do people use for this kind of problem?
    I have seen that you can set the app to run as admin somehow, and I guess that could work. However, this should work just fine, since it doesn't seem to violate any of the security APIs of Air. Seems like an overkill. But even so, how do I do that?
    You help is greatly appreciated!

    Thanks kglad.com. I will try this and see if it works. Can you check my code a bit to see if it's right?
    var continueFile:File = new File(File.applicationStorageDirectory.resolvePath("savedgames/continueGames.txt").nativePath.toString());
    Does this look right to work across all desktop OS?

  • Updated to firefox 4, and suddenly can't connect with any browser though I am connected. Error message reads "could not read chrome manifest file."

    i updated firefox and now I can't access the net on any browser. Wireless router everything is connected and up and running. Just not the browsers. uninstalled it, reinstalled it (didn't work), unistalled it again and internet explorer won't work either (not at anypoint after intial update was run. read several peoples simalr problems with the "could not read chrome manifest file" issue and solutions to no avail. uninstall and system restore did not work either. What did it change on my system, and how can I change it back?

    Do a clean (re-)install:
    Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 4.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    * Do not remove personal data if you uninstall the current version.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    * It may not be necessary to create a new profile, so first try if it works with your current profile and if not then create a new profile.
    Your bookmarks and other profile data are stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    * http://kb.mozillazine.org/Standard_diagnostic_-_Firefox

  • LR not reading Canon CR2 and JPEG files

    I have been a long time user of Lightroom, now have LR 3.4 installed. No serious problems so far and I love using it. For a computer set up, I use a one year old Apple desktop with Lion installed. My problem is that this past week, my LR 3.4 will not read my Canon files, either CR2 or JPEG format. I have tried two different cameras ( 5d Mark ii and 7D ) two different card readers and several different memory cards. LR sees the files, starts to upload them and then on concluding its routine says it cannot read the file format. I am patching together a solution by importing the files through iphoto, exporting them to a file in my LR hierarchy file and then importing them into LR.
    Clearly, this is not good. Has anyone had a similar problem? Can anyone offer a solution?
    Thanks

    Given I was home today with free time, I called Adobe support. They took charge of my screen and helped me through the issue. It turns out that when downloading, I was not clicking on the specific file location for my photos. All that I had to do to make the download work was to click on the intended file location. Although it was highlighted before I clicked on it, the clicking on it made the downloading work. I don't ever remember clicking on the specific file location in the past but that small step is now going to be in my file importing methodology from here on out.
    I would like to send flowers to the woman who helped me through the issue. She was very good.

  • My adobe reader does not read my pdf files, I think it was screwed up by the other "PDF-READER". I deleted the other "PDF-READER" from my pc, but it still does not work.

    my adobe reader does not read my pdf filI think it was screwed up by the other "PDF-READER". I deleted the other "PDF-READER" from my pc, but it still does not work.

    Hi wellsfar,
    Which version of Adobe Reader you are using?
    Is it showing any error message?
    A screenshot of the error would be more helpful.
    Regards,
    Florence

  • Can not read my pdf files can i use adobe ?

    I can not read my pdf files and need to download adobe ,can you help please .

    In order to read the pdf either you need Acrobat or Adobe Reader,
    Acrobat is a paid software and used to read and edit the pdf files.
    Reader is the free software used to just read the pdf files.
    To download reader use this link:- http://get.adobe.com/reader/

  • IPhoto 09 not reading Nikon raw files (.nef) properly?

    Hey everyone. Over the weekend I upgraded from Leopard to Snow Leopard. Everything seemed to be working correctly until I started using iPhoto. Since the upgrade, I've noticed that photos that I imported from a Nikon D700 seem to look pixelated. I took it to a Genius Bar and the dude helping me was at a loss. He said to try and re-install Snow Leopard, which I did, and that didn't help. I went back and he upgraded me to iPhoto 09...also didn't help. He said he thinks that maybe it's Snow Leopard/iPhoto bug. He said that it's not reading the raw files correctly and seeing them as thumbnails. We looked at the photo info of a random photo, and even though it was a large 10MB file (indicative of raw format) its pixels were 160x160. Weird. Also of note, both Photoshop and Lightroom view and display all photos correctly.
    If anyone has any suggestions or solutions on how to fix this it'd be much appreciated!!

    Welcome to the Apple Discussions.
    We looked at the photo info of a random photo, and even though it was a large 10MB file (indicative of raw format) its pixels were 160x160.
    That means that what you're seeing is the jpeg Preview inside the NEF and not the actual file.
    My guess is that the your Camera Raw bundle is damaged.
    Go to
    HD / System / Library / Core Services / RawCamera.bundle
    What version of this do you have?
    Regards
    TD

  • Camera raw does not read D7100 nef files [was:Ernied]

    Camera raw does not read d7100 nef files. did update...still no success.

    I suspect that the DNG converter will work for you if you use it properly. It isn't your fault, but Adobe has created a kind of a silly interface in the DNG converter. Notice that it is asking you for the folder. When you are browsing for a location within the DNG converter, choose the folder, but don't open the folder. If you do then the DNG converter will tell you there are no images to convert. If you choose the folder then the DNG converter will convert all the files within that folder.

  • Hello,this error comes up all the time:Could not read chrome manifest file 'C:\Program Files\Mozilla Firefox\extensions\{972ce4c6-7e08-4474-a285-3208198ce6fd}\chrome.manifest'. What does it mean? and how can I fix it?

    Could not read chrome manifest file 'C:\Program Files\Mozilla Firefox\extensions\{972ce4c6-7e08-4474-a285-3208198ce6fd}\chrome.manifest'.
    This is pretty much it, It was in my error console and its there
    every time I check on my errors

    I used the 64bit win7,when I start firefox it will be no response just in one
    minute ,the console show me this error :Could not read chrome manifest file 'C:\Program Files\Mozilla Firefox\extensions\{972ce4c6-7e08-4474-a285-3208198ce6fd}\chrome.manifest!

  • I am trying to update Adobe Bridge and Photoshop CS6, because it is not opening my CR2 files taken by my Canon 6D.  I have tried to go to help updates, and the software says that it is "Up to Date".  However, if I view the plug-in, it says that Camera R

    I am trying to update Adobe Bridge and Photoshop CS6, because it is not opening my CR2 files taken by my Canon 6D.  I have tried to go to help > updates, and the software says that it is "Up to Date".  However, if I view the plug-in, it says that Camera Raw is only version 7.1.  I can not find a direct download for Camera Raw 7.3, only the DNG converter, NOT CAMERA RAW!  Please Help!

    Did you fix your issue?  I am having the same one

  • Open Dataset for XML not reading the XML file, Returning Code 8.

    Dear all,
    Im trying to open an XML file using Open Dataset, since i have to execute this report in background and GUI_upload doesnt work in background.
    The XML file is available in my C:\, say, C:\xmlfile.xml.
    But  the open dataset is not reading any value into the g_xml_line . it is returning sy-subrc = 8.
    Below is my code for that, can anybody help me out to resolve.
    DATA : lv_filename LIKE rlgrap-filename.
      CLEAR: lv_filename.
      lv_filename = p_input.
      OPEN DATASET lv_filename FOR INPUT IN BINARY MODE.
      IF sy-subrc ne 0.
        WRITE:/ 'invalid file'.
      else.
      DO.
        READ DATASET lv_filename INTO  g_xml_line.
        IF sy-subrc EQ 0.
          APPEND g_xml_line TO g_xml_table.
        ELSE.
          EXIT.
        ENDIF.
      ENDDO.
      CLOSE DATASET lv_filename.
       ENDIF.
    TYPES: BEGIN OF t_xml_line,
            data(256) TYPE x,
          END OF t_xml_line.
    DATA: g_xml_table       TYPE TABLE OF t_xml_line,
          g_xml_line        TYPE t_xml_line,
          g_xml_table_size  TYPE i.
    GET REFERENCE OF gt_person INTO gs_result_xml-value.
      gs_result_xml-name = 'IPIX'.
      APPEND gs_result_xml TO gt_result_xml.
    Perform the XSLT stylesheet
      TRY.
          CALL TRANSFORMATION zaum_manh_sync_rpt
          SOURCE XML g_xml_table
          RESULT (gt_result_xml).
        CATCH cx_root INTO gs_rif_ex.
          gs_var_text = gs_rif_ex->get_text( ).
          MESSAGE gs_var_text TYPE 'E'.
      ENDTRY.
    Kindly suggest me a solution. Points assured
    regs,
    raja

    After saving the file , below is the code i wrote, but it gives a runtime error with message
    No roll storage space of length 3788808 available for internal storage.
    ***Coding****
    PARAMETERS: p_file TYPE pathintern LOWER CASE DEFAULT '/usr/sap/DEV/SYS/global/XMLABAP2.XML'.
    DATA : lv_filename LIKE rlgrap-filename.
      CLEAR: lv_filename.
      lv_filename = p_file.
      DATA: l_fname TYPE filename-fileintern. " File name
    *GET THE FILENAME FROM THE APPLICATION SERVER
      CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
        EXPORTING
          directory        = p_file
          filemask         = '*'
        IMPORTING
          serverfile       = l_fname
        EXCEPTIONS
          canceled_by_user = 1
          OTHERS           = 2.
      IF sy-subrc NE 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    */usr/sap/DEV/SYS/global/substanc
      lv_filename = l_fname.
      OPEN DATASET lv_filename FOR INPUT IN BINARY MODE.
      IF sy-subrc NE 0.
        WRITE:/ 'invalid file'.
      ELSE.
        DO.
          READ DATASET lv_filename INTO  g_xml_line.
       IF sy-subrc EQ 0.
          APPEND g_xml_line TO g_xml_table.
       ELSE.
         EXIT.
       ENDIF.
        ENDDO.
        CLOSE DATASET lv_filename.
      ENDIF.

  • Fire fox is not reading my XML file for digital signature

    I have to upload the xml file in www.incometaxindiaefiling.gov.in by digitally signing the xml file. When I click on the tab for digital sign, the message come " cannot read the xml file"

    Not the sort of thing it is easy to help with as by definition it will not be a public site but one for Indian Taxpayers, and can be expected to be secure.
    Have you tried using Internet Explorer.
    You could try attaching screen shots of the problem pages and any error messages, but please be careful and edit out any confidential or sensitive information before attaching such an image.
    Please remember you are posting on a public and websearch indexed website, this is not a private support ticket.
    *link is https://support.mozilla.org/en-US/questions/968557
    Are you seeing a shield icon in your location bar as explained in this article
    * How does content that isn't secure affect my safety?
    That is rather a longshot as it is a change in Firefox so could affect you this year, but would not have affected you last year.
    * see [[How does content that isn't secure affect my safety?]]
    I note the public portion of the site
    * https://incometaxindiaefiling.gov.in/
    * talks about 'e-Filing' and 'Option 1: Use Digital Signature Certificate (DSC)' and then gives two other alternatives
    Other possibilities
    *[[Troubleshoot the "Secure Connection Failed" error message]]

Maybe you are looking for

  • Finding The Mapped Path

    I have written a rather complex system that uses smoke, mirrors, and occasional subterfuge to display web pages. I noticed that the CFFORM javascript controls weren't working on some of the end-of-the-line cfm pages. Through trial and error, I discov

  • Directory Structure Errors

    In TechTools ( came with Applecare ) i got a failed on Directory Structure, second time since owning my couple month old machine, first time apple recomended reloading. i dont mishandle it, dont bump, dent, etc, the laptop. but all of a sudden someti

  • 10g: reset sortcriteria on table when page is opened

    I have a master page and a detail page, and in the detail page the user is allowed to sort the table. When in the master page a new master is chosen the data for the detail page is changed, and sometimes the column that was sorted by is not even show

  • First Step Towards an entry in SAP HCM

    Hi Experts Some days back, I wrote a query about doing a certification in SAP HCM on this platform to which quite supportive people replied. As and when I decided to go for the certification and gathered some info, some experienced people cautioned m

  • BAM-00553: Resources start operation for destination jms/BAMTopic failed

    Hi , im trying to subscribe to a JMS topic created in a different machine(OSB+weblogic) from BAM Enterprise Message sources .Bam is intalled in a different machine along with soa suite. when i try to subscribe to that topic im facing this issue BAM-0