Scaling analog readings to stable values

int value;

void setup() {
}

void loop() {
  value = map(analogRead(0), 0, 1023, 50, 250);
  show_me_on_display(value);
}

there is nothing else then what i've already described