Geometri Sorgusu
curl --request POST \
--url https://api.iklim.co/v1/precipitations/geometry \
--header 'Content-Type: application/json' \
--data '
{
"eventIds": [
"69baa6b76e0fe76a1957273f"
],
"radius": 1000
}
'import requests
url = "https://api.iklim.co/v1/precipitations/geometry"
payload = {
"eventIds": ["69baa6b76e0fe76a1957273f"],
"radius": 1000
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({eventIds: ['69baa6b76e0fe76a1957273f'], radius: 1000})
};
fetch('https://api.iklim.co/v1/precipitations/geometry', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.iklim.co/v1/precipitations/geometry",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'eventIds' => [
'69baa6b76e0fe76a1957273f'
],
'radius' => 1000
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.iklim.co/v1/precipitations/geometry"
payload := strings.NewReader("{\n \"eventIds\": [\n \"69baa6b76e0fe76a1957273f\"\n ],\n \"radius\": 1000\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.iklim.co/v1/precipitations/geometry")
.header("Content-Type", "application/json")
.body("{\n \"eventIds\": [\n \"69baa6b76e0fe76a1957273f\"\n ],\n \"radius\": 1000\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.iklim.co/v1/precipitations/geometry")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"eventIds\": [\n \"69baa6b76e0fe76a1957273f\"\n ],\n \"radius\": 1000\n}"
response = http.request(request)
puts response.read_body"aSDinaTvuI8gbWludGxpZnk="Geometri Sorgusu
Belirtilen yağış olaylarının geometrisini, verilen dairesel alana göre keserek protobuf formatında döndürür. Power user ve üstü role sahip kullanıcılar merkez nokta ve yarıçap belirtmeksizin geometriyi kesmeden sorgulayabilir.
POST
/
v1
/
precipitations
/
geometry
Geometri Sorgusu
curl --request POST \
--url https://api.iklim.co/v1/precipitations/geometry \
--header 'Content-Type: application/json' \
--data '
{
"eventIds": [
"69baa6b76e0fe76a1957273f"
],
"radius": 1000
}
'import requests
url = "https://api.iklim.co/v1/precipitations/geometry"
payload = {
"eventIds": ["69baa6b76e0fe76a1957273f"],
"radius": 1000
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({eventIds: ['69baa6b76e0fe76a1957273f'], radius: 1000})
};
fetch('https://api.iklim.co/v1/precipitations/geometry', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.iklim.co/v1/precipitations/geometry",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'eventIds' => [
'69baa6b76e0fe76a1957273f'
],
'radius' => 1000
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.iklim.co/v1/precipitations/geometry"
payload := strings.NewReader("{\n \"eventIds\": [\n \"69baa6b76e0fe76a1957273f\"\n ],\n \"radius\": 1000\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.iklim.co/v1/precipitations/geometry")
.header("Content-Type", "application/json")
.body("{\n \"eventIds\": [\n \"69baa6b76e0fe76a1957273f\"\n ],\n \"radius\": 1000\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.iklim.co/v1/precipitations/geometry")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"eventIds\": [\n \"69baa6b76e0fe76a1957273f\"\n ],\n \"radius\": 1000\n}"
response = http.request(request)
puts response.read_body"aSDinaTvuI8gbWludGxpZnk="Gövde
application/json
Geometrisi getirilecek yağış olay kimliklerinin listesi. En fazla 10 öğe.
Maximum array length:
10Örnek:
["69baa6b76e0fe76a1957273f"]
Geometriyi kesmek için kullanılan daire merkezinin enlem/boylam koordinatları.
Show child attributes
Show child attributes
Geometriyi kesmek için kullanılan daire sınırının yarıçapı. Değer metre cinsinden verilmelidir (örn. 25000 = 25 km). En fazla 200 kilometre (200000 metre).
Örnek:
1000
Yanıt
İstenen yağış olaylarının kesilmiş geometrisi başarıyla getirildi.
İstenen olayların kesilmiş çokgen geometrilerini içeren protobuf kodlu FeatureCollection.
⌘I