Formato¤
Importación¤
Importar datos a la base de datos es la acción fundamental que muchos usuarios querrán llevar a cabo. Si bien el modelo que impulsa el proceso es simple, como se muestra a continuación, depende de muchos otros que se describen en otras secciones y, por lo tanto, las inconsistencias en las opciones (por ejemplo, un formato de datos que no es compatible con el archivo de datos) harán que el proceso falle.
En la sección Importación de datos se puede encontrar una guía práctica sobre cómo enviar datos a Paricia.
Componente¤
DataImport
¤
Model to store the data imports.
This model stores the data imports, which are files with data that are uploaded to the system. The data is then processed asynchronously and stored in the database.
Attributes:
Name | Type | Description |
---|---|---|
station |
ForeignKey
|
Station to which the data belongs. |
format |
ForeignKey
|
Format of the data. |
rawfile |
FileField
|
File with the data to be imported. |
date |
DateTimeField
|
Date of submission of the data. |
start_date |
DateTimeField
|
Start date of the data. |
end_date |
DateTimeField
|
End date of the data. |
records |
IntegerField
|
Number of records in the data. |
observations |
TextField
|
Notes or observations about the data. |
status |
TextField
|
Status of the import. |
log |
TextField
|
Log of the data ingestion, indicating any errors. |
reprocess |
BooleanField
|
If checked, the data will be reprocessed. |