I'm working on a Drupal project where I have two types of nodes built with CCK content types -- "venues" (parent nodes) and "concerts" (child nodes).
I've imported a bunch of well-known venues from CSV via node_import module, and now need to import another CSV filled with shows.
How do I:
a. Reference the venues from the concerts CSV -- what I essentially need to do is create a nodereference based on a location.module address (But not the CCK type because of how I imported the venues), but I don't know how to import like this, especially when the same address may vary somewhat between the two sheets (in terms of punctuation, etc.).
b. For some concert listings, it's likely my venue datasheet will be incomplete. When importing, how do I create parent nodes when the importer can't find the address referenced by the child node? Note that the concerts CSV has most of the information from the venues CSV in each row.
I mention I'm using node_import but am thinking I may need to use the Data API for this. I have no experience with the latter (Or preference for a particular importing method, really) and would be grateful for any help whatsoever you can give me.