As I understand,first of all I should to get the country's map and the river's list. To get country map is simple:
GeoGraphics[Polygon[Entity["Country", "Belarus"]]]
Also I get the list of all world rivers:
EntityList["River"]
but I can't get the list of rivers in some country(for example, Belarus). I have tried to use such functions as GeoEntities, EntityList, etc. But, there are not any results. Could you help me? Thank you in advance (and I am sorry for my English:)
Entity["River","Dnieper"]["Countries"]returns{Entity["Country", "Russia"], Entity["Country", "Belarus"], Entity["Country", "Ukraine"]}). You could mapEntity["River", #]["Countries"]&on the list generated byEntityList["River"], then select those that contain Belarus, but it will be very slow! Alternatively, you might consider using the list of rivers on Wikipedia as a starting point (imported viaWikipediaData["List_of_rivers_of_Belarus"]), but it will need manual(?) cleaning. – MarcoB May 12 '15 at 19:51rivers in belarus. – chuy May 12 '15 at 20:02