Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -2785,7 +2785,7 @@ with gr.Blocks(title=APP_TITLE) as demo:
|
|
| 2785 |
gr.Markdown(_loaded_models_text(APP_STATE))
|
| 2786 |
|
| 2787 |
with gr.Row():
|
| 2788 |
-
area_input = gr.Number(label="Area territorial (m2)", value=
|
| 2789 |
numbloco_input = gr.Textbox(
|
| 2790 |
label="NUMBLOCO",
|
| 2791 |
value="",
|
|
@@ -2793,8 +2793,8 @@ with gr.Blocks(title=APP_TITLE) as demo:
|
|
| 2793 |
)
|
| 2794 |
|
| 2795 |
with gr.Row():
|
| 2796 |
-
lat_input = gr.Number(label="Latitude", value=-30.
|
| 2797 |
-
lon_input = gr.Number(label="Longitude", value=-51.
|
| 2798 |
|
| 2799 |
autofill_button = gr.Button("Buscar atributos por NUMBLOCO/coordenada")
|
| 2800 |
autofill_json = gr.JSON(label="Diagnostico do autopreenchimento espacial")
|
|
|
|
| 2785 |
gr.Markdown(_loaded_models_text(APP_STATE))
|
| 2786 |
|
| 2787 |
with gr.Row():
|
| 2788 |
+
area_input = gr.Number(label="Area territorial (m2)", value=405.0, precision=6)
|
| 2789 |
numbloco_input = gr.Textbox(
|
| 2790 |
label="NUMBLOCO",
|
| 2791 |
value="",
|
|
|
|
| 2793 |
)
|
| 2794 |
|
| 2795 |
with gr.Row():
|
| 2796 |
+
lat_input = gr.Number(label="Latitude", value=-30.0315, precision=8)
|
| 2797 |
+
lon_input = gr.Number(label="Longitude", value=-51.1645, precision=8)
|
| 2798 |
|
| 2799 |
autofill_button = gr.Button("Buscar atributos por NUMBLOCO/coordenada")
|
| 2800 |
autofill_json = gr.JSON(label="Diagnostico do autopreenchimento espacial")
|