vote up 1 vote down star

I am building a class that represents a US State or Canadian Province. What should the class be called?

Some ideas:

  • Region: Problem with this is that .Net has a RegionInfo class that uses the term Region to represent a country (and not a State or Province).
  • State: Problem with this is that it could cause confusion with Application State, or Session State, etc...
  • Province: Could work, but very Canada-centric. Just doesn't feel right.


EDIT: GeographicalRegion seems like the way to go. It could even be used as a base class for other geographical region types (ie: Country) and still make sense.

flag

6 Answers

vote up 4 vote down check

GeographicalRegion would be my choice. Its pretty short and totally unambiguous, and it has no connotations with real types of area such as Province or State.

link|flag
GeographicalRegion might be short but I'm not sure it's totally unambiguous. If you would see class called GeographicalRegion would you understand what it represent without looking at the code? – Alex Reitbort Feb 16 at 20:29
Can I ask what you would mistake it for? I think it perfectly describes what it represents. And, as has been edited into the question, and as I have done in my own code, it is easily reused to represent any type of national or international division. What's not to love? – Jack Ryan Feb 16 at 20:47
I do as lot of geocoding related stuff in my job. So anything that says geographic screams x,y or latitude,longitude to me. GeographicalRegion for me can be a class that represents geographic region as in series of points. – Alex Reitbort Feb 16 at 22:05
vote up 1 vote down

Definitely don't go with "State" - way too confusing, and "Territory" has .ca implications too. Wikipedia suggests "Subnational" or "SubnationalDivision" would be good.

link|flag
vote up 0 vote down

StateOrProvince

link|flag
OrTerritoryOrCountyOrCantonOrOblastOrDistrict – annakata Feb 16 at 16:11
"I am building a class that represents a US State or Canadian Province". Reread the question. – Alex Reitbort Feb 16 at 16:19
Like I didn't. So you're gonna bail on Nunavut, NWT, Yukon and future expansion from the get go? Designing for now isn't designing at all. – annakata Feb 16 at 20:21
Then I'll rename the class. I don't see a reason to design for the whole world when developing an app that will be used in one specific country. Remember YAGNI. – Alex Reitbort Feb 16 at 20:28
1  
C'est la vie - I'd rather just go with a more general term that doesn't ask for refactoring later. We'll have to agree to differ. – annakata Feb 16 at 20:48
vote up 1 vote down

I see no problem with State; in the context you're using it in, I don't expect any confusion with application state. Everywhere you use it, you'll also be referring to Country, StreetName, and PostCode, right? Likewise if you choose to name it Region.

I don't like Region, though, because it's rather vague. All kinds of things are regions. If someone asked me what region I lived in, I might say the Midwest. Or the Western Hemisphere. Or Ramsey County. It all depends on context.

You and those working on your project should already know the context, so use a word that makes sense there. Don't worry about whether the word has meanings in other contexts; you're not working with those.

link|flag
vote up 1 vote down

A more generic name for State, that is applicable anywhere in the world, is CountrySubdivision, or just Subdivision.

link|flag
vote up 1 vote down

@JayArr: +1 for GeographicalRegion from me.

@Alex: Although your question implies that your application is only for North America, I would suggest that you use standard ISO 3166-2 geo-region identifiers, which will allow the data to be expanded into other world regions in the future, if required.

link|flag

Your Answer

Get an OpenID
or

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