Recent content by bluecrow

  1. B

    Healpix: How to convert from data to map?

    I can never thank you enough,It happened without a hitch. by this case and your advice,I was able to learn how to use of healpix a little. You gave me examples and it was easy to understand. Thank you.
  2. B

    Healpix: How to convert from data to map?

    Sorry for late reply. Beased on your advice,I do something.But yet I don't understand way from data to map. Please look my code. lot code... double NSIDE=pow(2,6); double NPIX=12*NSIDE*NSIDE; Healpix_Base map(6,RING); for(int i=1;i<=NPIX;i++){ pointing...
  3. B

    Healpix: How to convert from data to map?

    Thank you for answering my question. I already found their site,but I am beginner of cxx. So I want more detailed solution on cxx. Reason why I use cxx is that previous research's program data is wrote by cxx. I want to connect two program.
  4. B

    Healpix: How to convert from data to map?

    Thank you for answering my question. I want to do b, convert the binary data to a visual map I can view.Now I am calculating the exposure of satellite observation equipment,this file's data have width of several tens of degrees.and I want to depict on celestial sphere map.
  5. B

    Healpix: How to convert from data to map?

    Hi. At first,I am sorry that my English is so bad. I've just installed Healpix on cxx(c++), and I'm starting to leraning. then I made txt file containing binary data(RING pixel and corresponding to data like temperture),and I want to make Healpix RING map of the data. but I don't know which...