# 緯度経度から崩壊地名を判定

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /check:
    get:
      summary: 緯度経度から崩壊地名を判定
      deprecated: false
      description: |-
        緯度・経度をリクエストすることで、崩壊地名かどうかの結果を取得することができます。

        認証要件: Authorization ヘッダーに `Bearer {token}` を指定してください（Bearer の後ろは半角スペース）。
      operationId: get_check_lat_lat_lng_lng
      tags: []
      parameters:
        - name: lat
          in: query
          description: ''
          required: false
          schema:
            type: string
        - name: lng
          in: query
          description: ''
          required: false
          schema:
            type: string
        - name: query
          in: query
          description: ''
          required: false
          schema:
            type: string
      responses:
        '200':
          description: HTTP 200 response
          content:
            application/json:
              schema:
                type: object
                properties:
                  metadata:
                    type: object
                    properties:
                      title:
                        type: string
                      detail:
                        type: string
                      status:
                        type: integer
                    x-apidog-orders:
                      - title
                      - detail
                      - status
                  _links:
                    type: object
                    properties:
                      self:
                        type: object
                        properties:
                          href:
                            type: string
                        x-apidog-orders:
                          - href
                    x-apidog-orders:
                      - self
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        address:
                          type: string
                        data:
                          type: array
                          items:
                            type: object
                            properties:
                              yomi:
                                type: string
                              saigai:
                                type: string
                              kaisetsu:
                                type: string
                              chimeirei:
                                type: string
                            x-apidog-orders:
                              - yomi
                              - saigai
                              - kaisetsu
                              - chimeirei
                      x-apidog-orders:
                        - address
                        - data
                  errors:
                    type: object
                    properties: {}
                    x-apidog-orders: []
                x-apidog-orders:
                  - metadata
                  - _links
                  - results
                  - errors
              example:
                metadata:
                  title: Success
                  detail: OK
                  status: 200
                _links:
                  self:
                    href: /v2/houkaichimei/check
                results:
                  - address: 東京都葛飾区柴又１丁目４３
                    data:
                      - yomi: 又
                        saigai: 水害
                        kaisetsu: 川の合流部
                        chimeirei: 花又、柴又
                      - yomi: シバ
                        saigai: 水害
                        kaisetsu: 氾濫時に冠水する場所。氾濫時に土砂が堆積した場所
                        chimeirei: 柴又、芝
                errors: {}
          headers: {}
          x-apidog-name: ''
      security:
        - bearer: []
      x-apidog-folder: ''
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1243788/apis/api-32129156-run
components:
  schemas: {}
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: jwt
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://app.livlog.xyz/webapi/v2/houkaichimei
    description: https://app.livlog.xyz/webapi/v2/houkaichimei
security: []

```
