I have an application which maintains a table of places registered in the National Registry of Historic places. I'd like to reliably search for one of these places in Wikipedia, given it's NRHP "refnum".

The search I am currently using now looks like this:

http://en.wikipedia.org/w/index.php?title=Special:Search&search=refnum+66000539

(I use Python as my language, but I don't think this is especially relevant here. I construct the url, do a urlfetch, and see what comes back.)

But this example, and many others, turn up no results. However, when I go to the Wikipedia page for New York City Hall:

http://en.wikipedia.org/wiki/New_York_City_Hall

it clearly gives this exact "refnum" on the page. How can I construct a search, using the refnum, which I already know, so that I can reliably find this page?

Thanks,

Ted Gilchrist

link|improve this question

27% accept rate
feedback

1 Answer

There doesn't seem to be a way to find an article based on the refnum.

What you can do is to use the API to get all articles in Category:National Register of Historic Places and for each of them parse the first section to get the renum.

Or you could try asking at Wikipedia:WikiProject National Register of Historic Places.

link|improve this answer
I also know the latitude and longitude. Can I combine this with some of the above to get the right page? Thanks for your pointers. – egilchri Sep 27 '11 at 22:27
I don't think so. There is no simple way to search based on coordinates. But maybe there is some external database that allows you to do that. – svick Sep 28 '11 at 19:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.