Posts

Showing posts with the label arXiv

Arxiv author affiliations - Part II

Well, one part of the project is complete now that I have lists of affiliations of co-authors on a number of papers. I now need to convert this into an edge-weighted graph, where the edge weights convey how connected various universities are in terms of co-authorship. Previously, I had mentioned that I had information on all of the author affiliation but that I needed to sort them based on individual papers. As small tweak in the code was all that was needed to get that information. Following is the necessary code. import urllib from BeautifulSoup import BeautifulStoneSoup   url = 'http://export.arxiv.org/api/query?search_query=all:astro&start=0&max_results=1000' data = urllib.urlopen(url).read() soup = BeautifulStoneSoup(data) test = [tag for tag in soup.findAll('entry')]   affiliationList = [] for i in range(len(test)):         if test[i].findAll('arxiv:affiliation') != []:                 affiliati...

Arxiv author affiliations using Python

So, I wanted to get author affiliation information from papers on arXiv. arXiv provides with an API to bulk query their database and get information. Following that, I look for the attribute 'arxiv:affiliation' in the html data. Here's the code - import urllib from BeautifulSoup import BeautifulStoneSoup   url = 'http://export.arxiv.org/api/query?search_query=all:astro&start=0&max_results=1000'   data = urllib.urlopen(url).read() soup = BeautifulStoneSoup(data) #print(soup.prettify()) #list = soup.findAll('arxiv:affiliation') #for i in range(len(list)): #        print list[i].contents   test = [tag.string for tag in soup.findAll('arxiv:aiffiliation')] Now, the problem I'm having is that I'm getting affiliation of all authors which I want to split into sets of affiliations of authors of a paper, which I'm stuck on at the moment. Once I get that part, I can move on to the next part of this pet project, displaying these...

FIGGS : The Faint Irregular Galaxy GMRT Survey

For those who don't know, GMRT stands for the Gaint Meter-wave Radio Telescope. Meter because it observed radiation with wavelength of about a meter or about 300 MHz. Ohkay, with that out of the way, let's talk about the actual paper. If you have been following my blog posts, you will understand why studying faint, irregular, dwarf galaxies is important. Faint dwarf galaxies have very low mass and understanding them will help us understand galaxy formation and evolution in the low mass case. Another interesting thing I learnt from the paper, that should've been obvious to me earlier, is that the gravitational force keeping the (gas in the) galaxy together is about the same as that produced by a few supernovae. The reason they are irregular makes sense now because once these galaxies start forming their first stars, which then go on to explode, the galaxy's gas gets pushed out by the explosions. Also interesting is figure 12 from the paper, that tells us that most of ...

arXiv : "A Zoo of Galaxies" by Karen L. Masters

Image
" A Zoo of Galaxies " by Karen L. Masters is a good place to start for an amateur astronomer interested in contributing to astronomy. The author discusses the Morphology of Galaxies and human efforts over the last couple of decades in classifying the galaxies. Our understanding of the universe and our milky way galaxy in general have changed over the last couple of decades - from thinking that earth was the center of the universe to understanding that the earth revolves around the sun, - from thinking that sun was the center of the galaxy to realizing that the sun was ~8 kpc away from the center of the milkyway galaxy and - from thinking that the bright objects and halos visible in the night sky belong to our galaxy to understanding that the our galaxy is just one of the many galaxies visible in the night sky, that galaxies interact with each other, move in clusters, collide with each other, and it's all for us to see, understand and observe in awe. On the journey...