All Projects → nurullahisik → php-uavt-adreskodu-botu

nurullahisik / php-uavt-adreskodu-botu

Licence: MIT license
Php ile uavt adres kodu botu

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to php-uavt-adreskodu-botu

optimus
🚚 Agile Data Preparation Workflows made easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark
Stars: ✭ 1,351 (+67450%)
Mutual labels:  dask
mlforecast
Scalable machine 🤖 learning for time series forecasting.
Stars: ✭ 96 (+4700%)
Mutual labels:  dask
esmlab
Earth System Model Lab (esmlab). ⚠️⚠️ ESMLab functionality has been moved into <https://github.com/NCAR/geocat-comp>. ⚠️⚠️
Stars: ✭ 23 (+1050%)
Mutual labels:  dask
qhub
🪴 Nebari - your open source data science platform
Stars: ✭ 175 (+8650%)
Mutual labels:  dask
codex-africanus
Radio Astronomy Algorithms Library
Stars: ✭ 13 (+550%)
Mutual labels:  dask
dask-pytorch-ddp
dask-pytorch-ddp is a Python package that makes it easy to train PyTorch models on dask clusters using distributed data parallel.
Stars: ✭ 50 (+2400%)
Mutual labels:  dask
Mars
Mars is a tensor-based unified framework for large-scale data computation which scales numpy, pandas, scikit-learn and Python functions.
Stars: ✭ 2,308 (+115300%)
Mutual labels:  dask
arboreto
A scalable python-based framework for gene regulatory network inference using tree-based ensemble regressors.
Stars: ✭ 33 (+1550%)
Mutual labels:  dask
prefect-saturn
Python client for using Prefect Cloud with Saturn Cloud
Stars: ✭ 15 (+650%)
Mutual labels:  dask
mloperator
Machine Learning Operator & Controller for Kubernetes
Stars: ✭ 85 (+4150%)
Mutual labels:  dask
xarray-beam
Distributed Xarray with Apache Beam
Stars: ✭ 83 (+4050%)
Mutual labels:  dask
daskperiment
Reproducibility for Humans: A lightweight tool to perform reproducible machine learning experiment.
Stars: ✭ 25 (+1150%)
Mutual labels:  dask
lazycluster
🎛 Distributed machine learning made simple.
Stars: ✭ 43 (+2050%)
Mutual labels:  dask
coiled-resources
Notebooks that support blog posts and tech talks on Dask / Coiled.
Stars: ✭ 33 (+1550%)
Mutual labels:  dask
dvc dask use case
A use case of a reproducible machine learning pipeline using Dask, DVC, and MLflow.
Stars: ✭ 22 (+1000%)
Mutual labels:  dask
graphchain
⚡️ An efficient cache for the execution of dask graphs.
Stars: ✭ 63 (+3050%)
Mutual labels:  dask
bumblebee
🚕 A spreadsheet-like data preparation web app that works over Optimus (Pandas, Dask, cuDF, Dask-cuDF, Spark and Vaex)
Stars: ✭ 120 (+5900%)
Mutual labels:  dask
madpy-dask
MadPy Dask talk materials
Stars: ✭ 33 (+1550%)
Mutual labels:  dask
datatile
A library for managing, validating, summarizing, and visualizing data.
Stars: ✭ 419 (+20850%)
Mutual labels:  dask
dask-awkward
Native Dask collection for awkward arrays, and the library to use it.
Stars: ✭ 25 (+1150%)
Mutual labels:  dask

UYARI: (https://adreskodu.dask.gov.tr/) adresi kapatıldığından bu bot çalışmayacaktır.

PHP ile uavt adres kodu botu

İçerik

  1. Adres Kodu Nedir
  2. Linkler
  3. Kurulum
  4. Kullanım
  5. Veriler
    1. İller
    2. İlçeler
    3. Bucak-Köy
    4. Mahalle
    5. Cadde-Sokak
    6. Bina
    7. İç Kapı
    8. UAVT Kodundan Adres Getirme

Package

Adres Kodu Nedir?

Adres kodu ülke sınırları içindeki tüm konutlara ait 10 haneli özel bir numaradır.

Bu kütüphaneyi ayrıca il, ilçe, mahalle, köy, cadde-sokak vs gibi bilgileri sorgulamak içinde kullanabilirsiniz.

Linkler

Adres kodunuzu öğrenmek için (https://adreskodu.dask.gov.tr/)

Kurulum

composer require nurullah/uavt-adres-kodu

Kullanım

include '/to/path/vendor/autoload.php';

use Dask\AdresKodu\AddressProperties;
use Dask\AdresKodu\AddressInitialize;

$object = new AddressInitialize();
$object::init();

İller

$properties = new AddressProperties();
$properties->setId(0);
$properties->setType("cities");

//result
print_r($object::create($properties)->getResult());

İlçeler

$properties = new AddressProperties();
$properties->setId(1);
$properties->setType("district");

//result
print_r($object::create($properties)->getResult());

Bucak-Köy

$properties = new AddressProperties();
$properties->setId(1757);
$properties->setType("township_village");

//result
print_r($object::create($properties)->getResult());

Mahalle

$properties = new AddressProperties();
$properties->setId(65);
$properties->setType("neighborhood");

//result
print_r($object::create($properties)->getResult());

Cadde-Sokak

$properties = new AddressProperties();
$properties->setId(176887);
$properties->setType("street");

//result
print_r($object::create($properties)->getResult());

Binalar

$properties = new AddressProperties();
$properties->setId(496093);
$properties->setType("building");

//result
print_r($object::create($properties)->getResult());

İç Kapı

$properties = new AddressProperties();
$properties->setId(8122892);
$properties->setType("door");

//result
print_r($object::create($properties)->getResult());

UAVT Kodundan adres getirme

$properties = new AddressProperties();
$properties->setId(1315919009);
$properties->setType("uavt");

//result
print_r($object::create($properties)->getResult());
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].