ResourceType.objects.create(name="observing_time_commissioning",description="Observing time for Commissioning/DDT (in seconds)",quantity=Quantity.objects.get(value=Quantity.Choices.TIME.value))
ResourceType.objects.create(name="support_time",description="Support time by human (in seconds)",quantity=Quantity.objects.get(value=Quantity.Choices.TIME.value))
ResourceType.objects.create(name="number_of_triggers",description="Number of trigger events (as integer)",quantity=Quantity.objects.get(value=Quantity.Choices.NUMBER.value))
# TODO these duplicates have names that front-end expects.
# TODO We should not have doubles.
ResourceType.objects.create(name="LTA Storage",description="Amount of storage in the LTA (in bytes)",quantity=Quantity.objects.get(value=Quantity.Choices.BYTES.value))
ResourceType.objects.create(name="CEP Storage",description="Amount of storage on the CEP processing cluster (in bytes)",quantity=Quantity.objects.get(value=Quantity.Choices.BYTES.value))
ResourceType.objects.create(name="CEP Processing Time",description="Processing time on the CEP processing cluster (in seconds)",quantity=Quantity.objects.get(value=Quantity.Choices.TIME.value))
ResourceType.objects.create(name="LOFAR Observing Time",description="Observing time (in seconds)",quantity=Quantity.objects.get(value=Quantity.Choices.TIME.value))
ResourceType.objects.create(name="LOFAR Observing Time prio A",description="Observing time with priority A (in seconds)",quantity=Quantity.objects.get(value=Quantity.Choices.TIME.value))
ResourceType.objects.create(name="LOFAR Observing Time prio B",description="Observing time with priority B (in seconds)",quantity=Quantity.objects.get(value=Quantity.Choices.TIME.value))
ResourceType.objects.create(name="LOFAR Observing Time Commissioning",description="Observing time for Commissioning/DDT (in seconds)",quantity=Quantity.objects.get(value=Quantity.Choices.TIME.value))
ResourceType.objects.create(name="LOFAR Support Time",description="Support time by human (in seconds)",quantity=Quantity.objects.get(value=Quantity.Choices.TIME.value))
ResourceType.objects.create(name="Number of triggers",description="Number of trigger events (as integer)",quantity=Quantity.objects.get(value=Quantity.Choices.NUMBER.value))