Where can I get official latest map topojsons as of 2023? - d3.js

I need them like this categories
India map with state boundaries
Individual State maps with district boundaries
Individual Union territory maps with district boundaries
It's fine even they charge amount but need the latest map as of 2023.
Can anyone specify such portals where I can get these maps?
I have tried using the maps from the below link but few of them are outdated.
Previous Source

Related

Annotation specs - AutoML (VertexAi)

We're trying to build an imaged based product search for our webshop using the vertex ai image classification model (single label).
Currently we have around 20k products with xx images per product.
So our dataset containing 20k of labels (one for each product - product number), but on import we receive the following error message:
There are too many AnnotationSpecs in the dataset. Up to 5000 AnnotationSpecs are allowed in one Dataset. Check your csv/jsonl format with our public documentation.
Looks like not more than 5000 labels are allowed per Dataset... This quota is not really visible in the documentation - or we didn't find it.
Anyway, any ideas how we can make it work? Does we have to build 5 Datasets with 5 different Endpoints and than query every Enpoint for matching?
You can find those limits in the AutoML quotas and limits documentation.
It is possible to have multiple models for group of products -- Maybe even something like: one initial model to classify the product category (jewery, watches, shoes, toys, etc) and a second step for a specific model (to identify the specific product belong toys, or belong shoes, etc). But to be honest, it seems a bit hard to support - but certainly worth trying.
A second option would be training a custom model where you could do a fine tuning on some larger model (ie. inception, resnet, etc) do know all your 20k+ classes (products). It could add a little bit more work at first, but after established, it will become a single model for inference and re-training would be simpler using MLOps mechanisms (ie. Vertex Pipelines).

How do I get departure country through SP-API as a Seller?

I would like to know if there is any way to know from which country is departed a FBA order.
Downloading a VAT Transaction report it is possible get this information but it is only possible from previous month not from current one.
Does any one know if it is possible use any SP-API functionality for this propose?

Google places API doesn't return postal codes for large cities or centres. How do I get around that?

I'm utilising google autocomplete to allow visitors to enter towns, suburbs or postcodes, so that they can select the right one from the autocomplete list. I then need to store the postcode for that location so that I can compare that postcode to entries in a database to find service providers in that postcode.
The problem I'm now having is that the Google API doesn't return postcodes for all locations. This especially seems to be the case for larger cities. For example, it doesn't return postcodes for Melbourne Australia, Sydney Australia or Perth Australia.
Has anyone developed a solution or workaround to this issue? Any suggestions?
I've been googling for ages now and can't find a solution. Google itself doesn't seem to mention this situation in their Google Places docs.
Since many cities span multiple postal codes, you probably need your users to provide the exact street address where they need service. Fearing the tedium of entering a full street address? Fear not; Place Autocomplete can save them many keystrokes especially if you constrain results to a specific country or location bounds.
You might want to create an address form and use Places Autocomplete to auto-fill the components including postal code once the user selects the address from autocomplete predictions. This section of the documentation demonstrates how it works and this page provides sample Javascript code for implementing an auto-completing address form.

tableau use either Country or State (only if country = usa) field as filter

I am trying to display travel expenses by location in a Tableau map. If the country = USA, then I want to filter by State, else filter by Country. I can do either or but not both on the same map. Where would I put this criteria?
I am new to both Tableau and to this website. I have tried to upload an image but was told my reputation needed to be a 9. Is there any other way to share information? Possibly dropbox?
Here is a link to my workbook:
https://public.tableau.com/profile/publish/Travel_country/Sheet1#!/publish-confirm
Well, it's pretty simple then. You can use both [Country] and [State] as filters. If you try to filter by state on a country different from US, nothing will happen.
If you have Tableau 9.0, you can even make the Country filter influence the State filter, meaning, you will only see the State options if you select US in the Country filter.
If you need anything different, please clarify

d3.js topojson based choloropleth map for 170 countries . Show specific country map on selection

I need to display no of orders/revenue/sales etcc in d3.js topojson based chloropleth map for 170 countries at county/state level . the user is allowed to select country from dropdown and corresponding country chloropleth map should be displayed .
I have to implement similar to this http://bl.ocks.org/thedod/4548858
for 170 countries . I will be integrating this html inside a jsf page in java j2ee project.
Do i have to create 170 topojson files and load on demand when the user selects a country from dropdown.
Is there any readymade database .If i just pass a country name/code just return me a topojson of that country with admin2 details.
Please provide me a solution / better practise.
I want only open sourcejava based technology/librarries .
No. You could have everything in one JSON file that you load at the beginning and then select the relevant part when the user selects a country instead of loading more data. This however means that the initial wait is longer because more data needs to be loaded. D3 doesn't put any restrictions on this, so you can solve this however you think is best for your application. It sounds as if you would be loading quite a lot of data, so loading each country on demand may be the best way to go performance-wise.
Not to the best of my knowledge. While you should be able to find GeoJSON data for all countries relatively easily, TopoJSON is a much less common format, so the chances are smaller. You can however convert a number of other formats to TopoJSON.

Resources