Can anyone give me some ideas/settings for night scape photos w/ a full or partial moon in them?

I have been trying to get night time "landscape" photos with a full or partial moon in them. The mountains, water, sky and stars all come out great but the moon and its reflection come out very bright, round and pretty blurry. I usually use my kit lens, tripod, shutter remote;100 to 400 ISO, 8-30 seconds on the shutter speed, aperture 4 to 8,10,16...,metering mode "spot", and using the Manual zone. Is there a way to "get it all"? ~Thanks!

You can do this... but the "trick" is to take the shot the evening BEFORE the "full" moon moon and not the of the full moon.
Whenever you have substantially mixed lighting problems (bright moon, dark city), you usually want to look for ways to bring the radically different exposure needs closer together so that the exposure needs from the moon are not so substantially different than the exposure needs of the city.   By shooting the cityscape at "dusk" instead of at "night" you are helping to bring the exposures closer together AND usually a deep blue (end of dusk) sky color looks more appealing than a black sky anyway.
The moon rises a bit later each day (since there are 24 hours in a day but there are about 29.5 days in a Lunar month).  The actual time between moonrises varies a bit.
You want to be in position a bit before sunset.  You'll notice that the moon actually appears to be pretty much "full" one day before it it is technically the official "full" moon.  But since you are taking the shot a day early, you'll get a dusky blue sky behind the full moon rather than a black sky.  On the night of the full moon, the Earth is between the Sun and Moon -- so the moonrise actually occurs "at" sunset.  At that time, however, the moon will be right on the horizon and not up high enough to be visible over the buidlings in your city nightscape shot.  By the time the Moon is high enough, dusk will have completely ended and the sky will be black.  
By getting there a a day EARLY, there will still be some light once the Moon is high enough.  This will completely change your exposure.
The Moon looks best photographed with something called the "Loony 11" rule -- which suggests a correct exposure with f/11 and setting the shutter speed to the inverse of the ISO speed.  So at ISO 100 you'd use 1/100th sec if you are using f/11 (and if you use something other than f/11 you can change the shutter speed to compensate.)  But this rule is for when the moon is high.  Nearer to moonrise the thick atmosphere will reduce the amount of light and will likely require an extra stop to expose (e.g. you may need to slow the shutter to 1/50th at ISO 100 with f/11 - use a tripod or boost ISO speed slightly (I'd use a tripod).
Incidentally, if you use a long focal length it will create the illusion of a very large moon relative to the size of the cityscape below.
You can use the "Photographer's Ephemeris" website (or application) to your advantage here.  I use a mobile app named "Sun Surveyor" but I see the folks who made the "Photographer's Ephemeris" website have also created an app.  The idea behind it is you give it the location and date and it will tell you not only the rise & set times for the Sun and Moon... it'll visually plot the position angle (compass heading) and altitude angle up from the horizon for any time of the day.   And they also use a map.  So... suppose you want to get a picture of a city with the moon just above a specific building... the website and/or app will tell you exactly where you need to stand AND at what time you need to be standing there to get that shot with the moon precisely where you want it to be.
Photographers Ephemeris:  http://photoephemeris.com
Sun Surveyor:  http://www.sunsurveyor.com
Both of these do "roughly" the same thing (I first learned about Photographer's Ephemeris... but at that time the only way to use them was via their website and desktop app (which is free, btw) -- they didn't have an app.  So you had to use your computer to pre-plan you shot before leaving home.)  That was great -- but didn't help me on vacations where my computer is back at home.
Then I learned about Sun Surveyor (which was basically Photographer's Ephemeris... but in "App" form for my iOS mobile device.)  After I bought Sun Surveyor (it's a few dollars).... Photographer's Ephemeris launched their own app.  So now you have at least a couple of options.  
Good luck!
Tim Campbell
5D II, 5D III, 60Da

Similar Messages

  • Can anyone give me some documents for data cluster

    Hi,
    can anyone give me some documents for data cluster?
    ths!
    regards!

    Hi ,
    The following is a documentation on the <b>Data Cluster</b>:
    <b>Data clusters</b> are specific to ABAP. Although it is possible to read a cluster database using SQL statements, only ABAP can interpret the structure of the data cluster.
    You can store <b>data clusters</b> in special databases in the ABAP Dictionary. These are called ABAP cluster databases, and have a prescribed structure:
    <u><b>Cluster Databases</b></u> ( I have explained the cluster databse below )
    This method allows you to store complex data objects with deep structures in a single step, without having to adjust them to conform to the flat structure of a relational database. Your data objects are then available systemwide to every user. To read these objects from the database successfully, you must know their data types.
    You can use cluster databases to store the results of analyses of data from the relational database. For example, if you want to create a list of your customers with the highest revenue, or an address list from the personnel data of all of your branches, you can write ABAP programs to generate the list and store it as a data cluster. To update the <b>data cluster</b>, you can schedule the program to run periodically as a background job. You can then write other programs that read from the data cluster and work with the results. This method can considerable reduce the response time of your system, since it means that you do not have to access the distributed data in the relational database tables each time you want to look at your list.
    <b>Cluster Database :</b>
                    Cluster databases are special relational databases in the ABAP Dictionary that you can use to store data clusters. Their line structure is divided into a standard section, containing several fields, and one large field for the <b>data cluster.</b>
    <b>Creating a Directory of a Data Cluster</b>
    To create a directory of a data cluster from an ABAP cluster database, use the following statement:
    Syntax
    <b>IMPORT DIRECTORY INTO <dirtab>
                     FROM DATABASE <dbtab>(<ar>)
                     [CLIENT <cli>] ID <key>.</b>
    This creates a directory of the data objects belonging to a data cluster in the database <dbtab> in the internal table <dirtab>. You must declare <dbtab> using a TABLES statement.
    To save a <b>data cluster</b> in a database, use the <b>EXPORT TO DATABASE</b> statement .
    For <ar>, enter the two-character area ID for the cluster in the database. The name <key> identifies the data in the database. Its maximum length depends on the length of the name field in <dbtab>. The CLIENT <cli> option allows you to disable the automatic client handling of a client-specific cluster database, and specify the client yourself. The addition must always come directly after the name of the database.
    The IMPORT statement also reads the contents of the user fields from the database table.
    If the system is able to create a directory, SY-SUBRC is set to 0, otherwise to 4.
    The <b>internal table</b> <dirtab> must have the ABAP Dictionary structure CDIR.
    <b>******** Sample Program illustrating the data cluster .</b>
    PROGRAM Zdata_cluster.
    TABLES INDX.
    ******to save data objects in cluster databases
    DATA: BEGIN OF ITAB OCCURS 100,
            COL1 TYPE I,
            COL2 TYPE I,
          END OF ITAB.
    DO 3000 TIMES.
      ITAB-COL1 = SY-INDEX.
      ITAB-COL2 = SY-INDEX ** 2.
      APPEND ITAB.
    ENDDO.
    INDX-AEDAT = SY-DATUM.
    INDX-USERA = SY-UNAME.
    INDX-PGMID = SY-REPID.
    EXPORT ITAB TO DATABASE INDX(HK) ID 'Table'.
    WRITE: '    SRTF2',
         AT 20 'AEDAT',
         AT 35 'USERA',
         AT 50 'PGMID'.
    ULINE.
    SELECT * FROM INDX WHERE RELID = 'HK'
                       AND   SRTFD = 'Table'.
      WRITE: / INDX-SRTF2 UNDER 'SRTF2',
               INDX-AEDAT UNDER 'AEDAT',
               INDX-USERA UNDER 'USERA',
               INDX-PGMID UNDER 'PGMID'.
    ENDSELECT.
    ****To create a directory of a data cluster from an ABAP ****cluster database
    DATA DIRTAB LIKE CDIR OCCURS 10 WITH HEADER LINE.
    IMPORT DIRECTORY INTO DIRTAB FROM DATABASE
                                      INDX(HK) ID 'Table'.
    IF SY-SUBRC = 0.
      WRITE: / 'AEDAT:', INDX-AEDAT,
             / 'USERA:', INDX-USERA,
             / 'PGMID:', INDX-PGMID.
      WRITE  / 'Directory:'.
      LOOP AT DIRTAB.
        WRITE: / DIRTAB-NAME,  DIRTAB-OTYPE, DIRTAB-FTYPE,
                 DIRTAB-TFILL, DIRTAB-FLENG.
      ENDLOOP.
    ELSE.
      WRITE 'Not found'.
    ENDIF.
    *******run this program and see the result.
    Hope this documentation will give you an idea of data cluster.
    if useful, do reward with the points.
    Regards,
    Kunal.

  • I updated my software today and since have not been able to use some of the games on Facebook. I have installed the flash player 12 and still problems, can anyone give me some advice?

    I updated my software today and since have not been able to use some of the games on Facebook. I have installed the flash player 12 and still problems, can anyone give me some advice?

    Your above posted list of installed plugins doesn't show the Flash plugin for Firefox.<br />
    See [[Managing the Flash plugin]] and [[Installing the Flash plugin]]
    You can check the Adobe welcome and test page: http://www.adobe.com/software/flash/about/
    You can use this manual download link:
    *http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller

  • Can anyone give a good contact number for someone in the upper level of customer service

    can anyone give a good contact number for someone in the upper level of customer care i have talked to two of the worst people from customer service, the "supervisor" who was very appropriate did give me a address to mail a complaint which i will but being a disabled veteran of the Iraq war and a member of the wounded warrior project i get upset at certain people who show no respect for the average person and even worse of an attitude to those injured serving their country. I'm in no way saying I'm better its just that i expect a grain of respect as a person, a fellow American working everyday just to get by. my issue was not an impossible issue to resolve but i was told by one rep that it was not possible after my call being "dropped" i called back and talked to another. Luke from call center Washington state told me it was possible but that the phone i ordered two days prior (that rep failed to finish the order)was no longer available and i could pick a different phone not on back order.......i mentioned my confusion to the lack of service and being told two separate things. i asked why this was when i was not the one who made the mistake he told me it was not there fault and pushed the blame to me....he then called me dude and started to speak over me. when i asked to speak to a supervisor he asked why i told him i was no longer interested in talking to him he said why, i asked to be transferred again he kept refusing saying listen man I'm trying to help you what do you want. i asked to speak to his supervisor at least three more times he refused. i asked for his employee information so i could call back to report his rude behavior he refused to give me anything except at the end he finally told me his name.. there is more but my hand is tired is there anyone who can help me? if i find an answer as i will be posting this to many sites i will post it here.

        Hello hazzard0011, I want to first and foremost say we truly appreciate your hard work and dedication to our country. It is our commitment to provide a top notch customer experience. My apologies that this hasn't been the case in your recent interactions. We can definitely submit feedback to our upper leadership regarding the matter. Can you please send us a direct message so that we can further investigate? Also, please share details regarding the initial issue. Here's steps to send a direct message: http://vz.to/1b8XnPy
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • Can anyone give me user exit name for create/update purchase order partners

    Hello guys
      Can anyone gives me user exit name for create/update purchase order partners?
      Requirement is to insert/update partner when SC flag is checked while creating/updating purchase order (ME22N / ME21N)  by using user exit.

    hi,
    check these exits.
    Transaction Code - ME21N                    Create Purchase Order
    Enhancement/ Business Add-in            Description
    Enhancement
    MEQUERY1                                Enhancement to Document Overview ME21N/ME51N
    MEVME001                                WE default quantity calc. and over/ underdelivery tolerance
    MM06E001                                User exits for EDI inbound and outbound purchasing documents
    MM06E003                                Number range and document number
    MM06E004                                Control import data screens in purchase order
    MM06E005                                Customer fields in purchasing document
    MM06E007                                Change document for requisitions upon conversion into PO
    MM06E008                                Monitoring of contr. target value in case of release orders
    MM06E009                                Relevant texts for "Texts exist" indicator
    MM06E010                                Field selection for vendor address
    MMAL0001                                ALE source list distribution: Outbound processing
    MMAL0002                                ALE source list distribution: Inbound processing
    MMAL0003                                ALE purcasing info record distribution: Outbound processing
    MMAL0004                                ALE purchasing info record distribution: Inbound processing
    MMDA0001                                Default delivery addresses
    MMFAB001                                User exit for generation of release order
    MRFLB001                                Control Items for Contract Release Order
    MELAB001                                Gen. forecast delivery schedules: Transfer schedule implem.
    AMPL0001                                User subscreen for additional data on AMPL
    LMEDR001                                Enhancements to print program
    LMELA002                                Adopt batch no. from shipping notification when posting a GR
    LMELA010                                Inbound shipping notification: Transfer item data from IDOC
    LMEQR001                                User exit for source determination
    LMEXF001                                Conditions in Purchasing Documents Without Invoice Receipt
    LWSUS001                                Customer-Specific Source Determination in Retail
    M06B0001                                Role determination for purchase requisition release
    M06B0002                                Changes to comm. structure for purchase requisition release
    MEFLD004                                Determine earliest delivery date f. check w. GR (only PO)
    MEETA001                                Define schedule line type (backlog, immed. req., preview)
    ME590001                                Grouping of requsitions for PO split in ME59
    M06E0005                                Role determination for release of purchasing documents
    M06E0004                                Changes to communication structure for release purch. doc.
    M06B0005                                Changes to comm. structure for overall release of requisn.
    M06B0004                                Number range and document number
    M06B0003                                Number range and document number

  • Can anyone give a good contact number for someone in the upper level of customer care

    Duplicate post - please see:
    can anyone give a good contact number for someone in the upper level of customer service
    Message was edited by: Admin Moderator

        Hello hazzard0011, I want to first and foremost say we truly appreciate your hard work and dedication to our country. It is our commitment to provide a top notch customer experience. My apologies that this hasn't been the case in your recent interactions. We can definitely submit feedback to our upper leadership regarding the matter. Can you please send us a direct message so that we can further investigate? Also, please share details regarding the initial issue. Here's steps to send a direct message: http://vz.to/1b8XnPy
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • Can anyone give me step by step for calling FM from one SAP to another SAP

    can anyone give me step by step for calling FM from one SAP to another SAP
    points will be rewarded,
    thank you,
    Regards,
    Jagrut BharatKumar Shukla

    *& Report  RFC_FOR_CUSTOMER_LIST
    *& RFC to a Fn. module from another system which implements BAPI
    REPORT  rfc_for_customer_list.
    DATA:
      fl_status TYPE i.
    DATA:
      fs_message TYPE bapiret2.
    DATA:
      BEGIN OF fs_customers,
        id   TYPE s_customer,
        name TYPE s_custname,
      END OF fs_customers.
    DATA:
      t_customers LIKE
         STANDARD TABLE
               OF fs_customers.
    CALL FUNCTION 'Z_BAPI_GET_CUSTOMER_LIST' DESTINATION 'R3N'
      IMPORTING
        return = fs_message
      TABLES
        customerlist = t_customers.
    IF sy-subrc EQ 0.
      fl_status = 1.
      LOOP AT t_customers INTO fs_customers.
        WRITE:
          /10 fs_customers-id,
           30 fs_customers-name.
        AT LAST.
          WRITE:
            /,/5 'No of customers in R3N = ', sy-tabix.
        ENDAT.
      ENDLOOP.
    ELSE.
      MESSAGE 'RFC failed' TYPE 'S'.
      EXIT.
    ENDIF.
                           TOP-OF-PAGE EVENT                            *
    TOP-OF-PAGE.
      IF fl_status NE 0.
        WRITE:
          /12 'ID'   COLOR 6,
           32 'NAME' COLOR 6.
        SKIP.
      ENDIF.
    This is one small example...
    Regards,
    Pavan

  • I just bought a new iPhone 5 and both the itunes and the App Store apps don't work, can anyone give me some answers?

    I just bought a new iPhone 5 and both the itunes and the App Store apps don't work, can anyone give me some answers?

    Follow the directions here:
    http://support.apple.com/kb/HT2109

  • Can anyone give me a bean class for JAVAMAIL, for using in JSP?

    Can anyone give me a bean class for JAVAMAIL, for using in JSP?
    I hate coding everything inside a jsp page!! Anyone out there who can help me out??

    hi
    see my post in the javamail forum... here you can see a bean.. I'm trying to connect it with the mysql database - may you can help me

  • Can anyone give me the process flow for MTBF report?

    hi all
        can anyone give me the process flow of MTBF Report?
    regards
    asha

    And Full form of MTBF is ???
    Regards
    Amitava

  • Can you give me some idea why Temperature Need to cool down before you can use it. as this appears after 5min using.

    Dear Sir/Madam,
    My questions:
    Why Temperature appears and ipad need to cool down after 5m of using and not even hot. The guy from the apple store where i bought my Ipad2 told me that the motherboard need to be replaced. Ca you help me and give me some idea on how much it cause of the motherboard.
    Thank you
    Victoria

    if you need a new logic board for you iPad 2 i am sure the cost will be about 50% of what you paid for the iPad 2 $249.00, Take a look at this link, http://www.apple.com/support/contact/

  • I've been trying to transfer Photos I took on my iPhone to my PC am unable to figure it out, can anyone give me some pointer onthis?

    Can anyone give me any Pointers on how to Transfer my Photos
    That I took on my iPhone to my PC?

    when ever you connect ur iphone to ur computer , a new tab appears wit iphone icon on it. there is option in that tab to import pics .This will help you out, or when ever you connect it to ur pc go to my computer select your iphone select the pics , right click and check the option import .

  • Can anyone give step-by-step instructions for moving my iPhoto library to my external hard drive to free up space on my internal hard drive?

    I want to move my iPhoto from my internal hard drive to an external hard drive to free up space. Can it be moved entirely and function the same as before with all features and the software itself on the hard drive?  Also, can anyone give step by step instructions on how to do this?  I'm having a difficult time figuring this out on my own by trying to search through Apple support.

    Oops...
    Here you go...
    iPhoto: How to move the Library to an EHD
    Make sure that the EXT Drive is formatted as Mac OS Extended (journaled).
    That's what iPhoto Likes...

  • RE: CNAME change im stuck can anyone give me some help

    I followed the advice given to me in a post a few days ago. I want to change my domain name over to my new site but really dont know how to do it so wrote to the company and got this reply
    We unfortunatly do not have a system in place that allows us to change the CNAME. If you wish to change the CNAME you would need to transfer your domain name away from us (£15 charge to transfer away) and then with your new registrar you can change the CNAME for your domain name
    I have a question who would be my new registrar and how do I do this know, I tried using ftp and that didnt work so went to change the name over and now that doesnt work either, As im new to this im really stuck what to do. Can anyone help me please

    1. Login into your Godaddy account
    2. Click on Manage Domains and click on your domain name
    3. Click on the "Total DNS" link
    4. Under Host click on the edit link for "www"
    5. For "Alias Name" use: www
    6. For 'Points to Host Name" use: web.mac.com
    7. Click "Ok"
    8. Should update within 24 hours
    from this thread:
    http://discussions.apple.com/thread.jspa?threadID=1086731&tstart=50
    and then
    2)If you're not already logged in to .Mac, go to www.mac.com, and log in.
    3)Click Account in the left column on the .Mac homepage, and confirm your login.
    4)On the Account Settings page, click the Personal Domain button, and then follow the instructions that appear.
    When asked to enter your domain name, be sure to type the entire domain name (including the extension, such as .com, .net) that you've registered.
    5)When you see a screen confirming that .Mac is configured to host your domain, go to your domain name registrar's web hosting area, and point your domain (by adding or changing a "cname record") to web.mac.com
    For instructions on changing the cname register, contact your domain name registrar.
    Please note that the whole process can take up to 48 hours and maybe because of christmas and new year more...
    Regards,
    Cédric

  • I've downloaded movies to my itunes but once they are finished they completely disappear. Also today I opened my itunes and over half of my music and movies that actually show up are gone. Can anyone give me some advice on this problem?

    I have downloaded movies through itunes until the latest version came out. Now the movies will download and then disappear. Everything is up to date so I'm not sure what is wrong. Also I opened my itunes today and over half of my music is missing along with several of the movies that do play. Luckily I have all my music saved, but the movies are completely gone. Does anyone have some ideas that could help me?

    There's a whole lot to read in your post, and frankly I have not read it all.
    Having said that, this troubleshooting guide should help:
    http://support.apple.com/kb/TS1538
    In particular, pay attention to the mobile device support sections near the bottom, assuming you have already done the items above it.

Maybe you are looking for

  • A recent convert from PC: External Hard drive, iTunes library, and NTFS

    So I recently picked up an iBook and am using it in addition to my Toshiba laptop. My entire collection of mp3's is about 13,000 songs, occupies over 40 gig and is stored on an external hard drive. All tags are complete and accurate (That was a long,

  • Problem with Hashtable put

    Hi Can someone please tell what wrong with my code, I'm getting NullPointerException while I was compiling class X509Cert{ private X509Certificate cert; //subject distinguished name String sbcn,sbou,sbo,sbl,sbc,sbe; public void X059Cert()   this.sbcn

  • Userexit/BAdi for CBIH102  (HR-EHS module)

    Hi guru's, Please help find the userexit/BAdi for Transaction code: CBIH102. The Requirement is to auto-populate the Accident Category  (CCIHT_IPEVA-IALPCAT) field  during the Creation/Change mode. I tried the below exits/BAdi & set all the breakpoin

  • Inventory delta load problem

    Hi,      We are facing inventory data load getting below error, Main problem is they got below error in PSA level from 16th june still they changed red icon into green and loaded to incube and compressed. when running process chain they getting same

  • WRTU54G-TM Internet/WiFi Help Needed

    I recently just purchased this wireless router for phone service and I set it up and it works just fine, but my WiFi on my Nintendo DS Lite has stopped working. It worked with my last Linksys wireless router so I started trying things on my new route