IPhoto 09 not recognising locations for geo-tagged photos

I've been geotagging my photos in iPhoto for over a year now, using HoudahGeo. This works really well and integrates great with sites such as Flickr that support geo-tagged photos.
When I installed iPhoto 09, it only recognises about 30 photos out of several thousand as geo-tagged. These are mainly photos taken with my iPhone, but also some taken with my Sony camera and geotagged with HoudahGeo.
I've checked a sample of the ones it does not put in a location (all taken with the same Sony camera) and the Exif data is there with the correct latitude and longitude but iPhoto 09 sees these fields as blank when I do a Photos > Shows Extended Photo Info, the latitude and longitude fields are blank.
Anyone any ideas what I am doing wrong / how I get the photos to show on the map in iPhoto 09?

I usually import the photos direct to iPhoto from my camera and then use HoudahGeo to geo-tag the original copies of iPhoto in my library. Prior to iPhoto 9 this is not a big issue as it did not use the geo-tag information directly but with iPhoto 9 it's a big issue for users like me as I'd rather not have to export from the camera to a folder, geo-tag and then import to iPhoto 9 as it's messy to say the least.
As I noted - this will not work - iPhoto is a database and it keeps data about the photo in its database - as all database programs do - and changing the data elsewhere will not update the database
Anytime you apply modifications directly to the data in the iPhoto database you are risking corruption and it is recommended that you not ever modify the contents of the iPhoto library
I use an ATP Photo Finder - http://www.atpinc.com/p2-4a.php?sn=00000414 - which applies the Geocodeing data directly to my photos so when I import them they are complete - it simplifies my work flow a lot
Surely Apple will have thought of users like me who geo-tag using a GPS external to the camera and provided some easy method of re-reading the Exif data in the photos in real time?
iPhoto menu ==> provide iPhoto feedback
LN

Similar Messages

  • IPhoto 11 is moving my geo tagged photos

    iPhoto has been moving my geo tagged photos to the wrong place, sometimes it is just moving a few of them to a different town a few miles away but after opening it today it moved about 60 pictures taken in Maui to somewhere in Idaho. Is anyone else having this problem or know how to fix it?  I'm getting tired of having to move my photos back to where they were taken as it is not very easy anymore with the newest version of iPhoto.

    Sorry but I do not understand your question
    As to importing iPhoto simply copies the photos to the iPhoto llibrary - no changes of any sort are made
    LN

  • Places doesn't show up for geo-tagged photos from phone (Sony Ericsson)

    So I have a Sony Ericsson T715, which has triangulation geo-tagging for photos, I can see their location through the phone no problem.
    However, when I import them via the Bluetooth File Browser to my Mac and import them into iPhoto '09, their location does not show up the photos seem to hold no information on this.
    Why is this? How should I import them so that this information stays? (Was a reason why I bought this phone.)
    I tried looking at the phone/importing through Image Capture, but it doesn't seem to work... keeps randomly opening iPhoto and showing nothing. In Image Capture it shows the photos, but I can't import them - just says it's importing, but does nothing in the end.

    No one but the people who made the phone if the data is not there then it is not there and it is not an iPhoto issue - it is a phone issue - their tech support is the place to go
    iPhoto handles correctly formatted Geo Date in the correct EXIF fields - getting it there is the soure hardware's job
    LN
    PS threadjacking is not the best way to get answers even if it is an iPhoto question - new threads that are on the subject are much more successful
    Message was edited by: LarryHN

  • Request to post Icloud not working locations. for 2 days almost from Ventura CA. I think they are not being truthful about th eamount of folks affected!

    request to post Icloud not working locations. for 2 days almost from Ventura CA. I think they are not being truthful about the percentage of folks affected!
    and what's with the minimalist response? We're working on it for 2 days? You can do beter than that for exsisting loyal customers can't you?

    I just spoke to a Support person with Apple.  I got the same answer, "We Don't Know", "but they are working on it...Blah, Blah.  I too live in Ventura, and have been without email since yesterday approx. 3:00 pm.
    The guy said, it's the same if you brought your computer into the shop.  We have to determine if it's hardware, or software, then fix the problem.
    Well, What about a BACK UP SERVER?  No real answer to that one.  Just, "Thanks, for your Patience."
    This really blows!!!

  • Warning not imported photos in the library to open iphoto, not being possible to import the photos in question, warning not imported photos in the library to open iphoto, not being possible to import the photos in question

    warning not imported photos in the library to open iphoto, not being possible to import the photos in question

    https://support.apple.com/kb/ht2638

  • Cursor scope : cursor is not recognising in for loop.

    CREATE or REPLACE PROCEDURE TEST(
    date3 IN DATE,
    Out_Entity OUT Test1.RefCsr
    AS
    FirstNameListTable LIST_TABLE;
    FinalFirstNameListTable LIST_TABLE := LIST_TABLE();
    firstName employee.first_name%TYPE;
    date1 employee.start_date%TYPE;
    date2 employee.start_date%TYPE;
    CURSOR main_cur
       IS
          WITH include_rec
            AS (select first_name,count(1) over (partition by first_name) firstNameCount,start_date  from employee where city='Vancouver')
    SELECT distinct first_name
            FROM include_rec
           WHERE firstNameCount>500;
    BEGIN
        OPEN main_cur;
        FETCH main_cur BULK COLLECT INTO FirstNameListTable;
        CLOSE main_cur;
    FOR i IN FirstNameListTable.FIRST .. FirstNameListTable.LAST
        LOOP
    firstName:=FirstNameListTable(i);
    SELECT min(start_date),max(start_date) into date1,date2 FROM include_rec where first_name=firstName;
    --business logic
        END LOOP;
    OPEN Out_Entity FOR SELECT * FROM TABLE(
                                                    CAST (
                                                            FinalFirstNameListTable AS LIST_TABLE
                                            ) Nos;
    END;
    create or replace TYPE "LIST_TABLE" as table of varchar2(20);
    SELECT min(start_date),max(start_date) into date1,date2 FROM include_rec where first_name=firstName;In above query, getting error:table or view doesnt exit. When i replaced "include_rec" with "employee",error is resolved.But i have to use include_rec,Because i dont want to query on lage table employee, i know my final query output will be subset of include_rec table.
    Means it is clear that cursor is not recognising in for loop and how can i resolve it?

    Can u please tell me code about "creating permanent object or view." in this context. I don't really want to. This is not a route you should be encouraged to go down.
    A view is the correct mechanism for reusing SQL. So I just mean:
    CREATE OR REPLACE VIEW include_rec AS
    select first_name,count(1) over (partition by first_name) firstNameCount,start_date  from employee where city='Vancouver';Then you get rid of "WITH include_rec AS ()..." from both statements.
    But this is pants.
    Surely all this should just be:
    CREATE or REPLACE PROCEDURE TEST (
      date3 IN DATE,
      Out_Entity OUT Test1.RefCsr
    AS
    BEGIN
      OPEN Out_Entity FOR
        SELECT first_name, count(*), min(start_date), max(start_date)
        FROM   include_rec
        WHERE  employee
        GROUP BY first_name
        HAVING COUNT(*) > 500;
    END;
    /

  • Iphoto not recognising jpeg file

    I have a Sony Nex-5r camera.  Up until yesterday I could upload photos from camera to iphoto not a problem.  For no reason that I can pinpoint iphoto now comes up with a mesage stating that the files are not in a recognisable format and I can't transfer them from my camera.  I use a usb cable to conntect to my Mac.

    It's a minor database glitch, so let's repair the existing library:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • IPhoto not exporting description for Canon Powershot

    iPhoto is not exporting descriptions for photos taken by my Canon Powershot SX110 IS.
    I use the camera to take a picture, import the photo, add a description and use File->Export, choosing JPEG, check box for Title and Keywords, check box for Locations.   Perform export and view photo in Preview, view exif using Tools->Inspector.  All pertinent exif data is there except description, including keywords and location. Specifically looking at IPTC and TIFF data fields.
    However, if I export Photos from my wife's camera (a Canon SLR model) or a friend's Canon EOS model, then the descriptions do get exported.   Any ideas or solutions on how to export the description for the Canon Powershot?

    I can confirm that. I just imported it to iPhoto and no, I can't see the caption there either. But, and this is odd, there are several blank spaces there - for instance, in the shot below I just typed 'this is a test' where the cursor would let me.
    So you can see there is some element of recognition that there is *something* there, which is weird. I tried copying and pasting that out but there are only spaces and no actual text that I can find. This is also repeated with Aperture.
    There is some incompatibility between that camera and the Quicktime substructure on the Mac... I've simply never seen anything like this before.

  • Multiple files and locations for the same photos

    Hi all~
    Hoping someone can help me find a simple solution to my problem. I've been trying to organize my photos on my mac, and I've been taking a lot of time to create albums in iphoto and rearranging all of my files. I got a message this morning that I have little space left on my startup disk, and that I need to delete some files. I suspected immediately that it had something to do with the pictures, so as a test, I searched in Finder for a few of the photo file names, to see how many copies there were. Not surprisingly, there were MULTIPLE copies of the photos, one in my iphotos folder, another in my regular photos folder, and sometimes two in the regular folder. I also had alias files listed in my iphoto albums, but considering the size of those, they are just a link to the real photo file. Is there an easy way to get rid of the dupes, or do I just have to sit and take the time to go through them by hand? Also, is there a better way to upload photos and manage the files, so that I don't have this problem again? Any suggestions would be greatly appreciated.
    Thank you,
    Noreen

    Hi, Noreen. Whenever you import photos into iPhoto's library, they are copied (not moved) from their original locations to locations controlled and managed by iPhoto, in the iPhoto Library folder inside your account's Pictures folder. If the original picture files you imported were located on your hard drive instead of on a camera memory card, CD, or other storage media, then after the import you are storing each image twice on your hard drive: once inside and once outside your iPhoto Library. While there may be some comfort in having two copies of your photos stored that way, it's not a useful backup strategy: if your hard drive fails, both copies are apt to be lost.
    Here is a backup strategy that will enable you to recover all your pictures and albums in the event of a primary hard drive failure, and will eliminate the duplication of image files on your primary hard drive. It assumes that you want to use iPhoto to manage and organize all your pictures — an assumption that isn't valid for every user, but works for many.
    1) Identify all the images on your hard drive that you haven't yet imported into iPhoto, but that you want to save. You will have to do this manually. Make a list of all their locations as you identify them, so you'll be able to find them again quickly during step 2.
    2) Import all those images into iPhoto, and arrange them in albums to suit yourself.
    3) Copy your iPhoto Library folder to another storage medium that is large enough to hold the entire folder. Typically, this will need to be another hard drive: internal if your Mac provides space for one; external if it doesn't, or if you don't want to open up the Mac and install another internal drive. Most users' iPhoto Library folders are (or will soon become) too large to fit on a CD; many are too large to fit on a DVD. The absolutely essential point to remember is that to preserve its identity as a functional iPhoto Library, the library folder must be copied to the backup storage medium *as a single, intact unit* — copying it piecemeal or spreading it over several CDs is a path to certain disaster. The contents of that folder are interrelated in ways that only iPhoto understands. Disrupting those relationships by dividing the library into segments destroys all the work you've done to organize your pictures within iPhoto. All that work will have to be laboriously repeated if you alter or break up the structure of the backup library, and then lose your primary library to a hard drive failure or computer theft.
    4) Delete all photos from your primary hard drive that are not stored inside the iPhoto Library folder. This eliminates the storage of duplicate copies on that drive and frees up space.
    You are now committed to using iPhoto, rather than the Finder's hierarchical folder structures, for the organization and management of all your digital photos. You have no photos that are stored outside the iPhoto Library folder, and for the reasons I described at length under #3 above, you shouldn't use the Finder to meddle in any way with the contents of that folder. Everything you want to do with your pictures from now on can and should be done using the commands and preferences within iPhoto, not manually in the Finder.
    Note that the procedure outlined above will, at first, consume more disk space rather than less, as the import process makes new copies inside your iPhoto Library of photos that were formerly stored only outside it. You will later regain duplicated-storage space by deleting all externally-stored images, and if you already had a lot of duplicates before starting this process, you'll probably end up with more available disk space at the end than you have now. But if your available disk space is already minimal now, you may have to take steps to increase it before starting on the process I've outlined. This article may help you do that.
    Good luck!

  • Customised file explorer window for Geo-tagged images

    Dear All,
    I am really stuck on this issue. Did lots of searching but reached nowhere.
    I want to launch a file explorer window which displays only geo-tagged images(can be .jpg,.tiff,.gif) in the form of thumbnails. On selecting any of the images, the latitude adn longitude information is extracted from the image. I have found a few helpful links on the latter part(extracting the EXIF data location coordinates) but have no idea about the first part(thumbnailing geo-tagged images in explorer window). Can anyone provide useful links, references or code?

    Thanks a lot for that link. I am sorry to be asking this but i have run into problems regarding extracting the latitude longitude information from geotagged images using java. Are the same kind of tags always used in all images for storing latitude/longitude values in the EXIF data? I understand i have to use ImageIO but what tag should i exactly look for while parsing the metadata tree and how? Please provide some related links regarding this.

  • Added a photo but iPhoto not recognising it as a face in my library

    Ive added a few pics, these of of people who already are tagged in Faces.
    ive been to the faces source list, and the pic isnt there in any of my faces, how do I make iPhoto pick it to be one of them, it doesnt even come up with a suggestion.
    if I pick the photo, it ask me to add a missing face, but it isnt a missing face as its already in my Faces source?
    Am I missing something here?
    cheers

    select the new photos one by one and click names in the tool bar -it the face has a square on it click it and name it - it it doesn't click on the add a face and put a square n it and name it
    iPhoto does not always identify every face - sometimes you still have to do it manually
    LN

  • IPhoto Not Recognised in Other Applications

    Hi there,
    I really need help here and step-by-step guidance would really be appreciated.
    First, I saw the article relating to this on the website and it didn't solve the problem (new xml file).
    Originally I had iLife 2006 installed and I upgraded to iLife 2008. No problems prior to the upgrade.
    Now, in iMovie, for example, I can no longer access my iPhoto library, it is greyed-out and inaccessible. I am using 10.4.10 with the latest iLife updates, iPhoto is 7.1, (v347).
    Upon reading other posts it seems I should make a back-up of the iPhoto library. Please assist me by providing details on how to safely accomplish this.
    Thanks so much in advance. Any help and guidance is very much appreciated.
    Lynn

    Lynn:
    You're referring to accessing iPhoto via the Media browser in iMovie and other iApps, right. Try the following:
    1 - delete the following preference files:
    com.apple.iApps.plist
    com.apple.iMovie.plist
    com.apple.iPhoto.plist
    com.apple.iDVD.plist
    Also the preference file for the other iApps that can't see iPhoto.
    These are located in your User/Library/Preferences folder
    2 - launch iPhoto first, then iMovie and iDVD.
    See if that will jump start the Media Browser.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • IPhoto not showing image for editing

    In iPhoto, in events, I click on an event, then highlight a photo.  When I double click the thumbnail, I see a preview but when I click that to edit or if, on the thumbnail, I right click>"edit in iPhoto", all I see is a blank screen.  If I highlight the thumbnail and click Reveal in Finder>original file, I get "can't find it" or if I click >modified file, I get iPhoto library>previews>the file.  I have by shear accident been able to find iPhoto>masters and see that the original files are still there.  How can I get back to iPhoto finding the masters and allowing me to edit?

    If I highlight the thumbnail and click Reveal in Finder>original file, I get "can't find it"
    Your library is corrupted. Try restore from your back up. If that fails:
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.

  • Assign automatically names from places to imported geo-tagged-photos?

    Hello,
    I don't know, if I don't understand the Places function or if I use it in the wrong way or if it doesn't work
    I tag my photos with geo-coordinates using HoudahGeo or something similar. Then I import these photos to iPhoto09.
    But iPhoto09 is only showing the Pin on the map correctly, but the Place under "Information of the photo" is empty.
    Even if I create a new place: "my home" and makes the blue circle big enough, iPhoto09 don't recognize new imported photos with geo-coordinates from "my home".
    Is it right, that I have to tag my photos twice?
    First: Geotag them with HoudahGeo
    Second: Assign a place to the photo in iPhoto09
    It would be great, if iPhoto could automatically assign places to new imported photos...
    any ideas?
    Thanks in advacne!
    Message was edited by: maxds

    You are correct - you have to manually assign your places to photos to have the custom names show up - I think that the geo coding name look up probably only uses the Google places
    Suggest this addition to Apple - iPhoto menu ==> provide iPhoto feedback
    You can select a group of photos and right click on one (control click) and set all of them to your home at one time - or you can even do that to an entire event (click on the little "i" in the lower right hand corner)
    LN
    Message was edited by: LarryHN

  • HT4236 iPhoto not recognizing iPhone with too many photos.

    I recently took a lot of pictures using my iPhone (about 15,000 cos I was doing a time lapse). Now when iPhoto & Image Capture will not recognize my iPhone when I plug it in; the phone still shows up in iTunes.
    I hooked up another iPhone onto my Mac and it syncs fine. I also hooked up both phones onto a Windows PC, the other phone is working fine but I am unable to access the photos in the phone with 15,000 photos.
    How can I get my photos off the phone?
    Thanks in advance.

    This is from Mac Help. It is a good idea to create another account to use in troubleshooting situations such as this. After you create the new account, open iDVD from that account. Try creating a small project to see if you are having the same problems. Post back with your results.
    _Adding a new user account to your computer_
    You can create individual user accounts for each person who uses your computer. Each new user has a separate home folder and can adjust his or her own preferences without affecting other users.
    Choose Apple menu > System Preferences and click Accounts.
    If some settings are dimmed, click the lock icon and type an administrator name and password.
    Click Add and type the user's name.
    If you don't want to use the short name generated automatically, type a new short name. (Once the account is created, you won't be able to change the short name.)
    Type the user's password in the Password and Verify boxes.
    Type a hint to help the user remember the password if they have trouble remembering it at login.
    Click Parental Controls and select options to determine what the user can do with the computer.
    If you change your mind while you're creating a new user account, click Delete to cancel.

Maybe you are looking for

  • Video input to iPhone?

    Hi Is there any way of connecting a video signal (composite PAL)to the iPhone so that video can be recorded from an external source? ...or maybe via USB?

  • PB-12 HD died out of the blue!

    Has anyone had their HD die on them Out of the blue? My laptop was working fine one minute, and when I went back to it a few minutes later, it was frozen. I tried to start it from the Power Button and it would not start again. The daisy wheel just sp

  • Month subscription to Italy

    Question:If I pay one month subscription 400 min  for landlines and mobiles in Italy what happens if the person (who has that italian mobile phone I wish to call ) travel for some time to UK ?  Can I  still  call that italian mobile phone number for 

  • Need information for icloud or streaming

    wath is the form for eraser information in iclud or estreaming

  • Adobe Acrobat 8 menu disappear and become big!

    Hi! I have a strange problem with acrobat 8, when i open pdf the menu disappear and became large, it's very annoying when i press F9, menu will be disabled and there's no problem but i can't use menu! it seems like this : http://i37.tinypic.com/1537j